﻿/*
Theme Name: SONIDO Renewal
Theme URI: https://sonido.jp/
Author: SONIDO
Description: SONIDO renewal theme. Static design templates converted for WordPress without DB migration.
Version: 1.2.5
Text Domain: sonido-renewal
*/
:root {
  --ink: #0b1628;
  --muted: #667286;
  --paper: #f3f6fa;
  --white: #ffffff;
  --blue: #173f79;
  --blue-dark: #0b254c;
  --blue-soft: #dce8f7;
  --gold: #c7a35c;
  --line: rgba(11, 22, 40, 0.13);
  --shadow: 0 24px 70px rgba(11, 37, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.75;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 250, 0.86)),
    url("assets/sonido-background-wall.png") center / cover no-repeat;
  content: "";
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 18px 10px 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown-menu {
  display: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--blue-dark);
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--blue-soft);
}

.nav-dropdown-menu a::after {
  display: none;
}

.site-nav .nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: block;
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 80px) 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(243, 246, 250, 0.98) 0 36%, rgba(243, 246, 250, 0.78) 58%, rgba(243, 246, 250, 0.94) 100%),
    radial-gradient(circle at 83% 20%, rgba(199, 163, 92, 0.18), transparent 28%);
}

.hero::before {
  position: absolute;
  inset: -4% -5% -2% auto;
  width: min(86vw, 1260px);
  background: url("assets/sonido-hero-bg-illustration.png") center / contain no-repeat;
  opacity: 0.82;
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 246, 250, 1) 0 25%, rgba(243, 246, 250, 0.68) 46%, rgba(243, 246, 250, 0.08) 72%, rgba(243, 246, 250, 0.54) 100%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(34px, 5vw, 72px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 12em;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 90px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(31px, 3.7vw, 52px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.36;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 63, 121, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.16);
}

.button.primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: rgba(0, 87, 255, 0.32);
}

.hero-visual {
  display: none;
}

.hero-visual::before {
  position: absolute;
  right: 4%;
  bottom: 6%;
  z-index: -1;
  width: min(360px, 72%);
  height: 220px;
  background: repeating-linear-gradient(90deg, rgba(23, 63, 121, 0.16) 0 2px, transparent 2px 34px);
  border-radius: 8px;
  transform: rotate(-3deg);
  content: "";
}

.hero-visual::after {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 112px;
  height: 112px;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    var(--blue);
  background-size: 16px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  content: "";
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 80px) clamp(48px, 7vw, 82px);
  background: linear-gradient(180deg, rgba(243, 246, 250, 0), var(--paper));
  box-shadow: none;
}

.trust-band article {
  position: relative;
  padding: 30px 28px 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(11, 37, 76, 0.1);
  overflow: hidden;
}

.trust-band article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.trust-number {
  display: block;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trust-band h2 {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.3vw, 30px);
}

.trust-band p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.google-reviews-section {
  position: relative;
  padding: clamp(66px, 9vw, 112px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.96)),
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  overflow: hidden;
}

.google-reviews-section::before {
  position: absolute;
  top: 16%;
  right: 7%;
  width: min(28vw, 360px);
  height: min(28vw, 360px);
  background: radial-gradient(circle, rgba(199, 163, 92, 0.16), transparent 64%);
  content: "";
}

.google-reviews-section > * {
  position: relative;
  z-index: 1;
}

.google-reviews-head {
  max-width: 860px;
  margin: 0 auto clamp(28px, 5vw, 52px);
  text-align: center;
}

.google-reviews-head h2 {
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.28;
}

.google-reviews-head h2 span {
  display: block;
}

.google-reviews-head p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.google-reviews-widget {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11, 37, 76, 0.09);
}

.google-reviews-widget iframe,
.google-reviews-widget img {
  max-width: 100%;
}

.google-reviews-section .section-actions {
  justify-content: center;
  margin-top: clamp(24px, 4vw, 38px);
}

.message-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 80px) 0;
  padding: clamp(26px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.message-panel::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 34%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.message-photo {
  position: relative;
}

.message-photo::before {
  position: absolute;
  inset: 20px -14px -14px 20px;
  z-index: 0;
  background: var(--blue-soft);
  border-radius: 8px;
  content: "";
}

.message-photo img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.message-copy p:not(.eyebrow),
.section-intro p,
.section-head p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.message-copy h2 {
  max-width: 760px;
}

.message-panel .eyebrow {
  color: var(--gold);
}

.message-panel::before {
  position: absolute;
  right: -44px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  opacity: 0.7;
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 5vw, 80px);
}

.service-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 246, 250, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover fixed;
}

.service-section::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.52);
  content: "";
}

.service-section > * {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-list article,
.reason-grid article,
.work-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 37, 76, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-list article:hover,
.reason-grid article:hover,
.work-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 163, 92, 0.44);
  box-shadow: 0 24px 54px rgba(11, 37, 76, 0.15);
}

.service-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-items: start;
  min-height: 220px;
}

.service-icon {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-list p,
.reason-grid p,
.work-grid p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.reason-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 63, 121, 0.94), rgba(11, 22, 40, 0.98)),
    url("assets/sonido-premium-hero.png") center / cover no-repeat,
    var(--blue-dark);
}

.reason-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.9) 0 8px, transparent 8px),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.18), transparent 26%);
  pointer-events: none;
  content: "";
}

.reason-section > * {
  position: relative;
  z-index: 1;
}

.reason-section .eyebrow {
  color: #f1d38a;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.reason-grid article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.reason-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.reason-section .section-head p {
  color: rgba(255, 255, 255, 0.92);
}

.reason-section .section-actions .button.primary {
  color: var(--blue-dark);
  background: #f1d38a;
  border-color: #f1d38a;
}

.reason-section .section-actions .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
}

.section-head {
  position: relative;
  display: block;
  max-width: 900px;
  margin-bottom: 34px;
  padding-top: 18px;
}

.section-head::before {
  display: block;
  margin-bottom: 2px;
  color: rgba(23, 63, 121, 0.1);
  font-family: Arial, sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: lowercase;
  content: attr(data-label);
}

.reason-section .section-head::before,
.journal .section-head::before {
  color: rgba(255, 255, 255, 0.13);
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--ink);
  background: #f1d38a;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.flow-section {
  background: linear-gradient(180deg, var(--white), #eef4fb);
}

.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.flow-list::before {
  position: absolute;
  top: 55px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(23, 63, 121, 0.18), rgba(199, 163, 92, 0.75), rgba(23, 63, 121, 0.18));
  content: "";
}

.flow-list article {
  position: relative;
  min-height: 285px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11, 37, 76, 0.1);
  transition: background 180ms ease, transform 180ms ease;
}

.flow-list article:hover {
  background: #f8fbff;
  transform: translateY(-3px);
}

.flow-list article::after {
  position: absolute;
  top: 50px;
  right: -28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(23, 63, 121, 0.16);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(11, 37, 76, 0.12);
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.flow-list article:last-child::after {
  display: none;
}

.flow-icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--blue);
  border: 6px solid #eef4fb;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(11, 37, 76, 0.18);
}

.flow-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.flow-list h3 {
  color: var(--blue-dark);
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(23, 63, 121, 0.06), var(--white) 54%),
    url("assets/sonido-consulting-photo.png") center top / 100% 52% no-repeat,
    repeating-linear-gradient(135deg, rgba(23, 63, 121, 0.08) 0 2px, transparent 2px 18px);
  overflow: hidden;
}

.work-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.work-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.work-feature-card {
  position: relative;
  min-height: 520px;
  padding: clamp(30px, 4vw, 48px);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(11, 37, 76, 0.95), rgba(23, 63, 121, 0.86)),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.work-feature-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.9) 0 8px, transparent 8px),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.18), transparent 24%);
  content: "";
}

.work-feature-card > * {
  position: relative;
  z-index: 1;
}

.work-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 92px);
}

.work-feature-meta span,
.work-feature-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.work-feature-meta span {
  color: var(--blue-dark);
  background: #f1d38a;
}

.work-feature-meta strong {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.work-feature-card h3 {
  max-width: 580px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.22;
}

.work-feature-card p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.work-feature-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(28px, 5vw, 46px) 0 0;
  overflow: hidden;
  border-radius: 8px;
}

.work-feature-card dl div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.work-feature-card dt {
  color: #f1d38a;
  font-size: 12px;
  font-weight: 900;
}

