:root {
  --bg: #0B0D10;
  --text: #F5EFE5;
  --primary: #384553;
  --primary-dark: #11161D;
  --secondary: #C8A15A;
  --white: #FFFDFC;
  --soft: #171D23;
  --stone: #2D333B;
  --muted: #B9AEA0;
  --danger: #874438;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --header-height: 82px;
  --mobile-header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 12% 0%, rgba(54, 66, 79, 0.42), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(200, 161, 90, 0.16), transparent 30%),
    linear-gradient(180deg, #151A20 0%, var(--bg) 44%, #090B0E 100%);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(9, 11, 14, 0.76), rgba(15, 19, 25, 0.64));
  border-bottom: 1px solid rgba(255, 253, 252, 0.1);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(9, 11, 14, 0.9), rgba(15, 19, 25, 0.78));
  border-bottom-color: rgba(200, 161, 90, 0.24);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-name {
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-short {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245, 239, 229, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--secondary);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #3C4652, #161C24);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.btn-secondary {
  background: rgba(255, 253, 252, 0.08);
  color: var(--text);
  border-color: rgba(255, 253, 252, 0.22);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 252, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.92fr);
  grid-template-areas:
    "heading visual"
    "details visual";
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  min-height: calc(100vh - 80px);
  padding-top: clamp(42px, 7vw, 92px);
  max-width: 1360px;
  margin: 0 auto;
}

.hero-heading,
.hero-details,
.section-heading,
.pricing-panel,
.experience-card,
.contact-copy {
  max-width: 820px;
}

.hero-heading,
.hero-details,
.hero-visual {
  justify-self: center;
  width: 100%;
}

.hero-heading {
  grid-area: heading;
  align-self: end;
  margin-bottom: -18px;
}

.hero-details {
  grid-area: details;
  align-self: start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  color: var(--text);
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-copy,
.section-heading p,
.pricing-panel p,
.experience-card p,
.contact-copy p,
.process-step p,
.service-card p,
.not-for-card p {
  color: var(--muted);
}

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

.hero-mobile-actions {
  display: none;
}

.hero-profile-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  max-width: 640px;
  margin-top: 22px;
  padding: 13px;
  border: 1px solid rgba(200, 161, 90, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 252, 0.09), rgba(255, 253, 252, 0.04)),
    rgba(9, 11, 14, 0.54);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero-profile-card img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(200, 161, 90, 0.34);
  border-radius: 999px;
  object-fit: cover;
  object-position: center 18%;
}

.hero-profile-card strong,
.hero-profile-card span {
  display: block;
}

.hero-profile-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
}

.hero-profile-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 252, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 252, 0.11), rgba(54, 66, 79, 0.28)),
    var(--soft);
  box-shadow: var(--shadow);
}

.hero-property-image {
  width: 100%;
  height: clamp(420px, 54vw, 620px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.hero-image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 252, 0.16);
  border-radius: 8px;
  background: rgba(9, 11, 14, 0.78);
  backdrop-filter: blur(14px);
}

.hero-image-caption span {
  display: block;
  margin-bottom: 7px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-image-caption strong {
  display: block;
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

.advisor-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 253, 252, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.09);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.advisor-card img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 22%;
}

.advisor-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.advisor-card strong {
  display: block;
  color: var(--text);
  line-height: 1.25;
}

.dashboard-card,
.dashboard-row,
.dashboard-note,
.channel-card {
  border: 1px solid rgba(255, 253, 252, 0.11);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
}

.dashboard-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.dashboard-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-main strong {
  display: block;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.status-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(200, 161, 90, 0.14);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

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

.channel-card {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  color: var(--text);
  font-weight: 800;
}

.channel-card img {
  display: block;
  width: 128px;
  max-height: 38px;
  object-fit: contain;
}

.channel-card:has(img) {
  background: rgba(255, 253, 252, 0.94);
}

.channel-card:not(:has(img))::before,
.feature-list span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--secondary);
  vertical-align: middle;
}

.dashboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  color: var(--text);
  font-weight: 800;
}

.calendar-bars {
  display: grid;
  grid-template-columns: repeat(4, 34px);
  gap: 8px;
}

