:root {
  --bg: #fffffe;
  --surface: #f8f6fb;
  --surface-2: #f0ecf6;
  --text: #160b22;
  --muted: #5f5668;
  --purple: #2b0557;
  --blue: #6e2dbb;
  --line: rgba(43, 5, 87, .12);
  --header: 72px;
  --max: 1280px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Helvetica Neue", sans-serif;
}

.eyebrow,
.service-card .num,
.process-item strong,
.service-row span,
.manifesto .kicker {
  color: #6e2dbb;
}

.hero h1 span,
.page-hero h1 span,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow {
  color: #c084fc;
}

.btn,
.nav-cta,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 9999px;
  cursor: pointer;
  isolation: isolate;
  user-select: none;
  -webkit-user-select: none;
  transition:
    transform .25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow .25s cubic-bezier(0.16, 1, 0.3, 1),
    background .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.btn,
.nav-cta {
  min-height: 48px;
  padding: 0 24px;
  background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 48%, #2b0557 100%);
  color: #fffffe;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 22px -4px rgba(110, 45, 187, 0.42);
}

.btn:hover,
.nav-cta:hover {
  background: linear-gradient(135deg, #8a38d2 0%, #681db3 48%, #36086b 100%);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 28px -4px rgba(110, 45, 187, 0.55);
}

.btn:active,
.nav-cta:active {
  transform: translateY(0) scale(0.975);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
  display: inline-block;
  vertical-align: middle;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.btn.secondary {
  background: rgba(43, 5, 87, 0.04);
  color: #2b0557;
  border: 1px solid rgba(43, 5, 87, 0.16);
  box-shadow: 0 2px 8px rgba(43, 5, 87, 0.04);
}

.btn.secondary:hover {
  background: rgba(43, 5, 87, 0.09);
  border-color: rgba(43, 5, 87, 0.32);
  color: #1a0237;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 5, 87, 0.08);
}

.btn.secondary:active {
  transform: translateY(0) scale(0.975);
  background: rgba(43, 5, 87, 0.12);
}

:focus-visible {
  outline: 3px solid #6e2dbb;
  outline-offset: 3px;
}

::selection {
  background: var(--blue);
  color: #fffffe;
}

body {
  background: #fffffe;
  color: #160b22;
}

.site-header {
  background: rgba(255, 255, 254, .9);
  border-bottom-color: rgba(43, 5, 87, .12);
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

/* ==========================================================================
   Global Navbar: Default (White / Opaque for Services, Portfolio, About, Contact)
   ========================================================================== */
.site-header {
  height: var(--header);
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 254, 0.96) !important;
  border-bottom: 1px solid rgba(43, 5, 87, 0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand img {
  filter: invert(1) !important;
  transition: filter 0.3s ease;
}

.footer-brand img {
  filter: none !important;
  transition: filter 0.3s ease;
}

.brand {
  width: 170px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 158px;
  height: auto;
  transform: translateY(-2px);
}

.nav-links a,
.nav-item {
  color: #5f5668;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.nav-item:hover,
.nav-item:focus-visible,
.nav-item[aria-current="page"] {
  color: #2b0557;
  background: rgba(43, 5, 87, 0.07);
}

.menu-toggle {
  color: #2b0557;
  border-color: rgba(43, 5, 87, 0.2);
}

.menu-toggle .toggle-bar {
  background: #2b0557;
}

/* ==========================================================================
   Home Page Navbar: Transparent Initially -> Opaque White on Scroll (Desktop & Mobile)
   ========================================================================== */

/* 1. Home Page: Top / Not Scrolled */
body[data-page="home"] .site-header:not(.scrolled) {
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

body[data-page="home"] .site-header:not(.scrolled) .brand img {
  filter: none !important;
}

body[data-page="home"] .site-header:not(.scrolled) .nav-links a,
body[data-page="home"] .site-header:not(.scrolled) .nav-item {
  color: rgba(255, 255, 254, 0.88);
}

body[data-page="home"] .site-header:not(.scrolled) .nav-links a:hover,
body[data-page="home"] .site-header:not(.scrolled) .nav-links a:focus-visible,
body[data-page="home"] .site-header:not(.scrolled) .nav-links a[aria-current="page"],
body[data-page="home"] .site-header:not(.scrolled) .nav-item:hover,
body[data-page="home"] .site-header:not(.scrolled) .nav-item:focus-visible,
body[data-page="home"] .site-header:not(.scrolled) .nav-item[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

body[data-page="home"] .site-header:not(.scrolled) .menu-toggle {
  color: #fffffe;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .site-header:not(.scrolled) .menu-toggle .toggle-bar {
  background: #ffffff;
}

/* 2. Home Page: Scrolled State */
body[data-page="home"] .site-header.scrolled {
  background: rgba(255, 255, 254, 0.96) !important;
  border-bottom: 1px solid rgba(43, 5, 87, 0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

body[data-page="home"] .site-header.scrolled .brand img {
  filter: invert(1) !important;
}

body[data-page="home"] .site-header.scrolled .nav-links a,
body[data-page="home"] .site-header.scrolled .nav-item {
  color: #5f5668;
}

body[data-page="home"] .site-header.scrolled .nav-links a:hover,
body[data-page="home"] .site-header.scrolled .nav-links a:focus-visible,
body[data-page="home"] .site-header.scrolled .nav-links a[aria-current="page"],
body[data-page="home"] .site-header.scrolled .nav-item:hover,
body[data-page="home"] .site-header.scrolled .nav-item:focus-visible,
body[data-page="home"] .site-header.scrolled .nav-item[aria-current="page"] {
  color: #2b0557;
  background: rgba(43, 5, 87, 0.07);
}

body[data-page="home"] .site-header.scrolled .menu-toggle {
  color: #2b0557;
  border-color: rgba(43, 5, 87, 0.2);
  background: rgba(43, 5, 87, 0.04);
}

body[data-page="home"] .site-header.scrolled .menu-toggle .toggle-bar {
  background: #2b0557;
}

/* ==========================================================================
   Mobile Nav Open State (Seamless full-screen drawer header)
   ========================================================================== */
body.nav-open .site-header {
  background: rgba(6, 2, 16, 0.98) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

body.nav-open .brand img {
  filter: none !important;
}

body.nav-open .menu-toggle {
  border-color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

body.nav-open .menu-toggle .toggle-bar {
  background: #ffffff !important;
}


.hero,
.page-hero {
  background-color: #030108;
  color: #fffffe;
}

.hero,
.page-hero {
  background:
    radial-gradient(ellipse at 22% 45%, rgba(110, 45, 187, .18) 0%, rgba(43, 5, 87, .35) 38%, rgba(8, 2, 18, .96) 70%, #030108 100%),
    linear-gradient(315deg, #100222 0%, #080112 45%, #020005 100%);
}

.hero::after,
.page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 1, 8, .98) 0%, rgba(3, 1, 8, .88) 42%, rgba(3, 1, 8, .18) 78%),
    linear-gradient(0deg, #030108 0%, transparent 28%);
}

.hero .btn.secondary,
.page-hero .btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fffffe;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero .btn.secondary:hover,
.page-hero .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero .btn.secondary:active,
.page-hero .btn.secondary:active {
  transform: translateY(0) scale(0.975);
  background: rgba(255, 255, 255, 0.18);
}

.section,
.section-tight,
.manifesto,
.contact-stage {
  background: #fffffe;
  color: #160b22;
}

.manifesto {
  border-color: rgba(43, 5, 87, .13);
}

.manifesto blockquote span,
.section-heading p,
.section-copy p,
.process-item p,
.service-row p,
.project p,
.principle span,
.contact-card p,
.about-copy p,
.audience-context p,
.audience-groups p {
  color: #5f5668;
}

.hero .lead,
.page-hero .lead {
  color: #cfc8dc;
}

.world-status span {
  color: #b5a9cb;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 24px;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.service-card {
  position: relative;
  min-height: 380px;
  padding: 32px 28px 26px;
  border-radius: var(--radius);
  background: #fffffe;
  color: #160b22;
  border: 1px solid rgba(43, 5, 87, 0.12);
  box-shadow: 0 4px 20px rgba(43, 5, 87, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

.service-card:first-child {
  grid-row: auto;
  min-height: 380px;
  background: #fffffe;
  color: #160b22;
}

.service-card:first-child:after {
  display: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7b2cbf, #6e2dbb, #06d6a0);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 45, 187, 0.38);
  box-shadow: 0 20px 48px -12px rgba(43, 5, 87, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-card .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6e2dbb !important;
}

.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f1b95;
  background: rgba(110, 45, 187, 0.08);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(110, 45, 187, 0.12);
}

.service-card h3 {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #160b22;
  margin: 0 0 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5f5668;
  margin: 0 0 18px;
}

.service-card .service-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 0 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(43, 5, 87, 0.08);
  list-style: none;
}

.service-card .service-points li {
  position: relative;
  padding: 6px 10px 6px 24px;
  background: rgba(110, 45, 187, 0.04);
  border: 1px solid rgba(110, 45, 187, 0.08);
  border-radius: 6px;
  color: #2b1448;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.service-card .service-points li::before {
  content: "✦";
  position: absolute;
  left: 8px;
  top: 6px;
  color: #6e2dbb;
  font-size: 10px;
}

.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2b0557;
  font-size: 13.5px;
  font-weight: 700;
  margin-top: auto;
  transition: color .2s ease;
}

.service-arrow {
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-action {
  color: #6e2dbb;
}

.service-card:hover .service-arrow {
  transform: translateX(4px);
}

.services-footer-row {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.service-row,
.principle,
.project {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(35, 10, 68, .04);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(43, 5, 87, 0.12);
  list-style: none;
}

.service-points li {
  position: relative;
  padding: 8px 12px 8px 28px;
  background: rgba(110, 45, 187, 0.05);
  border: 1px solid rgba(110, 45, 187, 0.14);
  border-radius: 8px;
  color: #1f0b38;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.service-points li:hover {
  background: rgba(110, 45, 187, 0.1);
  border-color: rgba(110, 45, 187, 0.32);
  transform: translateY(-1px);
}

.service-points li::before {
  content: "✦";
  position: absolute;
  left: 10px;
  top: 8px;
  color: #6e2dbb;
  font-size: 11px;
}

.service-card:hover,
.project:hover {
  border-color: rgba(110, 45, 187, .38);
  box-shadow: 0 16px 36px rgba(43, 5, 87, .09);
}

.process,
.process-item {
  border-color: var(--line);
}

/* Redesigned Integrated Digital Solutions Showcase */
/* Full-Width Integrated Digital Solutions Showcase */
.integrated-solutions-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: clamp(48px, 6vw, 84px) 0;
}

.solutions-showcase-panel {
  position: relative;
  width: 100%;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(123, 44, 191, 0.38) 0%, rgba(43, 5, 87, 0.48) 42%, #0e0322 80%, #06010d 100%),
    linear-gradient(145deg, #15032d 0%, #070110 100%);
  border-top: 1px solid rgba(170, 114, 230, 0.32);
  border-bottom: 1px solid rgba(170, 114, 230, 0.32);
  padding: clamp(60px, 7vw, 100px) 0;
  box-shadow:
    0 24px 64px -12px rgba(43, 5, 87, 0.5),
    inset 0 1px 0 rgba(255, 255, 254, 0.2);
}

.solutions-showcase-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 132, 252, 0.9), transparent);
  pointer-events: none;
}

.solutions-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
}

.solutions-heading-wrap {
  margin-bottom: 28px;
}

.solutions-eyebrow {
  color: #c084fc !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.solutions-title {
  color: #fffffe !important;
  font-size: clamp(32px, 3.8vw, 50px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  margin: 0 0 16px !important;
}

.solutions-glow-text {
  color: #c084fc;
  text-shadow: 0 0 28px rgba(192, 132, 252, 0.45);
}

.solutions-lead {
  color: #cfc8dc !important;
  font-size: clamp(15.5px, 1.6vw, 17.5px) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  max-width: 52ch;
}

.solutions-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.solution-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 254, 0.04);
  border: 1px solid rgba(255, 255, 254, 0.08);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.solution-pillar-item:hover {
  transform: translateX(6px);
  background: rgba(110, 45, 187, 0.16);
  border-color: rgba(192, 132, 252, 0.35);
  box-shadow: 0 8px 24px rgba(43, 5, 87, 0.3);
}

.pillar-num-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(110, 45, 187, 0.35);
  border: 1px solid rgba(192, 132, 252, 0.4);
  color: #fffffe;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pillar-info h3 {
  color: #fffffe;
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.pillar-info p {
  color: #b5a9cb;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

.solutions-action-wrap {
  display: flex;
  align-items: center;
}

.solutions-visual-col {
  position: relative;
  width: 100%;
}

.solutions-media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(170, 114, 230, 0.3);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(110, 45, 187, 0.25);
  aspect-ratio: 16 / 10;
  background: #090214;
}

.solutions-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.solutions-showcase-panel:hover .solutions-media-card img {
  transform: scale(1.04);
}

.solutions-floating-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(10, 2, 24, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(192, 132, 252, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #06d6a0;
  box-shadow: 0 0 10px #06d6a0;
  flex-shrink: 0;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.badge-copy strong {
  display: block;
  color: #fffffe;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.badge-copy span {
  display: block;
  color: #b5a9cb;
  font-size: 11.5px;
  line-height: 1.3;
}

@media (max-width: 960px) {
  .solutions-showcase-panel {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px 24px;
  }
}

.cta-panel {
  background: linear-gradient(135deg, #2b0557, #130526 74%);
  border-color: rgba(110, 45, 187, .32);
  color: #fffffe;
  box-shadow: 0 20px 48px rgba(43, 5, 87, .16);
}

.cta-panel p {
  color: #cfc8dc;
}

.cta-panel .btn {
  background: #ffffff;
  color: #1f053d;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.cta-panel .btn:hover {
  background: #f8f5fd;
  color: #120124;
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.32),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-panel .btn:active {
  transform: translateY(0) scale(0.975);
}

.submit-button {
  min-height: 52px;
  padding: 0 28px;
  background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 50%, #2b0557 100%);
  color: #fffffe !important;
  font-weight: 700;
  font-size: 15.5px;
  border: 1px solid rgba(255, 255, 254, 0.25);
  box-shadow:
    0 8px 24px -4px rgba(110, 45, 187, 0.5),
    0 2px 8px rgba(43, 5, 87, 0.3),
    inset 0 1px 0 rgba(255, 255, 254, 0.35);
}

.submit-button .btn-icon {
  fill: currentColor;
}

.submit-button:hover {
  background: linear-gradient(135deg, #9333ea 0%, #6e2dbb 50%, #3c096c 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px -4px rgba(110, 45, 187, 0.65),
    0 4px 12px rgba(43, 5, 87, 0.4),
    inset 0 1px 0 rgba(255, 255, 254, 0.5);
}

.submit-button:active {
  transform: translateY(0) scale(0.975);
  box-shadow: 0 2px 8px rgba(43, 5, 87, 0.4);
}

.whatsapp {
  background: linear-gradient(145deg, #7b2cbf 0%, #5a189a 50%, #2b0557 100%) !important;
  color: #fffffe !important;
  border: 1px solid rgba(255, 255, 254, 0.25);
  box-shadow:
    0 10px 30px rgba(43, 5, 87, 0.5),
    0 4px 12px rgba(110, 45, 187, 0.4),
    inset 0 1px 0 rgba(255, 255, 254, 0.35);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .25s cubic-bezier(0.16, 1, 0.3, 1), background .25s ease;
}

.whatsapp svg {
  fill: #fffffe !important;
}

.whatsapp:hover {
  background: linear-gradient(145deg, #9333ea 0%, #6e2dbb 50%, #3c096c 100%) !important;
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 16px 40px rgba(110, 45, 187, 0.65),
    0 6px 16px rgba(43, 5, 87, 0.45),
    inset 0 1px 0 rgba(255, 255, 254, 0.5);
}

.whatsapp:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 4px 14px rgba(43, 5, 87, 0.4);
}

/* Redesigned Dark Purple Footer */
.site-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(110, 45, 187, .22) 0%, rgba(43, 5, 87, .38) 45%, #080214 85%, #05010b 100%),
    linear-gradient(180deg, #0e0322 0%, #06010d 100%);
  color: #fffffe;
  border-top: 1px solid rgba(110, 45, 187, .28);
  padding: 68px 0 36px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(170, 114, 230, .65), transparent);
  pointer-events: none;
}

.footer-brand img {
  filter: none !important;
  width: 146px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.95;
}

.footer-brand p {
  color: #b5a9cb;
  font-size: 15px;
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 0 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 254, 0.06);
  border: 1px solid rgba(255, 255, 254, 0.12);
  color: #cfc5e2;
  transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a:hover {
  color: #ffffff;
  background: rgba(110, 45, 187, 0.45);
  border-color: rgba(192, 132, 252, 0.6);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(110, 45, 187, 0.4);
}

.footer-socials a:active {
  transform: translateY(-1px) scale(0.98);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #cfc5e2;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 254, .05);
  border: 1px solid rgba(255, 255, 254, .1);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  background: rgba(110, 45, 187, .4);
  border-color: rgba(170, 114, 230, .5);
  transform: translateY(-1.5px);
}

.footer-meta {
  border-top: 1px solid rgba(110, 45, 187, .2);
  color: #8c7f9f;
  font-size: 13px;
  padding-top: 28px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b5a9cb;
}

.footer-location .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #06d6a0;
  box-shadow: 0 0 8px #06d6a0;
  display: inline-block;
}

.world-status {
  background: rgba(18, 10, 32, .76);
  border-color: rgba(255, 255, 255, .12);
}

.world-status strong {
  color: #fffffe;
}

.project,
.portfolio-project {
  background: #fffffe;
  color: #160b22;
  border-color: rgba(43, 5, 87, 0.12);
}

.project:nth-child(3n),
.portfolio-project:nth-child(3n) {
  background: #fffffe;
  color: #160b22;
}

.project:nth-child(3n) p,
.portfolio-project:nth-child(3n) p {
  color: #5f5668;
}

.project-tags span {
  border-color: rgba(43, 5, 87, 0.12);
  color: #4a4054;
  background: #f2eef8;
}

.contact-card {
  background: linear-gradient(145deg, #1b0a33, #07070d);
  border-color: rgba(110, 45, 187, .3);
  color: #fffffe;
}

.contact-card:before {
  background: radial-gradient(circle, rgba(110, 45, 187, .42), transparent 68%);
}

.contact-card p {
  color: #cfc8dc;
}

.list-services,
.principles {
  background: var(--line);
  border-color: var(--line);
}

.field input,
.field select,
.field textarea {
  border-color: rgba(43, 5, 87, .18);
  background: #fffffe;
  color: #160b22;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #6e2dbb;
  box-shadow: 0 0 0 3px rgba(110, 45, 187, .16);
}

.form-status {
  color: #4f187d;
}

/* ==========================================================================
   Desktop Navigation Styles (> 800px)
   ========================================================================== */
.nav-fullscreen-content {
  display: flex;
  align-items: center;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #5f5668;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

body[data-page="home"] .site-header:not(.scrolled) .nav-item {
  color: rgba(255, 255, 254, 0.88);
}

body[data-page="home"] .site-header:not(.scrolled) .nav-item:hover,
body[data-page="home"] .site-header:not(.scrolled) .nav-item:focus-visible,
body[data-page="home"] .site-header:not(.scrolled) .nav-item[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item[aria-current="page"] {
  color: #2b0557;
  background: rgba(43, 5, 87, 0.07);
}

.nav-num,
.nav-item-arrow,
.nav-fullscreen-footer {
  display: none;
}

.menu-toggle {
  display: none;
}

/* Base Body scroll lock when mobile nav is open */
body.nav-open {
  overflow: hidden !important;
  touch-action: none;
}

/* Process Section (5 steps) */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-item {
  padding: 28px 24px 10px 0;
  border-right: 1px solid var(--line);
  min-height: 210px;
}

.process-item:not(:first-child) {
  padding-left: 24px;
}

.process-item:last-child {
  border-right: 0;
}

/* Breakpoint: <= 1024px (Large Tablets & Small Laptops) */
@media (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-item:nth-child(3) {
    border-right: 0;
  }

  .process-item:nth-child(n+4) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .process-item:nth-child(4) {
    padding-left: 0;
  }
}

/* Breakpoint: <= 960px (Tablets) */
@media (max-width: 960px) {
  .solutions-showcase-panel {
    padding: 36px 24px;
    border-radius: 20px;
  }

  .solutions-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .solutions-title {
    font-size: clamp(28px, 4.8vw, 44px);
  }

  .solutions-visual-col {
    width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-sidebar {
    position: static;
  }
}

/* ==========================================================================
   Mobile & Tablet Navigation & Full-Height Hero (<= 800px)
   ========================================================================== */
@media (max-width: 800px) {
  /* Default for other pages on mobile: White/Opaque Navbar */
  .site-header {
    background: rgba(255, 255, 254, 0.96) !important;
    border-bottom: 1px solid rgba(43, 5, 87, 0.12) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  }

  /* Home page on mobile: Transparent at top */
  body[data-page="home"] .site-header:not(.scrolled) {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  body[data-page="home"] .site-header:not(.scrolled) .brand img {
    filter: none !important;
  }

  /* Home page on mobile: Opaque white on scroll */
  body[data-page="home"] .site-header.scrolled {
    background: rgba(255, 255, 254, 0.96) !important;
    border-bottom: 1px solid rgba(43, 5, 87, 0.12) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  }

  body[data-page="home"] .site-header.scrolled .brand img {
    filter: invert(1) !important;
  }

  /* When mobile nav drawer is open: dark header matching drawer */
  body.nav-open .site-header {
    background: rgba(6, 2, 16, 0.98) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
  }

  body.nav-open .brand img {
    filter: none !important;
  }

  .brand {
    width: 148px;
    z-index: 102;
  }

  .brand img {
    width: 138px;
  }

  .nav-cta {
    display: none;
  }

  /* Animated Hamburger Toggle Button */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(43, 5, 87, 0.2);
    background: rgba(43, 5, 87, 0.04);
    cursor: pointer;
    z-index: 102;
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle .toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #2b0557;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.25s ease;
  }

  /* Home page top: White toggle button */
  body[data-page="home"] .site-header:not(.scrolled) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
  }

  body[data-page="home"] .site-header:not(.scrolled) .menu-toggle .toggle-bar {
    background: #ffffff;
  }

  /* Home page scrolled: Dark toggle button */
  body[data-page="home"] .site-header.scrolled .menu-toggle {
    border-color: rgba(43, 5, 87, 0.2);
    background: rgba(43, 5, 87, 0.04);
  }

  body[data-page="home"] .site-header.scrolled .menu-toggle .toggle-bar {
    background: #2b0557;
  }

  /* When nav is open: White 'X' */
  .menu-toggle[aria-expanded="true"],
  body.nav-open .menu-toggle {
    border-color: rgba(255, 255, 255, 0.35) !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  .menu-toggle[aria-expanded="true"] .toggle-bar,
  body.nav-open .menu-toggle .toggle-bar {
    background: #ffffff !important;
  }

  .menu-toggle[aria-expanded="true"] .toggle-bar:nth-child(1),
  body.nav-open .menu-toggle .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .toggle-bar:nth-child(2),
  body.nav-open .menu-toggle .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle[aria-expanded="true"] .toggle-bar:nth-child(3),
  body.nav-open .menu-toggle .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Full Screen Mobile Navigation Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 2, 16, 0.98);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 100;
    padding: calc(var(--header) + 20px) 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-fullscreen-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: calc(100dvh - var(--header) - 52px);
    gap: 20px;
  }

  .nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 10px;
  }

  .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 14px;
    color: #ffffff !important;
    text-decoration: none;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .nav-num {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #c084fc;
    letter-spacing: 0.1em;
    width: 28px;
  }

  .nav-text {
    font-size: clamp(22px, 5.5vw, 28px);
    font-weight: 700;
    color: #fffffe;
    flex: 1;
    margin-left: 10px;
    letter-spacing: -0.02em;
  }

  .nav-item-arrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .nav-item:hover,
  .nav-item[aria-current="page"] {
    background: rgba(110, 45, 187, 0.22);
    border-color: rgba(192, 132, 252, 0.3);
  }

  .nav-item:hover .nav-item-arrow,
  .nav-item[aria-current="page"] .nav-item-arrow {
    color: #c084fc;
    transform: translateX(4px);
  }

  .nav-fullscreen-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 50%, #2b0557 100%);
    color: #fffffe !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px -4px rgba(110, 45, 187, 0.45);
  }

  .nav-mobile-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .nav-mobile-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  .nav-mobile-contact a:hover {
    color: #c084fc;
  }

  .nav-mobile-meta {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
  }

  /* Full Height Hero on Mobile */
  .hero {
    min-height: 100dvh;
    min-height: 100vh;
    padding: calc(var(--header) + 12px) 0 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .hero .shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-block: auto;
    width: min(calc(100% - 32px), var(--max));
    position: relative;
    z-index: 2;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-block: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 16px;
    max-width: 100%;
  }

  .hero .lead {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 100%;
    color: #cfc8dc;
  }

  .actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  .world-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(3, 1, 8, 0.96) 0%, rgba(3, 1, 8, 0.72) 48%, rgba(3, 1, 8, 0.25) 100%);
    pointer-events: none;
  }

  .world-status {
    display: none;
  }

  .page-hero {
    min-height: auto;
    padding: calc(var(--header) + 40px) 0 48px;
  }

  .page-hero::before {
    background: linear-gradient(0deg, rgba(3, 1, 8, .98) 0%, rgba(3, 1, 8, .8) 54%, rgba(3, 1, 8, .22));
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card:first-child,
  .service-card {
    min-height: auto;
    padding: clamp(20px, 4.5vw, 28px);
  }

  .service-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: clamp(20px, 3.5vw, 24px);
  }

  .list-services,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    min-height: auto;
    padding: clamp(24px, 4vw, 36px);
  }

  .service-row h2 {
    margin-top: 28px;
    font-size: clamp(22px, 3.5vw, 30px);
  }

  .portfolio-project,
  .portfolio-project:nth-child(3n) {
    min-height: auto;
    padding: clamp(24px, 4vw, 36px);
  }

  .portfolio-project h2 {
    margin-top: 32px;
    font-size: clamp(24px, 4vw, 34px);
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-story figure {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
  }

  .about-story img {
    height: clamp(300px, 65vw, 500px);
  }

  .about-story-copy {
    padding-top: 0;
  }

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

  .capability-columns,
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .capability-columns h3 {
    margin-bottom: 28px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: clamp(32px, 6vw, 64px);
  }

  .cta-panel .btn {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

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

  .process-item {
    border-right: 1px solid var(--line);
  }

  .process-item:nth-child(2n) {
    border-right: 0;
  }

  .process-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .process-item:nth-child(3) {
    padding-left: 0;
  }

  .process-item:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
    padding-left: 0;
  }
}

/* Breakpoint: <= 600px (Mobile Devices) */
@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  .form-grid,
  .form-submit {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .submit-button {
    width: 100%;
    min-width: unset;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px; /* Prevents auto-zoom in iOS Safari */
  }

  .audience-groups {
    grid-template-columns: 1fr;
  }

  .audience-groups > div {
    min-height: auto;
    padding: 22px 20px;
  }

  .audience-groups span {
    margin-bottom: 18px;
  }

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

  .about-principle {
    min-height: auto;
    padding: 22px 20px;
  }

  .about-principle span {
    margin-bottom: 18px;
  }

  .audience-layout ul {
    grid-template-columns: 1fr;
  }

  .cta-panel .btn {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Breakpoint: <= 520px (Small Mobile) */
@media (max-width: 520px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process-item {
    border-right: 0 !important;
    padding: 22px 0 10px !important;
    min-height: auto;
    border-bottom: 1px solid var(--line);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .process-item h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .solutions-showcase-panel {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .solution-pillar-item {
    padding: 16px 14px;
    gap: 14px;
  }

  .pillar-num-badge {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .pillar-info h3 {
    font-size: 16px;
  }

  .solutions-floating-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
    gap: 10px;
  }

  .badge-copy strong {
    font-size: 12px;
  }

  .badge-copy span {
    font-size: 11px;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

/* Breakpoint: <= 380px (Extra Small Mobile like iPhone SE) */
@media (max-width: 380px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand {
    width: 132px;
  }

  .brand img {
    width: 122px;
  }

  .hero h1, .page-hero h1 {
    font-size: 30px;
  }

  .section h2 {
    font-size: 26px;
  }

  .service-card,
  .service-row,
  .portfolio-project,
  .contact-form {
    padding: 18px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .page-hero {
    background: radial-gradient(circle at 72% 42%, #3a0873, #07070d 58%);
  }
}