.work-feature-card dd {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.work-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.work-mini-grid article,
.work-more-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.92), transparent 42%),
    var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
  overflow: hidden;
}

.work-mini-grid article::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  color: rgba(23, 63, 121, 0.06);
  font-family: Arial, sans-serif;
  font-size: 86px;
  font-weight: 900;
  line-height: 1;
  content: "result";
}

.work-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
}

.work-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.work-mini-grid small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.work-mini-grid h3 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.4vw, 30px);
}

.work-mini-grid p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.work-more-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 63, 121, 0.96), rgba(11, 37, 76, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 18px);
}

.work-more-card span {
  color: #f1d38a;
  font-size: 13px;
  font-weight: 900;
}

.work-more-card strong {
  display: block;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.55;
}

.work-more-card::after {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: 24px;
  color: var(--blue-dark);
  background: var(--white);
  border-radius: 50%;
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.journal {
  background: linear-gradient(135deg, #0b254c, #173f79);
}

.journal-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.journal .eyebrow,
.journal .section-head h2 {
  color: var(--white);
}

.journal .eyebrow {
  color: #f1d38a;
}

.journal .section-head p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.photo-frame {
  position: relative;
}

.photo-frame::before {
  position: absolute;
  inset: 26px -18px -18px 26px;
  z-index: 0;
  background: var(--blue-soft);
  border-radius: 8px;
  content: "";
}

.photo-frame img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.journal-list {
  border-top: 0;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 980px;
  width: 100%;
}

.journal-list a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
  transition: padding-left 160ms ease, color 160ms ease;
}

.journal-list .journal-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none;
  color: var(--white);
  background: var(--blue);
  border-bottom: 0;
}

.journal-list .journal-more::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  content: "→";
}

.journal-list .journal-more:hover {
  padding-left: 30px;
  color: var(--white);
  background: var(--blue-dark);
}

.journal-list a:hover {
  padding-left: 40px;
  color: var(--blue);
}

.journal-list time {
  color: var(--blue);
  font-size: 13px;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.journal-empty {
  margin: 0;
  padding: 24px 30px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
  border-bottom: 1px solid var(--line);
}

.contact {
  position: relative;
  margin: 0;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat,
    var(--blue-dark);
  border-radius: 0;
  overflow: hidden;
  text-align: left;
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.page-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.page-top-button::before {
  margin-right: 8px;
  content: "↑";
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.page-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top-button:hover {
  background: var(--blue);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.contact .eyebrow {
  color: #f1d38a;
}

.contact-logo {
  width: min(190px, 52vw);
  height: auto;
  margin-bottom: 30px;
}

.contact h2 {
  max-width: 720px;
}

.contact p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-card {
  padding: clamp(28px, 4vw, 42px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-card-label,
.contact-card small {
  display: block;
}

.contact-card-label {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.2;
}

.contact-card p {
  margin-top: 16px;
  color: var(--muted);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  margin-top: 24px;
  padding: 0 18px 0 22px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-button::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  content: "→";
}

.contact-button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.contact-card small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 80px) 28px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-logo {
  width: min(180px, 48vw);
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links span {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: clamp(44px, 7vw, 82px) auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p,
.footer-bottom small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.single-page {
  background: #f4f7fb;
}

.single-hero {
  position: relative;
  padding: clamp(30px, 4vw, 46px) clamp(20px, 5vw, 80px) clamp(26px, 4vw, 42px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1) 0 50%, rgba(244, 247, 251, 0.78)),
    url("assets/sonido-hero-bg-illustration.png") right center / min(58vw, 880px) auto no-repeat;
  overflow: hidden;
}

.single-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.breadcrumb {
  display: inline-flex;
  margin-right: 8px;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.single-hero-inner > span {
  margin-right: 8px;
  color: var(--muted);
  font-size: 12px;
}

.single-hero h1 {
  max-width: 860px;
  margin-top: 10px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.36;
}

.single-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.article-meta time,
.article-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.article-layout {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 80px);
}

.article-body {
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body > * {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body > :last-child {
  margin-bottom: 0;
}

.article-main-image,
.article-cta {
  max-width: none;
}

.article-main-image {
  margin: 0 0 clamp(32px, 5vw, 52px);
}

.article-main-image img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.article-intro {
  padding: 24px;
  background: var(--blue-soft);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
}

.article-body p,
.article-body li {
  color: #29364a;
  font-size: 17px;
  font-weight: 600;
  line-height: 2.05;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body h2 {
  position: relative;
  margin: clamp(48px, 6vw, 76px) 0 24px;
  padding: 24px 28px 24px 34px;
  color: var(--blue-dark);
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 7px, transparent 7px),
    linear-gradient(135deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 37, 76, 0.07);
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 900;
  line-height: 1.45;
}

.article-body h3 {
  position: relative;
  margin: 36px 0 16px;
  padding-left: 18px;
  color: var(--blue-dark);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 900;
  line-height: 1.5;
}

.article-body h3::before {
  position: absolute;
  top: 0.24em;
  bottom: 0.24em;
  left: 0;
  width: 5px;
  background: var(--gold);
  border-radius: 999px;
  content: "";
}

.article-body h4 {
  margin: 28px 0 14px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 28px;
  color: var(--blue-dark);
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 6px, transparent 6px),
    #f8fbff;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.9;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 28px;
}

.article-body li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.article-body img,
.article-body iframe,
.article-body video {
  max-width: 100%;
}

.article-body img {
  height: auto;
}

.article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-body th,
.article-body td {
  padding: 12px;
  border: 1px solid var(--line);
}

.article-body .wp-caption {
  max-width: 100%;
}

.article-body .wp-caption-text {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.seal-btn-wrap {
  margin: 28px 0;
  text-align: center;
}

.seal-btn-wrap.position-left {
  text-align: left;
}

.seal-btn-wrap.position-right {
  text-align: right;
}

.seal-btn-wrap a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  color: var(--white);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(23, 63, 121, 0.18);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.seal-btn-wrap a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(23, 63, 121, 0.24);
}

.seal-btn-wrap.ghost a,
.seal-btn-wrap.ghostspe a {
  color: var(--blue-dark);
  background: var(--white);
}

.seal-btn-wrap.spe a,
.seal-btn-wrap.spe2 a,
.seal-btn-wrap.kotei1 a,
.seal-btn-wrap.kotei2 a {
  min-width: min(100%, 320px);
}

.seal-btn-wrap.is-flat a {
  box-shadow: none;
}

.seal-img {
  margin: 28px 0;
}

.seal-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.seal-img-shadow img {
  box-shadow: 0 18px 44px rgba(11, 37, 76, 0.16);
}

.seal-img-frame img {
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(23, 63, 121, 0.16);
}

.seal-colwrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 32px 0;
}

.seal-col {
  min-width: 0;
}

.seal-col-2 {
  flex: 1 1 50%;
}

.seal-col-3 {
  flex: 1 1 33.333%;
}

.seal-col-4 {
  flex: 1 1 25%;
}

.seal-col-37 {
  flex: 0 1 30%;
}

.seal-col-73 {
  flex: 0 1 70%;
}

.seal-box,
.seal-topic,
.seal-flow {
  margin: 30px 0;
  padding: 24px;
  background: #f8fbff;
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-left: 6px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 37, 76, 0.06);
}

.seal-box.is-flat {
  box-shadow: none;
}

.seal-box-yellow,
.seal-topic-yellow {
  background: #fff8dd;
  border-left-color: #d8ae35;
}

.seal-box-pink,
.seal-topic-pink {
  background: #fff0f5;
  border-left-color: #d35c87;
}

.seal-box-sky,
.seal-topic-blue {
  background: #eef7ff;
  border-left-color: var(--blue);
}

.seal-box-orange,
.seal-topic-orange {
  background: #fff2e5;
  border-left-color: #d77728;
}

.seal-box-lime,
.seal-topic-green {
  background: #f0faef;
  border-left-color: #4f9b55;
}

.seal-box-boader {
  background: var(--white);
  border-left-color: var(--gold);
}

.seal-topic strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 19px;
  font-weight: 900;
}

.seal-spfont {
  font-size: 0.9em;
}

.seal-keikou {
  background: linear-gradient(transparent 56%, rgba(241, 211, 138, 0.82) 56%);
  color: inherit;
}

.seal-voice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 30px 0;
}

.seal-voice-right {
  flex-direction: row-reverse;
}

.seal-voice img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.seal-voice-balloon {
  flex: 1;
  padding: 18px 20px;
  background: #f8fbff;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
}

.seal-voice-balloon strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.seal-voice-balloon p {
  margin: 0;
}

.seal-wide {
  margin: 34px 0;
  padding: clamp(28px, 5vw, 56px);
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  overflow: hidden;
}

.seal-related a {
  display: inline-flex;
  padding: 14px 18px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 8px;
  font-weight: 900;
}

.seal-arrow {
  width: 0;
  height: 0;
  margin: 20px auto;
  border-top: 18px solid var(--gold);
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
}

.seal-emphasis {
  text-emphasis: filled dot;
  text-emphasis-position: over right;
}

.seal-mobile-only {
  display: none;
}

.toc,
#toc_container,
.toc_container {
  display: grid;
  gap: 12px;
  margin: clamp(34px, 5vw, 54px) 0;
  padding: 24px;
  background: #f8fbff;
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 8px;
}

.toc strong,
#toc_container .toc_title,
.toc_container .toc_title {
  margin: 0;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
}

.toc a,
#toc_container a,
.toc_container a {
  color: var(--ink);
  font-weight: 800;
}

#toc_container ul,
.toc_container ul,
#toc_container ol,
.toc_container ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  list-style: decimal;
}

#toc_container li,
.toc_container li {
  padding-left: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

#toc_container li::before,
.toc_container li::before {
  content: none;
}

.article-cta {
  display: block;
  margin-top: clamp(42px, 6vw, 72px);
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.96), rgba(23, 63, 121, 0.9)),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat;
  border-radius: 8px;
}

.article-cta .eyebrow {
  color: #f1d38a;
}

.article-cta h2 {
  margin: 0;
  color: var(--white);
  border: 0;
  padding: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.article-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

.article-cta .contact-button {
  display: inline-flex;
  min-width: min(100%, 260px);
  margin-top: 26px;
}

.related-posts {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 80px);
  background: var(--white);
}

.related-posts .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.related-grid a {
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 24px;
  background: #f8fbff;
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.related-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.related-grid time {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.related-grid strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.blog-page {
  background: #f4f7fb;
}

.blog-hero {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 80px) clamp(44px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1) 0 44%, rgba(244, 247, 251, 0.74)),
    url("assets/sonido-hero-bg-illustration.png") right center / min(58vw, 880px) auto no-repeat;
}

.blog-hero-copy {
  max-width: 900px;
}

.blog-hero h1 {
  max-width: 940px;
  font-size: clamp(42px, 5.4vw, 76px);
}

.blog-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.blog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(42px, 6vw, 72px);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.category-tabs a.is-active {
  color: var(--white);
  background: var(--blue);
}

.blog-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.blog-search div {
  display: flex;
  background: var(--white);
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11, 37, 76, 0.08);
  overflow: hidden;
}