.calendar-bars span {
  height: 16px;
  border-radius: 999px;
  background: var(--soft);
}

.calendar-bars span:nth-child(2),
.calendar-bars span:nth-child(4) {
  background: var(--secondary);
}

.dashboard-note {
  padding: 18px;
}

.dashboard-note strong {
  color: var(--text);
}

.dashboard-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: clamp(30px, 5vw, 54px);
}

.visual-story-section {
  padding-top: 0;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--primary-dark);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.02) 35%, rgba(8, 10, 13, 0.82) 100%);
  content: "";
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.visual-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
}

.visual-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  max-width: 360px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.2;
}

.promise-section {
  padding-top: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.07);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.promise-item {
  padding: 18px;
}

.promise-item span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.promise-item h2 {
  margin: 6px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.promise-item p {
  margin: 0;
  color: var(--muted);
}

.cards-grid,
.services-grid,
.limits-grid,
.audience-grid,
.contact-section {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-card {
  display: grid;
  gap: 18px;
  min-height: 118px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.problem-card-button {
  display: grid;
  width: 100%;
  min-height: 74px;
  align-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mini-card strong {
  display: block;
  line-height: 1.25;
}

.problem-detail {
  display: none;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.mini-card.is-open .problem-detail {
  display: block;
}

.problem-item.is-open .problem-detail {
  display: block;
}

.platform-pair,
.service-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-pair img,
.service-badge {
  width: 112px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.platform-pair img {
  object-fit: cover;
}

.platform-pair img:last-child {
  background: var(--white);
}

.service-badge {
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 252, 0.12);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 900;
}

.badge-vut {
  background: #1E293B;
}

.badge-whatsapp {
  background: #25D366;
  color: #052E16;
}

.badge-price {
  background: #C8A15A;
  color: #17120A;
}

.badge-web {
  background: #FFFFFF;
  color: #11161D;
}

.badge-availability {
  background: #334155;
}

.badge-order {
  background: #111827;
  border-color: rgba(200, 161, 90, 0.45);
  color: var(--secondary);
}

.mini-card:last-child {
  grid-column: span 2;
}

.split-section,
.audience-section,
.problem-section,
.services-section,
.process-section {
  border-top: 1px solid rgba(255, 253, 252, 0.08);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-list span {
  padding: 16px 18px;
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
  color: var(--text);
  font-weight: 700;
}

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

.work-scope-card {
  padding: 24px;
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 252, 0.08), rgba(255, 253, 252, 0.045));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.work-scope-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.work-scope-card h3 {
  min-height: 54px;
}

.work-scope-card li {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-section {
  padding-top: 0;
}

.admin-panel {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(255, 253, 252, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 161, 90, 0.12), rgba(54, 66, 79, 0.28)),
    #11161D;
  box-shadow: var(--shadow);
}

.admin-grid,
.admin-steps {
  display: grid;
  gap: 16px;
}

.admin-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 253, 252, 0.12);
  border-radius: 8px;
  background: var(--primary-dark);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.admin-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 13, 0.86), rgba(8, 10, 13, 0.34) 58%, rgba(8, 10, 13, 0.08));
  content: "";
}

.admin-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.admin-visual-card {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  top: clamp(18px, 4vw, 42px);
  z-index: 1;
  max-width: 390px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 252, 0.14);
  border-radius: 8px;
  background: rgba(17, 22, 29, 0.78);
  backdrop-filter: blur(12px);
}

.admin-visual-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-visual-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.admin-tags {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 460px;
}

.admin-tags li {
  margin: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 252, 0.14);
  border-radius: 999px;
  background: rgba(17, 22, 29, 0.74);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.admin-tags li::before {
  display: none;
}

.admin-card {
  padding: 22px;
  border: 1px solid rgba(255, 253, 252, 0.11);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
}

.admin-step {
  border: 1px solid rgba(255, 253, 252, 0.11);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
  overflow: hidden;
}

.admin-step summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.admin-step summary::-webkit-details-marker {
  display: none;
}

.admin-step summary::after {
  grid-column: 2;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 900;
  content: "Ver detalle";
}

.admin-step[open] summary::after {
  content: "Ocultar";
}

