:root {
  --bg: #f4f6fb;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #1d2340;
  --muted: #61677e;
  --line: rgba(68, 56, 147, 0.14);
  --primary: #3c2f99;
  --primary-deep: #261d69;
  --primary-soft: #e7e4fb;
  --secondary: #72737d;
  --accent: #7f74e0;
  --shadow: 0 24px 70px rgba(42, 37, 93, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(127, 116, 224, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(60, 47, 153, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f9ff 0%, #f2f5fb 52%, #eef2f8 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  overflow-x: hidden;
  overflow-y: visible;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 1.25rem 0 4rem;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 116, 224, 0.22), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 30px rgba(43, 45, 78, 0.08);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.brand {
  width: min(220px, 38vw);
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.nav-shortcuts {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-dropdown {
  position: relative;
  z-index: 60;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(60, 47, 153, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 26px rgba(43, 45, 78, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-icon-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(43, 45, 78, 0.12);
}

.nav-icon-button img {
  width: 24px;
  height: 24px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 90;
  display: grid;
  gap: 0.6rem;
  min-width: 280px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(31, 31, 74, 0.14);
  backdrop-filter: blur(16px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(244, 246, 255, 0.9);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(231, 228, 251, 0.92);
  transform: translateY(-1px);
}

.nav-dropdown-menu strong,
.nav-dropdown-menu span {
  display: block;
}

.nav-dropdown-menu strong {
  color: var(--text);
  font-size: 0.92rem;
}

.nav-dropdown-menu span {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-top: 4.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(60, 47, 153, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.spotlight-card h2,
.contact-copy h2 {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.hero-text,
.section-heading p,
.spotlight-card p,
.contact-copy p,
.mini-card p,
.timeline-step p,
.bento-card p,
.insight-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.hero-badges {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-actions {
  flex-wrap: wrap;
}

.hero-badges {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
  margin-top: 0;
}

.hero-badges::-webkit-scrollbar {
  display: none;
}

.hero-badges-row {
  margin-top: 1.5rem;
}

.hero-badges span {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(60, 47, 153, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 18px 30px rgba(60, 47, 153, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: rgba(60, 47, 153, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary-deep);
}

.button-block {
  width: 100%;
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.glass-card,
.trust-strip,
.bento-card,
.insight-panel,
.timeline-step,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.spotlight-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.self-service-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
}

.self-service-header h2 {
  margin: 0.6rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.self-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.self-service-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  min-height: 54px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(60, 47, 153, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.self-service-links a:hover {
  transform: translateY(-1px);
  background: rgba(231, 228, 251, 0.9);
  box-shadow: 0 14px 28px rgba(43, 45, 78, 0.08);
}

.self-service-links a span {
  display: inline-block;
  min-width: 0;
  padding-right: 0.45rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.self-service-links a img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.spotlight-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 116, 224, 0.22), transparent 68%);
}

.card-label {
  margin: 0;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.spotlight-card h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.stats-grid div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(60, 47, 153, 0.08);
}

.stats-grid strong {
  display: block;
  color: var(--primary);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(127, 116, 224, 0.12);
}

.stats-grid span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.advisor-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.floating-notes {
  display: grid;
  gap: 1rem;
  width: min(82%, 400px);
  margin: 0 0 0 auto;
}

.mission {
  padding-top: 2rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mission-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mission-card .section-heading {
  max-width: none;
}

.mission-text {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.mini-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(28, 27, 76, 0.12);
}

.mini-pill,
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
}

.mini-pill {
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
}

.trust-strip strong {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 0.45rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0.9rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.6;
}

.portfolio,
.insights,
.process,
.contact {
  padding: 6rem 0 0;
}

.local-seo {
  padding-top: 5rem;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.local-seo-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.local-seo-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.local-seo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p {
  margin-top: 1rem;
  font-size: 1.02rem;
}

.coverage-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.coverage-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.coverage-visual > img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.coverage-copy {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem 1.2rem;
}

.coverage-copy strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.coverage-copy span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.55;
}

.coverage-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.compact {
  max-width: 620px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.bento-bottom-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
  width: 100%;
}

.bento-bottom-row > .bento-card {
  flex: 1 1 50%;
  width: calc(50% - 0.5rem);
  min-width: 0;
}

.bento-card {
  min-height: 220px;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.service-icon-light {
  filter: brightness(1.08);
}

.bento-card h3,
.insight-panel h3,
.timeline-step h3 {
  margin: 1rem 0 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
}

.card-number {
  width: 46px;
  height: 46px;
}

.bento-large {
  grid-column: span 6;
  background:
    linear-gradient(140deg, rgba(60, 47, 153, 0.96), rgba(111, 98, 213, 0.92)),
    var(--surface-strong);
  color: #fff;
}

.bento-large p,
.bento-large .card-number {
  color: #fff;
}

.bento-large .card-number {
  background: rgba(255, 255, 255, 0.18);
}

.bento-card:not(.bento-large) {
  grid-column: span 3;
}

.bento-wide {
  grid-column: span 6 !important;
}

.service-extensions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-extension-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.service-extension-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.service-extension-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.insight-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.insight-panel {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
}

.insight-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(127, 116, 224, 0.25), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(239, 239, 255, 0.82));
}

.quote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-step {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
}

.contact {
  padding-bottom: 5rem;
}

.values {
  padding: 1rem 0 4rem;
}

.values-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: calc(var(--radius-xl) + 2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.value-item {
  padding: 1.25rem;
  border: 1px solid rgba(60, 47, 153, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
}

.value-item h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
}

.value-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 4px);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
}

.form-status {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.form-status-success {
  color: #155e3a;
  background: rgba(209, 250, 229, 0.9);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.form-status-error {
  color: #8a1f35;
  background: rgba(255, 228, 230, 0.92);
  border: 1px solid rgba(225, 29, 72, 0.14);
}

.contact-note {
  margin-top: 1rem;
}

.contact-people {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-person {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(60, 47, 153, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-person h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.contact-person p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-person a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 800;
}

.whatsapp-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem !important;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.12);
  color: #15803d !important;
  font-weight: 800;
}

.whatsapp-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 1rem;
  border: 1px solid rgba(60, 47, 153, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
  padding: 1rem;
  resize: vertical;
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(60, 47, 153, 0.45);
  border-bottom: 2px solid rgba(60, 47, 153, 0.45);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(127, 116, 224, 0.25);
  border-color: rgba(60, 47, 153, 0.3);
}

.field-help,
.field-error {
  font-size: 0.88rem;
  line-height: 1.5;
}

.field-help {
  color: var(--muted);
  font-weight: 600;
}

.field-error {
  color: #b42318;
  font-weight: 700;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .advisor-row,
  .contact-card,
  .coverage-gallery,
  .mission-grid,
  .service-extensions,
  .values-grid,
  .local-seo-grid,
  .insight-layout,
  .timeline {
    grid-template-columns: 1fr;
  }

  .bento-bottom-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bento-bottom-row > .bento-card {
    width: 100%;
  }

  .bento-card:not(.bento-large),
  .bento-large,
  .bento-wide {
    grid-column: span 6 !important;
  }

  .floating-notes {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(127, 116, 224, 0.1), transparent 24%),
      radial-gradient(circle at 88% 8%, rgba(60, 47, 153, 0.08), transparent 20%),
      linear-gradient(180deg, #fafbff 0%, #f5f7fc 54%, #eff3f8 100%);
  }

  .coverage-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .coverage-visual {
    border-radius: 22px;
  }

  .coverage-visual > img {
    aspect-ratio: 1 / 1.02;
  }

  .coverage-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.75rem 0.75rem 0.9rem;
  }

  .coverage-copy strong {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .coverage-copy span {
    display: none;
  }

  .coverage-icon,
  .service-icon,
  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .card-meta {
    gap: 0.6rem;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    border-radius: 28px;
  }

  .brand {
    justify-content: center;
    margin: 0 auto;
  }

  .nav-actions,
  .nav-shortcuts,
  .hero-actions {
    flex-direction: column;
  }

  .nav-actions a,
  .button {
    width: 100%;
  }

  .nav-actions > a:not(.button) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.3rem;
    border: 1px solid rgba(60, 47, 153, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--primary-deep);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(43, 45, 78, 0.06);
  }

  .nav-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
  }

  .nav-icon-button {
    width: 100%;
    border-radius: 999px;
  }

  .nav-dropdown-menu {
    left: 1rem;
    right: 1rem;
    min-width: 0;
    width: auto;
    padding: 1rem;
  }

  .nav-dropdown-menu a {
    padding: 0.95rem 1rem;
  }

  .nav-dropdown-menu strong {
    font-size: 0.95rem;
  }

  .nav-dropdown-menu span {
    font-size: 0.9rem;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .hero-badges-row {
    margin-top: 1rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .self-service-links {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .stats-grid,
  .timeline,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .advisor-row {
    margin-top: 0;
  }

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

  .service-extensions {
    gap: 0.8rem;
  }

  .bento-card:not(.bento-large),
  .bento-large,
  .bento-wide {
    grid-column: auto !important;
  }

  .portfolio,
  .insights,
  .process,
  .contact,
  .local-seo {
    padding-top: 4rem;
  }

  .values {
    padding: 0.5rem 0 3rem;
  }

  .values-card {
    padding: 1.4rem;
  }

  .mission {
    padding-top: 1.25rem;
  }

  .mission-card {
    padding: 1.4rem;
  }
}