.blog-search input {
  min-width: 0;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 0;
  font: inherit;
}

.blog-search button {
  width: 78px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-weight: 900;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(54px, 8vw, 90px);
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-image img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.featured-copy time,
.post-card-body time {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.featured-copy h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.3vw, 46px);
}

.featured-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.post-archive {
  padding: 0 clamp(20px, 5vw, 80px) clamp(64px, 9vw, 108px);
}

.post-archive .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.post-grid article {
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.post-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.post-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--blue-soft);
  overflow: hidden;
}

.post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 22px;
}

.post-card-body span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.post-card-body h3 {
  margin-top: 10px;
}

.post-card-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(34px, 5vw, 58px);
}

.pagination a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 8px;
  font-weight: 900;
}

.pagination a.is-current {
  color: var(--white);
  background: var(--blue);
}

.blog-category-nav {
  max-width: 1180px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.07);
}

.blog-category-nav > span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.blog-category-nav .category-tabs {
  margin-top: 0;
}

.blog-category-nav-top {
  margin-top: 0;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.blog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 80px) clamp(70px, 9vw, 118px);
  padding: clamp(30px, 5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.96), rgba(23, 63, 121, 0.9)),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-cta .eyebrow {
  color: #f1d38a;
}

.blog-cta h2 {
  max-width: 800px;
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 44px);
}

.blog-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.service-page {
  background: #f4f7fb;
}

.service-hero {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 80px) clamp(62px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1) 0 42%, rgba(244, 247, 251, 0.72)),
    url("assets/sonido-hero-bg-illustration.png") right center / min(62vw, 920px) auto no-repeat;
}

.service-hero-copy {
  max-width: 880px;
}

.service-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.6vw, 78px);
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.page-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(23, 63, 121, 0.16);
  font-family: Arial, sans-serif;
  font-size: clamp(64px, 10vw, 150px);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
}

.service-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(50px, 7vw, 84px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.service-index span,
.service-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.service-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.service-index a {
  color: var(--blue-dark);
}

.service-message {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  margin: 0 clamp(20px, 5vw, 80px);
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-message::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.service-message-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.service-message-text {
  padding: clamp(10px, 3vw, 24px);
}

.service-message .eyebrow {
  color: var(--gold);
}

.service-message h2 {
  max-width: 850px;
  color: var(--blue-dark);
}

.service-message p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.service-modern {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 80px);
}

.service-modern-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
}

.service-modern-list {
  display: grid;
  gap: 14px;
}

.service-modern-list article {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.service-modern-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.service-modern-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-modern-list span,
.service-step-number {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.service-modern-list strong {
  display: block;
  margin-top: 6px;
  color: var(--blue-dark);
  font-size: 22px;
}

.service-modern-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.service-for,
.service-faq {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 80px);
}

.service-for {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.98)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.service-for .section-head,
.service-faq .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.service-for-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-for-grid article {
  position: relative;
  min-height: 260px;
  padding: 84px 28px 28px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
  overflow: hidden;
}

.for-number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.service-for-grid article::after {
  position: absolute;
  right: -34px;
  top: -42px;
  width: 150px;
  height: 150px;
  background: var(--blue-soft);
  border-radius: 50%;
  opacity: 0.72;
  content: "";
}

.service-for-grid h3 {
  margin-top: 22px;
  color: var(--blue-dark);
  font-size: clamp(23px, 2.5vw, 32px);
}

.service-for-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.service-steps-section,
.service-included {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 80px);
}

.service-steps-section {
  background: var(--white);
}

.service-steps-section .section-head,
.service-included .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.service-step-list {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-step-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(26px, 5vw, 46px);
  background: #f8fbff;
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
}

.service-step-list article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 86px;
  background: var(--white);
}

.service-step-list article:nth-child(even) .service-step-number {
  grid-column: 2;
  grid-row: 1;
}

.service-step-list article:nth-child(even) > div:last-child {
  grid-column: 1;
  grid-row: 1;
}

.service-step-list article:nth-child(2) .service-step-icon,
.service-step-list article:nth-child(4) .service-step-icon {
  background: #f5eddc;
  color: var(--blue-dark);
}

.service-step-number {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.service-step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.service-step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-step-list h3 {
  color: var(--blue-dark);
  font-size: clamp(27px, 3vw, 40px);
}

.service-step-list strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.7;
}

.service-step-list p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  background: #f8fbff;
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
}

.faq-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.faq-list h3 {
  color: var(--blue-dark);
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.included-grid article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.included-grid article:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(23, 63, 121, 0.9), rgba(11, 37, 76, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.included-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.9), rgba(23, 63, 121, 0.86)),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat;
}

.included-grid article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(23, 63, 121, 0.92), rgba(11, 37, 76, 0.96)),
    url("assets/sonido-hero-bg-illustration.png") center / cover no-repeat;
}

.included-grid article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.92), rgba(23, 63, 121, 0.82)),
    url("assets/sonido-premium-hero.png") center / cover no-repeat;
}

.included-grid article::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
}

.included-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.included-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.included-grid h3 {
  color: var(--white);
}

.included-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.service-talk {
  position: relative;
  display: block;
  margin: 0;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.service-talk::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.service-talk .eyebrow {
  color: #f1d38a;
}

.service-talk h2 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(31px, 3.7vw, 52px);
}

.service-talk p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.service-talk .contact-card p {
  color: var(--muted);
}

.service-talk .contact-card small {
  color: var(--muted);
}