.admin-step summary span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(200, 161, 90, 0.15);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.admin-step summary strong {
  line-height: 1.25;
}

.admin-step p {
  margin: 0;
  padding: 0 18px 18px 74px;
  color: var(--muted);
}

.admin-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-card p,
.admin-disclaimer {
  color: var(--muted);
}

.admin-disclaimer {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 252, 0.12);
  font-size: 14px;
}

.limits-section {
  background:
    linear-gradient(135deg, rgba(17, 22, 29, 0.98), rgba(45, 51, 59, 0.96)),
    var(--primary-dark);
  color: var(--white);
}

.limits-section .eyebrow,
.limits-section .section-heading p {
  color: var(--secondary);
}

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

.limit-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.limit-card h3 {
  color: var(--secondary);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  content: "";
}

.excluded li::before {
  background: #E7B2A7;
}

.scope-note {
  margin: 24px 0 0;
  padding: 22px 24px;
  border: 1px solid rgba(213, 183, 131, 0.45);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.service-number {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
}

.service-card ul {
  margin-top: 12px;
}

.pricing-section {
  padding-top: 0;
}

.pricing-panel {
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 252, 0.1), rgba(200, 161, 90, 0.08)),
    var(--soft);
  box-shadow: var(--shadow);
}

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

.process-step {
  padding: 24px;
  border-top: 4px solid var(--secondary);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
}

.process-step span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
}

.experience-section {
  background: #090B0E;
}

.why-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 252, 0.03), rgba(255, 253, 252, 0)),
    #11161D;
}

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

.why-card {
  padding: 24px;
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.06);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.why-card h3 {
  color: var(--white);
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.experience-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.experience-visual {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.experience-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.04) 0%, rgba(8, 10, 13, 0.9) 82%);
  content: "";
}

.experience-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.experience-visual div {
  position: relative;
  z-index: 1;
}

.experience-visual span {
  font-weight: 800;
}

.experience-visual strong {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.experience-visual small {
  max-width: 260px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.experience-signature {
  display: none;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 20px 0;
  padding: 12px;
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.07);
}

.experience-signature img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 18%;
}

.experience-signature strong,
.experience-signature span {
  display: block;
}