.flow-page {
  background: #f4f7fb;
}

.flow-hero {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 80px) clamp(62px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1) 0 42%, rgba(244, 247, 251, 0.72)),
    url("assets/sonido-hero-bg-illustration.png") right center / min(62vw, 920px) auto no-repeat;
}

.flow-hero-copy {
  max-width: 900px;
}

.flow-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 5.6vw, 78px);
}

.flow-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.flow-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(50px, 7vw, 84px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.flow-index span,
.flow-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.flow-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.flow-index a {
  color: var(--blue-dark);
}

.flow-intro {
  padding: 0 clamp(20px, 5vw, 80px) clamp(70px, 9vw, 110px);
}

.flow-intro-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.flow-intro-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.flow-intro-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
}

.flow-summary {
  padding: 0 clamp(20px, 5vw, 80px) clamp(72px, 10vw, 118px);
}

.flow-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.flow-summary-grid article {
  position: relative;
  min-height: 220px;
  padding: 26px;
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.flow-summary-grid article:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(23, 63, 121, 0.92), rgba(11, 37, 76, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.flow-summary-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.92), rgba(23, 63, 121, 0.86)),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat;
}

.flow-summary-grid article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(23, 63, 121, 0.9), rgba(11, 37, 76, 0.96)),
    url("assets/sonido-premium-hero.png") center / cover no-repeat;
}

.flow-summary-grid article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.92), rgba(23, 63, 121, 0.84)),
    url("assets/sonido-hero-bg-illustration.png") center / cover no-repeat;
}

.flow-summary-icon,
.prep-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 8px;
}

.flow-summary-icon {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
}

.flow-summary-icon svg,
.prep-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-summary-grid span {
  color: #f1d38a;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.flow-summary-grid h3 {
  margin-top: 12px;
  color: var(--white);
}

.flow-summary-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.flow-timeline-section,
.client-prep,
.flow-faq {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 80px);
}

.flow-timeline-section {
  background: var(--white);
}

.flow-timeline-section .section-head,
.client-prep .section-head,
.flow-faq .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.flow-timeline {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.flow-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 43px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--gold));
  content: "";
}

.flow-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 86px 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  background: #f8fbff;
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(11, 37, 76, 0.06);
}

.flow-timeline article:nth-child(even) {
  background: var(--white);
}

.flow-step-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--blue);
  border: 6px solid var(--white);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(11, 37, 76, 0.15);
}

.flow-step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.flow-step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.flow-timeline h3 {
  color: var(--blue-dark);
  font-size: clamp(22px, 2.4vw, 30px);
}

.flow-timeline p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.client-prep {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.98)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.prep-grid article {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.prep-icon {
  color: var(--blue);
  background: var(--blue-soft);
}

.prep-grid h3 {
  color: var(--blue-dark);
}

.prep-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.flow-faq {
  background: var(--white);
}

.flow-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.flow-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.flow-cta .eyebrow {
  color: #f1d38a;
}

.flow-cta h2 {
  color: var(--white);
}

.flow-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.flow-cta .contact-card p,
.flow-cta .contact-card small {
  color: var(--muted);
}

.qa-page {
  background: #f4f7fb;
}

.qa-hero {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 80px) clamp(62px, 8vw, 110px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 1) 0 42%, rgba(244, 247, 251, 0.72)),
    url("assets/sonido-hero-bg-illustration.png") right center / min(62vw, 920px) auto no-repeat;
}

.qa-hero-copy {
  max-width: 900px;
}

.qa-hero h1 {
  font-size: clamp(46px, 6vw, 88px);
}

.qa-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.qa-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(50px, 7vw, 84px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.qa-index span,
.qa-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.qa-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.qa-index a {
  color: var(--blue-dark);
}

.qa-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(64px, 9vw, 108px);
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.qa-lead p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
}

.qa-lead img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.qa-list-section {
  padding: 0 clamp(20px, 5vw, 80px) clamp(72px, 10vw, 118px);
}

.qa-list-section .section-head {
  max-width: 1180px;
  margin-inline: auto;
}

.qa-category {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.qa-category-head {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.qa-category-head span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.qa-category-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.qa-list {
  display: grid;
  gap: 12px;
}

.qa-list details {
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(11, 37, 76, 0.07);
  overflow: hidden;
}

.qa-list summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.qa-list summary::-webkit-details-marker {
  display: none;
}

.qa-list summary span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.qa-list summary::after {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  content: "+";
  font-family: Arial, sans-serif;
}

.qa-list details[open] summary::after {
  content: "−";
}

.qa-list details > div {
  padding: 0 24px 24px 84px;
}

.qa-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.qa-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-consulting-photo.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.qa-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.qa-cta .eyebrow {
  color: #f1d38a;
}

.qa-cta h2 {
  color: var(--white);
}

.qa-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.qa-cta .contact-card p,
.qa-cta .contact-card small {
  color: var(--muted);
}

.company-page {
  background: #f4f7fb;
}

.company-hero {
  position: relative;
  min-height: 640px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 45%, rgba(244, 247, 251, 0.76) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-marketing-illustration.png") right 48% / min(58vw, 880px) auto no-repeat;
  overflow: hidden;
}

.company-hero::before {
  position: absolute;
  inset: auto clamp(24px, 6vw, 96px) 52px auto;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
  content: "";
}

.company-hero::after {
  position: absolute;
  top: 112px;
  right: clamp(28px, 6vw, 100px);
  width: 86px;
  height: 86px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.9;
  content: "";
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.company-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.2vw, 74px);
}

.company-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.company-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.company-index span,
.company-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.company-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.company-index a {
  color: var(--blue-dark);
}

.company-greeting {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.company-greeting-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.company-greeting-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.company-photo {
  position: relative;
}

.company-photo::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 50%;
  height: 46%;
  background: var(--blue);
  border-radius: 8px;
  content: "";
}

.company-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 8px;
}

.company-copy {
  padding: clamp(8px, 2vw, 22px);
}

.company-copy .eyebrow {
  color: var(--gold);
}

.company-copy h2 {
  color: var(--blue-dark);
}

.company-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.origin-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 251, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.origin-grid article {
  position: relative;
  min-height: 310px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11, 37, 76, 0.1);
  overflow: hidden;
}

.origin-grid article::before {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), rgba(23, 63, 121, 0.16));
  content: "";
}

.origin-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.origin-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.origin-grid h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1.55;
}

.origin-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.vision-section {
  position: relative;
  padding: clamp(78px, 10vw, 130px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 54%, rgba(23, 63, 121, 0.78) 54% 100%),
    url("assets/sonido-background-wall.png") center / cover no-repeat;
  overflow: hidden;
}

.vision-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14), transparent 22%);
  pointer-events: none;
  content: "";
}

.vision-card {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.vision-card .eyebrow {
  color: #f1d38a;
}

.vision-card h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 58px);
}

.vision-card p:not(.eyebrow) {
  max-width: 840px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.company-values {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin-top: clamp(38px, 6vw, 72px);
}

.company-values article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.company-values span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: #f1d38a;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.company-values h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
}

.company-values p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.profile-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(255, 255, 255, 0.92)),
    url("assets/sonido-hero.png") center / cover no-repeat;
}

.profile-table {
  max-width: 1040px;
  margin: clamp(30px, 5vw, 58px) auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-table dl {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  margin: 0;
  border-bottom: 1px solid rgba(11, 22, 40, 0.1);
}

.profile-table dl:last-child {
  border-bottom: 0;
}

.profile-table dt,
.profile-table dd {
  margin: 0;
  padding: 20px 24px;
}

.profile-table dt {
  color: var(--blue-dark);
  background: rgba(220, 232, 247, 0.72);
  font-weight: 900;
}

.profile-table dd {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.results-section {
  position: relative;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef4fb);
  background-size: 38px 38px, 38px 38px, auto;
  overflow: hidden;
}

.results-section::before {
  position: absolute;
  top: 12%;
  right: 5%;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 163, 92, 0.16), transparent 58%),
    linear-gradient(90deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  border-radius: 50%;
  opacity: 0.82;
  content: "";
}

.results-section > * {
  position: relative;
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.results-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  color: var(--ink);
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.92), transparent 42%),
    var(--white);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
  overflow: hidden;
}

.results-grid article::before {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 150px;
  height: 150px;
  background: rgba(23, 63, 121, 0.07);
  border: 18px solid rgba(199, 163, 92, 0.16);
  border-radius: 50%;
  content: "";
}

.results-grid article::after {
  position: absolute;
  top: 34px;
  right: 28px;
  width: 68px;
  height: 40px;
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.14) 0 18%, transparent 18% 27%, rgba(23, 63, 121, 0.14) 27% 48%, transparent 48% 58%, rgba(23, 63, 121, 0.14) 58% 100%);
  clip-path: polygon(0 42%, 74% 42%, 74% 18%, 100% 50%, 74% 82%, 74% 58%, 0 58%);
  content: "";
}

.results-grid article:nth-child(2n) {
  background:
    radial-gradient(circle at right top, rgba(199, 163, 92, 0.22), transparent 42%),
    #ffffff;
}

.results-grid article:nth-child(3n) {
  background:
    radial-gradient(circle at right top, rgba(23, 63, 121, 0.12), transparent 44%),
    #ffffff;
}

.results-grid span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.results-grid strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 12em;
  margin-top: 28px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.results-grid p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.company-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-marketing-hero.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.company-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.company-cta .eyebrow {
  color: #f1d38a;
}

.company-cta h2 {
  color: var(--white);
}

.company-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.company-cta .contact-card p,
.company-cta .contact-card small {
  color: var(--muted);
}

.reason-page {
  background: #f4f7fb;
}

.reason-hero {
  position: relative;
  min-height: 660px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 44%, rgba(244, 247, 251, 0.74) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-hero-bg-illustration.png") right 48% / min(62vw, 940px) auto no-repeat;
  overflow: hidden;
}

.reason-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.reason-hero::after {
  position: absolute;
  top: 126px;
  right: clamp(28px, 6vw, 102px);
  width: 92px;
  height: 92px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.86;
  content: "";
}

.reason-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.reason-hero h1 {
  max-width: 940px;
  font-size: clamp(40px, 5.1vw, 74px);
}

.reason-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.reason-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.reason-index span,
.reason-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.reason-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.reason-index a {
  color: var(--blue-dark);
}

.reason-concept {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.reason-concept-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reason-concept-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.reason-concept-image {
  position: relative;
}

.reason-concept-image::before {
  position: absolute;
  inset: 22px -16px -16px 22px;
  z-index: 0;
  background: var(--blue-soft);
  border-radius: 8px;
  content: "";
}

.reason-concept-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.reason-concept-copy {
  padding: clamp(8px, 2vw, 22px);
}

.reason-concept-copy .eyebrow {
  color: var(--gold);
}

.reason-concept-copy h2 {
  color: var(--blue-dark);
}

.reason-concept-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.reason-detail-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 251, 0.96)),
    url("assets/sonido-background-wall.png") center / cover no-repeat;
}

.reason-detail-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.reason-detail-grid article {
  position: relative;
  grid-column: span 2;
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
  overflow: hidden;
}

.reason-detail-grid article:nth-child(4),
.reason-detail-grid article:nth-child(5) {
  grid-column: span 3;
}

.reason-detail-grid article::before {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), rgba(23, 63, 121, 0.16));
  content: "";
}

.reason-detail-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
}

.reason-detail-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reason-detail-grid span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.reason-detail-grid h3 {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 23px;
}

.reason-detail-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.reason-compare {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(76px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 54%, rgba(23, 63, 121, 0.78) 54% 100%),
    url("assets/sonido-premium-hero.png") center / cover no-repeat;
  overflow: hidden;
}

.reason-compare::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.reason-compare > * {
  position: relative;
  z-index: 1;
}

.reason-compare .eyebrow {
  color: #f1d38a;
}

.reason-compare h2 {
  max-width: 780px;
  color: var(--white);
}

.reason-compare-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.reason-compare-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reason-compare-list article {
  min-height: 170px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.reason-compare-list span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f1d38a;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason-compare-list strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.5;
}

.reason-proof {
  position: relative;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef4fb);
  background-size: 38px 38px, 38px 38px, auto;
  overflow: hidden;
}

.reason-proof::before {
  position: absolute;
  top: 12%;
  right: 5%;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 163, 92, 0.16), transparent 58%),
    linear-gradient(90deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  border-radius: 50%;
  content: "";
}

.reason-proof > * {
  position: relative;
  z-index: 1;
}

.reason-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.reason-proof-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.92), transparent 42%),
    var(--white);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
  overflow: hidden;
}

.reason-proof-grid article:nth-child(2) {
  background:
    radial-gradient(circle at right top, rgba(199, 163, 92, 0.2), transparent 42%),
    var(--white);
}

.reason-proof-grid article::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 76px;
  height: 42px;
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.14) 0 18%, transparent 18% 27%, rgba(23, 63, 121, 0.14) 27% 48%, transparent 48% 58%, rgba(23, 63, 121, 0.14) 58% 100%);
  clip-path: polygon(0 42%, 74% 42%, 74% 18%, 100% 50%, 74% 82%, 74% 58%, 0 58%);
  content: "";
}

.reason-proof-grid span {
  display: inline-flex;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reason-proof-grid h3 {
  max-width: 12em;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
}

.reason-proof-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.reason-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-marketing-hero.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.reason-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.reason-cta .eyebrow {
  color: #f1d38a;
}

.reason-cta h2 {
  color: var(--white);
}

.reason-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.reason-cta .contact-card p,
.reason-cta .contact-card small {
  color: var(--muted);
}

.voice-page {
  background: #f4f7fb;
}

.voice-hero {
  position: relative;
  min-height: 640px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 44%, rgba(244, 247, 251, 0.74) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-marketing-illustration.png") right 48% / min(60vw, 900px) auto no-repeat;
  overflow: hidden;
}

.voice-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.voice-hero::after {
  position: absolute;
  top: 126px;
  right: clamp(28px, 6vw, 102px);
  width: 92px;
  height: 92px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.86;
  content: "";
}

.voice-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.voice-hero h1 {
  max-width: 940px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.voice-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.voice-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.voice-index span,
.voice-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.voice-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.voice-index a {
  color: var(--blue-dark);
}

.voice-featured {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.voice-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.voice-featured-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.voice-featured-photo {
  position: relative;
}

.voice-featured-photo::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 50%;
  height: 46%;
  background: var(--blue);
  border-radius: 8px;
  content: "";
}

.voice-featured-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 8px;
}

.voice-featured-copy .eyebrow {
  color: var(--gold);
}

.voice-featured-copy h2 {
  color: var(--blue-dark);
}

.voice-featured-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.voice-quote {
  margin-top: 28px;
  padding: 24px;
  background: #eef4fb;
  border-left: 7px solid var(--gold);
  border-radius: 8px;
}

.voice-quote strong {
  display: block;
  color: var(--blue-dark);
  font-size: 19px;
}

.voice-quote p {
  margin-top: 10px !important;
}

.voice-summary,
.voice-faq {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 251, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.voice-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.voice-summary-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.voice-summary-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.voice-summary-grid h3 {
  margin-top: 20px;
  color: var(--blue-dark);
}

.voice-summary-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.voice-list-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background: var(--white);
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.voice-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.88), transparent 42%),
    #ffffff;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
  overflow: hidden;
}

.voice-card-photo {
  position: relative;
  z-index: 1;
  margin: -10px -10px 22px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-soft);
}

.voice-card-photo img {
  aspect-ratio: 16 / 8.6;
  width: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92);
}

.voice-card-photo-wide img {
  aspect-ratio: 5 / 2;
}