.experience-signature span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.audience-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.not-for-card {
  padding: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.not-for-card p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  align-items: start;
  border-top: 1px solid rgba(255, 253, 252, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.08);
  box-shadow: var(--shadow);
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 252, 0.14);
  border-radius: 8px;
  background: rgba(9, 11, 14, 0.72);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(200, 161, 90, 0.12);
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 28px;
  padding: 52px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(200, 161, 90, 0.38);
  background:
    linear-gradient(135deg, rgba(200, 161, 90, 0.18), rgba(255, 253, 252, 0.04)),
    #11161D;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(245, 239, 229, 0.78);
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer .brand-mark {
  background: #090B0E;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.footer-note {
  text-align: right;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: flex-end;
  margin: 12px 0;
  font-size: 13px;
  font-weight: 800;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding-top: clamp(46px, 7vw, 84px);
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.legal-content {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.legal-content section {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.06);
}

.legal-content h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content a {
  color: var(--secondary);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3C4652, #11161D);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 253, 252, 0.16);
  border-radius: 999px;
  background: rgba(17, 22, 29, 0.9);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

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

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    inset: calc(var(--header-height) + 10px) 14px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 253, 252, 0.12);
    border-radius: 8px;
    background: rgba(17, 22, 29, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 12px;
    color: var(--text);
    border-radius: 8px;
  }

  .main-nav.is-open a:hover {
    background: rgba(255, 253, 252, 0.08);
    color: var(--secondary);
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .services-grid,
  .why-grid,
  .process-list,
  .visual-story-grid,
  .promise-grid,
  .admin-grid,
  .admin-steps,
  .work-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card:first-child {
    grid-column: span 2;
  }

  .problem-grid,
  .feature-list,
  .problem-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-summary {
    position: static;
  }
}

@media (max-width: 860px) {
  main,
  section,
  .hero,
  .hero * {
    max-width: 100%;
  }

  .section {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    padding: 14px 16px;
  }

  html {
    scroll-padding-top: calc(var(--mobile-header-height) + 18px);
  }

  body {
    padding-top: var(--mobile-header-height);
  }

  .main-nav.is-open {
    inset: calc(var(--mobile-header-height) + 10px) 14px auto;
  }

  .brand-full {
    display: none;
  }

  .brand-short {
    display: inline;
  }

  .brand-name {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    font-size: 16px;
  }

  .hero,
  .contact-section,
  .experience-card,
  .audience-grid,
  .limits-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    grid-template-areas:
      "heading"
      "visual"
      "details";
    width: 100%;
    max-width: 100%;
    min-height: auto;
    gap: 14px;
    padding-top: 20px;
    overflow: hidden;
    justify-items: center;
  }

  .hero-heading {
    margin-bottom: 0;
  }

  .hero-heading .eyebrow {
    max-width: 320px;
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-heading h1 {
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.02;
  }

  .hero-mobile-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 9px;
    width: 100%;
    margin: 0 auto 4px;
  }

  .hero-mobile-actions .btn {
    min-height: 46px;
    padding: 12px 11px;
    font-size: 13px;
    line-height: 1.1;
  }

  .hero-mobile-actions .btn-primary {
    border-color: rgba(200, 161, 90, 0.72);
    background: linear-gradient(135deg, #d6b66e, #b88f43);
    color: #11161D;
    box-shadow: 0 14px 34px rgba(200, 161, 90, 0.18);
  }

  .hero-mobile-actions .btn-secondary {
    background: rgba(255, 253, 252, 0.08);
  }

  .hero-heading,
  .hero-details,
  .hero-visual {
    box-sizing: border-box;
    width: 100%;
    max-width: 358px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    justify-self: center;
    padding: 0;
    overflow: hidden;
    border-color: rgba(200, 161, 90, 0.2);
    background: #11161D;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  }

  .hero-property-image {
    height: min(56vw, 270px);
    min-height: 210px;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .advisor-card,
  .dashboard-main,
  .dashboard-row,
  .dashboard-note {
    display: none;
  }

  .channel-grid {
    display: none !important;
  }

  .hero-image-caption {
    position: static;
    margin: 0;
    border-width: 1px 0 0;
    border-radius: 0;
    background: rgba(9, 11, 14, 0.92);
    backdrop-filter: none;
    padding: 14px 16px;
  }

  .hero-image-caption span {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .hero-image-caption strong {
    font-size: 16px;
    line-height: 1.22;
  }

  .hero-heading,
  .hero-details,
  .section-heading {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy,
  .hero-subtitle,
  h1 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: anywhere;
  }

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

  .hero-profile-card {
    max-width: 358px;
    margin: 16px auto 0;
    text-align: left;
  }

  .hero-details .hero-actions {
    display: none;
  }

  .trust-strip {
    justify-content: center;
  }

.trust-strip span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .btn {
    width: 100%;
  }

  .hero-quicklinks {
    grid-template-columns: 1fr;
  }

  .hero-quicklinks a {
    text-align: center;
  }

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

  .problem-summary {
    order: -1;
  }

  .mini-card:last-child {
    grid-column: auto;
  }

  .experience-visual {
    display: none;
  }

  .experience-signature {
    display: grid;
  }

  .footer-note {
    text-align: left;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 620px) {
  .promise-grid {
    gap: 8px;
    padding: 12px;
  }

  .promise-item {
    padding: 14px;
  }

  .promise-item h2 {
    margin: 4px 0 6px;
    font-size: 23px;
  }

  .promise-item p {
    font-size: 14px;
    line-height: 1.45;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .why-card {
    padding: 15px 16px;
  }

  .why-card h3 {
    margin-bottom: 5px;
    font-size: 17px;
  }

  .why-card p {
    font-size: 13px;
    line-height: 1.4;
  }

  .site-footer {
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .site-footer p {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .site-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 13px;
  }

  .legal-links {
    gap: 7px 10px;
    margin: 8px 0;
    font-size: 12px;
  }
}

.hero-quicklinks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-quicklinks a {
  padding: 13px 14px;
  border: 1px solid rgba(255, 253, 252, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.07);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-quicklinks a:hover {
  border-color: rgba(200, 161, 90, 0.48);
  background: rgba(200, 161, 90, 0.12);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

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

.problem-item {
  border: 1px solid rgba(255, 253, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 252, 0.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.problem-item .problem-card-button {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: auto;
  gap: 14px;
  padding: 18px;
}

.problem-tag {
  display: inline-flex;
  width: 82px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid transparent;
  place-items: center;
  border-radius: 8px;
  background: rgba(200, 161, 90, 0.14);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.tag-start {
  background: #3f4650;
  color: #fffdf8;
}

.tag-message {
  background: #25d366;
  color: #062b16;
}

.tag-price {
  background: #c8a15a;
  color: #17120a;
}

.tag-web {
  border-color: rgba(255, 255, 255, 0.72);
  background: #ffffff;
  color: #11161d;
}

.tag-mobile {
  background: #2563eb;
  color: #eff6ff;
}

.tag-order {
  border-color: rgba(200, 161, 90, 0.42);
  background: #111827;
  color: #d7b66f;
}

.problem-plus {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 253, 252, 0.16);
  border-radius: 999px;
  color: var(--secondary);
  font-size: 22px;
  font-weight: 900;
}

.problem-item.is-open .problem-plus {
  border-color: rgba(200, 161, 90, 0.58);
  background: rgba(200, 161, 90, 0.12);
}

.problem-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.problem-platforms {
  display: grid;
  width: 82px;
  gap: 5px;
}

.problem-platforms img {
  width: 82px;
  height: 22px;
  border-radius: 4px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.problem-item .problem-detail {
  margin: 0;
  padding: 0 18px 18px 74px;
}

.problem-summary {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid rgba(200, 161, 90, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(200, 161, 90, 0.12), rgba(255, 253, 252, 0.06)),
    #11161D;
  box-shadow: var(--shadow);
}

.problem-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.problem-summary strong {
  display: block;
  color: var(--text);
  font-size: 25px;
  line-height: 1.15;
}

.problem-summary p {
  color: var(--muted);
  margin: 12px 0 18px;
}

.problem-summary a {
  color: var(--secondary);
  font-weight: 900;
}

@media (max-width: 620px) {
  .section {
    padding: 54px 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 29px;
  }

  .channel-grid,
  .problem-grid,
  .problem-layout,
  .feature-list,
  .work-scope-grid,
  .services-grid,
  .process-list,
  .visual-story-grid,
  .promise-grid,
  .admin-grid,
  .admin-steps,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .visual-card:first-child {
    grid-column: auto;
  }

  .visual-card,
  .visual-card img {
    min-height: 270px;
  }

  .admin-visual,
  .admin-visual img {
    min-height: 360px;
  }

  .admin-visual::after {
    background: linear-gradient(180deg, rgba(8, 10, 13, 0.88), rgba(8, 10, 13, 0.36));
  }

  .admin-tags {
    right: 18px;
    left: 18px;
    justify-content: flex-start;
  }

  .dashboard-main,
  .dashboard-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-bars {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  h1 {
    font-size: 28px;
    line-height: 1.06;
  }

  .hero-subtitle {
    max-width: 340px;
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.36;
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
  }

  .hero-copy {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-profile-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 11px;
  }

  .hero-profile-card img {
    width: 50px;
    height: 50px;
  }

  .hero-profile-card strong {
    font-size: 14px;
  }

  .hero-profile-card span {
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .admin-step summary {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px;
  }

  .admin-step summary span {
    width: 38px;
    height: 38px;
  }

  .admin-step p {
    padding: 0 16px 16px;
  }

  .problem-item .problem-card-button {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 15px;
  }

  .problem-tag {
    width: 72px;
    min-height: 32px;
    font-size: 11px;
  }

  .problem-platforms {
    width: 72px;
  }

  .problem-platforms img {
    width: 72px;
    height: 20px;
  }

  .problem-item .problem-detail {
    padding: 0 15px 15px;
  }

  .problem-summary {
    padding: 22px;
  }
}

@media (max-width: 860px) {
  .hero-quicklinks,
  .problem-layout {
    grid-template-columns: 1fr;
  }

  .problem-summary {
    position: static;
    order: -1;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }

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