.voice-card::before {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(23, 63, 121, 0.1);
  content: "VOICE";
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.voice-card:nth-child(2n) {
  background:
    radial-gradient(circle at right top, rgba(199, 163, 92, 0.2), transparent 42%),
    #ffffff;
}

.voice-card-head {
  position: relative;
  z-index: 1;
}

.voice-card-head span {
  display: inline-flex;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.voice-card-head strong {
  display: block;
  max-width: 16em;
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.35;
}

.voice-card > p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.voice-card > .voice-comment {
  padding: 20px 20px 20px 24px;
  color: var(--blue-dark);
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 5px, transparent 5px),
    rgba(248, 251, 255, 0.86);
  border: 1px solid rgba(23, 63, 121, 0.1);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.voice-card > .voice-comment::before {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  content: "お客様の声";
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.voice-card details {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  background: #f4f7fb;
  border: 1px solid rgba(11, 22, 40, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.voice-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--blue-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.voice-card summary::-webkit-details-marker {
  display: none;
}

.voice-card summary::after {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  content: "+";
  font-family: Arial, sans-serif;
}

.voice-card details[open] summary::after {
  content: "−";
}

.voice-card details div {
  padding: 0 16px 16px;
}

.voice-card details p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.voice-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.voice-point-grid article {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.voice-point-grid h3 {
  color: var(--blue-dark);
}

.voice-point-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.voice-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-marketing-hero.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.voice-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.voice-cta .eyebrow {
  color: #f1d38a;
}

.voice-cta h2 {
  color: var(--white);
}

.voice-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.voice-cta .contact-card p,
.voice-cta .contact-card small {
  color: var(--muted);
}

.works-page {
  background: #f4f7fb;
}

.works-hero {
  position: relative;
  min-height: 650px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 44%, rgba(244, 247, 251, 0.72) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-marketing-illustration.png") right 48% / min(60vw, 900px) auto no-repeat;
  overflow: hidden;
}

.works-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.works-hero::after {
  position: absolute;
  top: 126px;
  right: clamp(28px, 6vw, 102px);
  width: 92px;
  height: 92px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.86;
  content: "";
}

.works-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.works-hero h1 {
  max-width: 960px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.works-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.works-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.works-index span,
.works-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.works-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.works-index a {
  color: var(--blue-dark);
}

.works-overview {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.works-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.works-overview-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.works-overview-number {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.2), transparent 28%),
    var(--blue-dark);
  border-radius: 8px;
}

.works-overview-number span {
  font-family: Arial, sans-serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.works-overview-number p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.works-overview-copy .eyebrow {
  color: var(--gold);
}

.works-overview-copy h2 {
  color: var(--blue-dark);
}

.works-overview-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.industry-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 251, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.industry-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(11, 37, 76, 0.06);
  font-weight: 900;
}

.results-list-section {
  position: relative;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef4fb);
  background-size: 38px 38px, 38px 38px, auto;
  overflow: hidden;
}

.results-list-section::before {
  position: absolute;
  top: 9%;
  right: 5%;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 163, 92, 0.16), transparent 58%),
    linear-gradient(90deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.14) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  border-radius: 50%;
  content: "";
}

.results-list-section > * {
  position: relative;
  z-index: 1;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.achievement-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.88), transparent 42%),
    var(--white);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
  overflow: hidden;
}

.achievement-grid article:nth-child(3n + 2) {
  background:
    radial-gradient(circle at right top, rgba(199, 163, 92, 0.2), transparent 42%),
    var(--white);
}

.achievement-grid article::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 76px;
  height: 42px;
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 0 18%, transparent 18% 27%, rgba(23, 63, 121, 0.13) 27% 48%, transparent 48% 58%, rgba(23, 63, 121, 0.13) 58% 100%);
  clip-path: polygon(0 42%, 74% 42%, 74% 18%, 100% 50%, 74% 82%, 74% 58%, 0 58%);
  content: "";
}

.achievement-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.achievement-grid strong {
  display: block;
  max-width: 13em;
  margin-top: 24px;
  color: var(--blue-dark);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.achievement-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.achievement-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 20px;
  color: var(--blue);
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

.achievement-final {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.98), rgba(23, 63, 121, 0.86)) !important;
}

.achievement-final span {
  color: var(--blue-dark);
  background: #f1d38a;
}

.achievement-final strong,
.achievement-final p {
  color: var(--white);
}

.achievement-final p {
  color: rgba(255, 255, 255, 0.8);
}

.works-interviews {
  position: relative;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.96), rgba(255, 255, 255, 0.98)),
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  overflow: hidden;
}

.works-interviews::before {
  position: absolute;
  inset: 12% auto auto 5%;
  width: min(26vw, 320px);
  height: min(26vw, 320px);
  background: radial-gradient(circle, rgba(199, 163, 92, 0.18), transparent 64%);
  content: "";
}

.works-interviews > * {
  position: relative;
  z-index: 1;
}

.interview-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.interview-link-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11, 37, 76, 0.09);
}

.interview-link-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: var(--blue);
  background: rgba(220, 232, 247, 0.92);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.interview-link-grid h3 {
  margin: 24px 0 0;
  color: var(--blue-dark);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.interview-link-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.interview-link-grid .button {
  margin-top: auto;
}

.interview-voice-card {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 37, 76, 0.98), rgba(23, 63, 121, 0.88)),
    radial-gradient(circle at right top, rgba(199, 163, 92, 0.28), transparent 48%) !important;
}

.interview-voice-card span {
  color: var(--blue-dark);
  background: #f1d38a;
}

.interview-voice-card h3,
.interview-voice-card p {
  color: var(--white);
}

.interview-voice-card p {
  color: rgba(255, 255, 255, 0.82);
}

.interview-voice-card .button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--white);
}

.works-note {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 80px);
  background: var(--white);
}

.works-note-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: #f4f7fb;
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.08);
}

.works-note-inner .eyebrow {
  color: var(--gold);
}

.works-note-inner h2 {
  color: var(--blue-dark);
}

.works-note-inner p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.works-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-marketing-hero.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.works-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.works-cta .eyebrow {
  color: #f1d38a;
}

.works-cta h2 {
  color: var(--white);
}

.works-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.works-cta .contact-card p,
.works-cta .contact-card small {
  color: var(--muted);
}

.case-page {
  background: #f4f7fb;
}

.case-hero {
  position: relative;
  min-height: 650px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  overflow: hidden;
}

.case-hero-window {
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 44%, rgba(244, 247, 251, 0.76) 64%, rgba(244, 247, 251, 0.94) 100%),
    url("https://sonido.jp/wp-content/uploads/natorisama.jpg") right center / min(52vw, 820px) auto no-repeat;
}

.case-hero-camper {
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 44%, rgba(244, 247, 251, 0.76) 64%, rgba(244, 247, 251, 0.94) 100%),
    url("https://sonido.jp/wp-content/uploads/ilinx01.jpg") right center / min(54vw, 860px) auto no-repeat;
}

.case-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.case-hero::after {
  position: absolute;
  top: 126px;
  right: clamp(28px, 6vw, 102px);
  width: 92px;
  height: 92px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.86;
  content: "";
}

.case-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.case-hero h1 {
  max-width: 980px;
  font-size: clamp(38px, 5vw, 72px);
}

.case-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.case-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 63, 121, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.case-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.case-index span,
.case-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.case-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.case-index a {
  color: var(--blue-dark);
}

.case-summary {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.case-summary-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.case-summary-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.case-main-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: contain;
  background: #eef4fb;
  border-radius: 8px;
}

.case-summary-copy .eyebrow {
  color: var(--gold);
}

.case-summary-copy h2 {
  color: var(--blue-dark);
}

.case-summary-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.case-result-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.case-result-points article {
  min-height: 128px;
  padding: 18px;
  background: #f4f7fb;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
}

.case-result-points span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-result-points strong {
  display: block;
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.45;
}

.case-story {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 251, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.case-dialogue {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.case-dialogue article {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.case-dialogue article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  content: "";
}

.case-question {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.case-dialogue h3 {
  color: var(--blue-dark);
  font-size: clamp(23px, 2.6vw, 34px);
}

.case-dialogue p:not(.case-question) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.case-result {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #eef4fb);
  background-size: 38px 38px, 38px 38px, auto;
}

.case-result-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-result-copy .eyebrow {
  color: var(--gold);
}

.case-result-copy h2 {
  color: var(--blue-dark);
}

.case-result-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.case-result-inner img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: contain;
  background: #eef4fb;
  border-radius: 8px;
}

.case-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-marketing-hero.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.case-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.case-cta .eyebrow {
  color: #f1d38a;
}

.case-cta h2 {
  color: var(--white);
}

.case-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.case-cta .contact-card p,
.case-cta .contact-card small {
  color: var(--muted);
}

.profile-page {
  background: #f4f7fb;
}

.profile-hero {
  position: relative;
  min-height: 650px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 45%, rgba(244, 247, 251, 0.78) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-marketing-illustration.png") right 48% / min(60vw, 900px) auto no-repeat;
  overflow: hidden;
}

.profile-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.profile-hero::after {
  position: absolute;
  top: 126px;
  right: clamp(28px, 6vw, 102px);
  width: 92px;
  height: 92px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.86;
  content: "";
}

.profile-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.profile-hero h1 {
  max-width: 960px;
  font-size: clamp(40px, 5.1vw, 74px);
}

.profile-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.profile-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.profile-index span,
.profile-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.profile-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.profile-index a {
  color: var(--blue-dark);
}

.profile-message {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.profile-message-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-message-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  content: "";
}

.profile-portrait img {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 8px;
}

.profile-message-copy .eyebrow {
  color: var(--gold);
}

.profile-message-copy h2 {
  color: var(--blue-dark);
}

.profile-message-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.profile-story {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 251, 0.96)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.profile-timeline {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.profile-timeline article {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.profile-timeline article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  content: "";
}

.profile-timeline span {
  display: inline-flex;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-timeline h3 {
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: clamp(23px, 2.6vw, 34px);
}

.profile-timeline p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.profile-belief {
  position: relative;
  padding: clamp(78px, 10vw, 130px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 54%, rgba(23, 63, 121, 0.78) 54% 100%),
    url("assets/sonido-background-wall.png") center / cover no-repeat;
  overflow: hidden;
}

.profile-belief::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.14), transparent 22%);
  pointer-events: none;
  content: "";
}

.profile-belief-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.profile-belief .eyebrow {
  color: #f1d38a;
}

.profile-belief h2 {
  color: var(--white);
}

.profile-belief-inner > p:not(.eyebrow) {
  max-width: 850px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.profile-belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(36px, 6vw, 72px);
}

.profile-belief-grid article {
  min-height: 220px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.profile-belief-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: #f1d38a;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.profile-belief-grid h3 {
  color: var(--white);
}

.profile-belief-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.profile-cta {
  position: relative;
  display: block;
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(11, 37, 76, 0.96) 0 50%, rgba(23, 63, 121, 0.72) 50% 100%),
    url("assets/sonido-marketing-hero.png") center / cover no-repeat,
    var(--blue-dark);
  overflow: hidden;
}

.profile-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 163, 92, 0.95) 0 9px, transparent 9px),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 24%);
  pointer-events: none;
  content: "";
}

.profile-cta .eyebrow {
  color: #f1d38a;
}

.profile-cta h2 {
  color: var(--white);
}

.profile-cta p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.9;
}

.profile-cta .contact-card p,
.profile-cta .contact-card small {
  color: var(--muted);
}

.contact-page {
  background: #f4f7fb;
}

.contact-hero {
  position: relative;
  min-height: 620px;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 80px) clamp(66px, 8vw, 116px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 45%, rgba(244, 247, 251, 0.78) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-hero-bg-illustration.png") right 48% / min(60vw, 900px) auto no-repeat;
  overflow: hidden;
}

.contact-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.contact-hero::after {
  position: absolute;
  top: 126px;
  right: clamp(28px, 6vw, 102px);
  width: 92px;
  height: 92px;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(199, 163, 92, 0.34);
  opacity: 0.86;
  content: "";
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.contact-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.2vw, 76px);
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.contact-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.contact-index span,
.contact-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.contact-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.contact-index a {
  color: var(--blue-dark);
}

.contact-before {
  padding: 0 clamp(20px, 5vw, 80px) clamp(76px, 10vw, 126px);
}

.contact-before-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--gold);
}

.contact-before-card .eyebrow {
  color: var(--gold);
}

.contact-before-card h2 {
  color: var(--blue-dark);
}

.contact-before-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.contact-assurance {
  display: grid;
  gap: 12px;
}

.contact-assurance article {
  padding: 20px;
  background: #f4f7fb;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
}

.contact-assurance span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.contact-assurance strong {
  display: block;
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 18px;
}

.contact-form-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.98)),
    url("assets/sonido-clean-hero.png") center / cover no-repeat;
}

.contact-form-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form-head .eyebrow {
  color: var(--gold);
}

.contact-form-head h2 {
  color: var(--blue-dark);
}

.contact-form-head p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-form-mock {
  display: grid;
  gap: 24px;
  margin-top: clamp(30px, 5vw, 52px);
}

.contact-form-mock .wpcf7,
.contact-form-mock .wpcf7-form {
  display: grid;
  gap: 24px;
}

.contact-form-mock .wpcf7 p {
  margin: 0;
}

.contact-form-mock .wpcf7 br {
  display: none;
}

.contact-form-mock .wpcf7-form-control-wrap {
  display: block;
}

.contact-form-mock .wpcf7-list-item {
  margin: 0;
}

.contact-form-mock .wpcf7-list-item label {
  margin: 0;
}

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

.contact-form-mock label,
.contact-form-mock fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-form-mock fieldset {
  padding: 22px;
  border: 1px solid rgba(23, 63, 121, 0.14);
  border-radius: 8px;
}

.contact-form-mock legend,
.contact-form-mock label > span {
  color: var(--blue-dark);
  font-weight: 900;
}

.contact-form-mock b {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
}

.contact-form-mock input[type="text"],
.contact-form-mock input[type="email"],
.contact-form-mock input[type="tel"],
.contact-form-mock input[type="url"],
.contact-form-mock textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid rgba(23, 63, 121, 0.18);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form-mock textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-mock input:focus,
.contact-form-mock textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 63, 121, 0.12);
}

.contact-form-mock ::placeholder {
  color: rgba(102, 114, 134, 0.7);
}

.choice-grid {
  display: block;
}

.choice-grid .wpcf7-form-control-wrap,
.choice-grid .wpcf7-form-control,
.choice-grid .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  width: 100%;
}

.choice-grid .wpcf7-form-control-wrap {
  display: block;
}

.choice-grid .wpcf7-list-item {
  display: block;
  width: 100%;
}

.choice-grid label,
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.choice-grid .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.choice-grid input,
.privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue);
}

.choice-grid .wpcf7-list-item-label,
.privacy-check .wpcf7-list-item-label {
  line-height: 1.7;
}

.privacy-check {
  align-items: center;
}

.privacy-check .wpcf7-form-control-wrap,
.privacy-check .wpcf7-form-control,
.privacy-check .wpcf7-acceptance,
.privacy-check .wpcf7-list-item,
.privacy-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.privacy-check .wpcf7-acceptance {
  width: 100%;
}

.privacy-check .wpcf7-list-item-label {
  color: var(--blue-dark);
  font-weight: 900;
}

.privacy-guidance {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.privacy-guidance a {
  color: var(--blue);
  border-bottom: 1px solid var(--gold);
  font-weight: 900;
}

.cf7-placeholder {
  padding: 18px;
  background: #eef4fb;
  border: 1px dashed rgba(23, 63, 121, 0.34);
  border-radius: 8px;
}

.cf7-placeholder span,
.cf7-placeholder code {
  display: block;
}

.cf7-placeholder span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.cf7-placeholder code {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  white-space: normal;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: min(100%, 360px);
  padding: 0 26px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-form-mock .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: min(100%, 360px);
  padding: 0 26px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-form-mock .wpcf7-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.contact-flow-section {
  padding: clamp(72px, 10vw, 126px) clamp(20px, 5vw, 80px);
  background: var(--white);
}

.contact-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
}

.contact-flow-grid article {
  min-height: 220px;
  padding: 28px;
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.88), transparent 42%),
    #ffffff;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.09);
}

.contact-flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.contact-flow-grid h3 {
  margin-top: 20px;
  color: var(--blue-dark);
}

.contact-flow-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.contact-note-section {
  padding: clamp(72px, 10vw, 118px) clamp(20px, 5vw, 80px);
  background: #f4f7fb;
}

.contact-note-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(11, 37, 76, 0.08);
}

.contact-note-inner .eyebrow {
  color: var(--gold);
}

.contact-note-inner h2 {
  color: var(--blue-dark);
}

.contact-note-inner p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.privacy-page {
  background: #f4f7fb;
}

.privacy-hero {
  position: relative;
  min-height: 540px;
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 80px) clamp(62px, 8vw, 100px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 45%, rgba(244, 247, 251, 0.78) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-hero-bg-illustration.png") right 48% / min(56vw, 820px) auto no-repeat;
  overflow: hidden;
}

.privacy-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.privacy-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.privacy-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 5.8vw, 84px);
}

.privacy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.privacy-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  max-width: 1180px;
  margin: clamp(-34px, -3vw, -18px) auto clamp(54px, 7vw, 90px);
  padding: 0 clamp(20px, 5vw, 80px);
  position: relative;
  z-index: 3;
}

.privacy-index span,
.privacy-index a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(11, 22, 40, 0.1);
  font-weight: 900;
}

.privacy-index span {
  color: var(--white);
  background: var(--blue-dark);
}

.privacy-index a {
  color: var(--blue-dark);
}

.privacy-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(80px, 10vw, 132px);
}

.privacy-content article {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(11, 37, 76, 0.08);
}

.privacy-content h2 {
  color: var(--blue-dark);
  font-size: clamp(24px, 2.8vw, 36px);
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.privacy-content p {
  margin: 18px 0 0;
}

.privacy-content ul {
  margin: 18px 0 0;
  padding-left: 1.4em;
}

.privacy-contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.thanks-page {
  background: #f4f7fb;
}

.thanks-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0 45%, rgba(244, 247, 251, 0.78) 64%, rgba(244, 247, 251, 0.95) 100%),
    url("assets/sonido-hero-bg-illustration.png") right 48% / min(56vw, 820px) auto no-repeat;
  overflow: hidden;
}

.thanks-hero::before {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 44px;
  width: min(30vw, 420px);
  height: min(30vw, 420px);
  background:
    linear-gradient(90deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 63, 121, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.52;
  content: "";
}

.thanks-card {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
  border-top: 8px solid var(--gold);
  box-shadow: var(--shadow);
}

.thanks-card .eyebrow {
  color: var(--gold);
}

.thanks-card h1 {
  max-width: 900px;
  color: var(--blue-dark);
  font-size: clamp(42px, 5.4vw, 76px);
}

.thanks-card > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 58px);
}

.thanks-steps article {
  padding: 24px;
  background:
    radial-gradient(circle at right top, rgba(220, 232, 247, 0.88), transparent 42%),
    #ffffff;
  border: 1px solid rgba(23, 63, 121, 0.12);
  border-radius: 8px;
}

.thanks-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.thanks-steps h2 {
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: clamp(20px, 2.1vw, 26px);
}

.thanks-steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(30px, 5vw, 52px);
}

@media (max-width: 980px) {
  .menu-button {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu-button span {
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-dropdown {
    padding: 0;
  }

  .nav-dropdown-toggle {
    display: flex;
    padding: 12px;
  }

  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 6px;
    padding: 4px 0 4px 16px;
    background: #f4f7fb;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
  }

  .hero,
  .split,
  .message-panel,
  .photo-feature,
  .contact-inner,
  .journal-inner,
  .blog-controls,
  .featured-post,
  .post-grid,
  .blog-cta,
  .service-message,
  .service-modern,
  .service-step-list article,
  .service-step-list article:nth-child(even),
  .included-grid,
  .service-for-grid,
  .faq-list article,
  .service-talk,
  .flow-intro-card,
  .flow-summary-grid,
  .flow-timeline article,
  .prep-grid,
  .flow-cta,
  .qa-lead,
  .qa-cta,
  .company-greeting-card,
  .origin-grid,
  .company-values,
  .results-grid,
  .company-cta,
  .reason-concept-card,
  .reason-detail-grid,
  .reason-compare,
  .reason-compare-list,
  .reason-proof-grid,
  .reason-cta,
  .voice-featured-card,
  .voice-summary-grid,
  .voice-list,
  .voice-point-grid,
  .voice-cta,
  .works-overview-card,
  .achievement-grid,
  .interview-link-grid,
  .works-cta,
  .case-summary-card,
  .case-result-points,
  .case-result-inner,
  .case-cta,
  .profile-message-card,
  .profile-belief-grid,
  .profile-cta,
  .contact-before-card,
  .form-grid,
  .choice-grid,
  .contact-flow-grid,
  .thanks-steps,
  .article-layout,
  .article-cta,
  .related-grid {
    grid-template-columns: 1fr;
  }


  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(243, 246, 250, 0.94), rgba(243, 246, 250, 0.98));
  }

  .hero::before {
    inset: auto -28vw 0 auto;
    width: 132vw;
    height: 72vw;
    opacity: 0.34;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(243, 246, 250, 0.96), rgba(243, 246, 250, 0.76) 58%, rgba(243, 246, 250, 0.96));
  }

  .hero-visual {
    max-width: 720px;
  }

  .single-hero {
    padding: 30px 20px 26px;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.96), rgba(244, 247, 251, 0.94)),
      url("assets/sonido-hero-bg-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .single-hero h1 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .article-meta {
    margin-top: 18px;
  }

  .article-body {
    padding: 24px 20px;
  }

  .article-body p,
  .article-body li {
    font-size: 15.5px;
    line-height: 1.9;
  }

  .article-body h2 {
    margin-top: 42px;
    padding: 18px 18px 18px 22px;
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.48;
  }

  .article-body h3 {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.55;
  }

  .article-body h4 {
    font-size: 18px;
  }

  #toc_container li,
  .toc_container li {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .service-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 246, 250, 0.96)),
      url("assets/sonido-clean-hero.png") center / cover no-repeat;
  }

  .reason-grid,
  .work-grid,
  .work-showcase,
  .work-mini-grid,
  .service-list,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .work-feature-card {
    min-height: auto;
  }

  .work-feature-card dl {
    grid-template-columns: 1fr;
  }

  .flow-list::before,
  .flow-list article::after {
    display: none;
  }

  .flow-list article {
    min-height: auto;
  }

  .service-step-list article:nth-child(even) .service-step-number,
  .service-step-list article:nth-child(even) > div:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .company-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-marketing-illustration.png") right bottom / 92vw auto no-repeat;
  }

  .company-hero::before,
  .company-hero::after {
    opacity: 0.24;
  }

  .reason-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-hero-bg-illustration.png") right bottom / 98vw auto no-repeat;
  }

  .reason-hero::before,
  .reason-hero::after {
    opacity: 0.24;
  }

  .reason-detail-grid article,
  .reason-detail-grid article:nth-child(4),
  .reason-detail-grid article:nth-child(5) {
    grid-column: auto;
  }

  .voice-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-marketing-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .voice-hero::before,
  .voice-hero::after {
    opacity: 0.24;
  }

  .works-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-marketing-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .works-hero::before,
  .works-hero::after {
    opacity: 0.24;
  }

  .case-hero,
  .case-hero-window,
  .case-hero-camper {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.9)),
      url("assets/sonido-marketing-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .case-hero::before,
  .case-hero::after {
    opacity: 0.24;
  }

  .profile-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-marketing-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .profile-hero::before,
  .profile-hero::after {
    opacity: 0.24;
  }

  .contact-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-hero-bg-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .contact-hero::before,
  .contact-hero::after {
    opacity: 0.24;
  }

  .privacy-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-hero-bg-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .privacy-hero::before {
    opacity: 0.24;
  }

  .thanks-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(244, 247, 251, 0.98), rgba(244, 247, 251, 0.82)),
      url("assets/sonido-hero-bg-illustration.png") right bottom / 96vw auto no-repeat;
  }

  .thanks-hero::before {
    opacity: 0.24;
  }

  .profile-table dl {
    grid-template-columns: 1fr;
  }

  .profile-table dt,
  .profile-table dd {
    padding: 16px 18px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 112px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-title-line {
    white-space: normal;
  }

  .service-list article,
  .journal-list a,
  .journal-list .journal-more {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact {
    padding: 66px 20px;
  }

  .section-head,
  .footer-main,
  .footer-bottom {
    display: block;
  }

  .footer-links {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .footer-bottom small {
    display: block;
    margin-top: 8px;
  }

  .seal-colwrap {
    flex-direction: column;
  }

  .seal-col-2,
  .seal-col-3,
  .seal-col-4,
  .seal-col-37,
  .seal-col-73 {
    flex-basis: auto;
    width: 100%;
  }

  .seal-spcol {
    flex-basis: 0;
    width: auto;
  }

  .seal-spcolwrap {
    flex-direction: row;
  }

  .seal-pc-only {
    display: none;
  }

  .seal-mobile-only {
    display: inline;
  }

  .page-top-button {
    right: 14px;
    bottom: 14px;
    min-width: 48px;
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .page-top-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .page-top-button::before {
    margin-right: 0;
  }
}
