:root {
  --bg: #0b0b0f;
  --bg-soft: #111119;
  --surface: rgba(18, 18, 24, 0.72);
  --surface-strong: #14141c;
  --text: #f5f5f5;
  --text-muted: #b5b5be;
  --gold: #d4af37;
  --gold-2: #b88a2a;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --container: 1200px;
  --headings: "Cinzel", Georgia, "Times New Roman", serif;
  --body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.09), transparent 36%),
    radial-gradient(circle at 85% 0%, rgba(184, 138, 42, 0.09), transparent 28%),
    linear-gradient(160deg, #0a0a0e 0%, #0b0b0f 45%, #0e0e14 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  z-index: -1;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #000;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background-color: rgba(11, 11, 15, 0.85);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.floating-logo {
  --scroll-scale: 1;
  position: fixed;
  right: 0.9rem;
  bottom: 4.8rem;
  z-index: 260;
  width: 6rem;
  height: 6rem;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(var(--scroll-scale));
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.floating-logo.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(var(--scroll-scale));
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--headings);
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  color: var(--gold);
}

.nav__logo-img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  mix-blend-mode: lighten;
}

.nav__logo-text {
  line-height: 1;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.nav__toggle span {
  width: 17px;
  height: 2px;
  margin-inline: auto;
  background: var(--gold);
}

.nav__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0.75rem;
  right: 0.75rem;
  background: rgba(10, 10, 16, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: grid;
  gap: 0.25rem;
  /* Animated hide */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.24s ease,
              transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0.28s;
}

.nav__menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition: opacity 0.24s ease,
              transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.nav__link {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--gold);
}

/* Dropdown */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav__chevron {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav__dropdown-toggle[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: rgba(12, 12, 18, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
}

.nav__dropdown.is-open {
  display: block;
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.nav__dropdown-link:hover,
.nav__dropdown-link:focus-visible {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* Mobile: dropdown inline */
@media (max-width: 991px) {
  .nav__dropdown {
    position: static;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0.2rem 0 0.2rem 0.8rem;
    margin-top: 0.3rem;
  }
}

/* Desktop: dropdown absolute */
@media (min-width: 992px) {
  .nav__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
  }
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -120%;
  width: 60%;
  height: 350%;
  transform: rotate(25deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: left 0.45s ease;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  left: 160%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.faq-item__question:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.button--gold {
  border-color: var(--gold);
  background: linear-gradient(110deg, var(--gold), var(--gold-2));
  color: #1a1403;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.button--whatsapp {
  border-color: #25d366;
  background: linear-gradient(110deg, #25d366, #128c5e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3),
              0 2px 8px rgba(0,0,0,0.3);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: linear-gradient(110deg, #2de073, #15a86e);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5),
              0 2px 10px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

.button--whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.button--icon {
  gap: 0.5rem;
}

.button--icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button--outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  background: rgba(212, 175, 55, 0.14);
}

.button--sm {
  min-height: 2.5rem;
  padding-inline: 0.9rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  padding: 1.8rem 0 3.8rem;
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 45% at 70% 20%, rgba(212, 175, 55, 0.2), transparent 70%),
    linear-gradient(160deg, transparent 0%, rgba(184, 138, 42, 0.08) 50%, transparent 100%);
}

.hero__content {
  text-align: center;
}

.hero__logo {
  width: clamp(9rem, 26vw, 15rem);
  height: clamp(9rem, 26vw, 15rem);
  object-fit: contain;
  margin: 0 auto 0.4rem;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 32px rgba(212, 175, 55, 0.4));
}

.hero__eyebrow,
.section__kicker {
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin: 0 0 0.8rem;
}

.hero__title {
  margin: 0;
  font-family: var(--headings);
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(2rem, 9vw, 3.95rem);
}

.hero__subtitle {
  margin: 1rem auto 0;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 4vw, 1.3rem);
}

.hero__actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__proof {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.2rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #efd890;
  background: rgba(14, 14, 22, 0.7);
  font-size: 0.82rem;
}

.highlights {
  padding: 0.8rem 0 1.7rem;
}

.concept-strip {
  border-top: 1px solid rgba(212, 175, 55, 0.24);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(6, 6, 10, 0.6);
  overflow: hidden;
}

.concept-strip__track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.85rem 1rem;
  color: #e9cc7b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  animation: concept-slide 26s linear infinite;
}

.concept-strip__track span {
  position: relative;
  padding-right: 2rem;
}

.concept-strip__track span::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.highlights__grid {
  display: grid;
  gap: 0.9rem;
}

.highlight-card {
  padding: 1rem 1.1rem;
  background: rgba(20, 20, 28, 0.58);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.highlight-card h2 {
  margin: 0;
  font-size: 0.93rem;
  color: #f0d99a;
  font-weight: 600;
}

.section {
  padding: 3.8rem 0;
}

.section--tight {
  padding: 2.7rem 0;
}

.section__head {
  margin-bottom: 1.6rem;
}

.section__title {
  margin: 0;
  font-family: var(--headings);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
}

.process__grid {
  display: grid;
  gap: 1rem;
}

.process-card {
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-card__number {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-family: var(--headings);
  font-size: 1.3rem;
}

.process-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.process-card p {
  margin: 0;
  color: var(--text-muted);
}

.portfolio__grid {
  display: grid;
  gap: 1rem;
}

.portfolio-card,
.pricing-card,
.video-block,
.service-list,
.faq__list,
.contact-form,
.contact__intro {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portfolio-card {
  overflow: hidden;
}

.portfolio-card__media {
  position: relative;
  min-height: 155px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(212, 175, 55, 0.22), rgba(0, 0, 0, 0.58)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 0 10px, transparent 10px 20px);
  color: #f7e8ba;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.portfolio-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: #f3dda0;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}

.portfolio-card__play {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(212, 175, 55, 0.8);
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.88);
  color: #f2da98;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.portfolio-card__play .icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.portfolio-card__play .icon--pause {
  display: none;
}

.portfolio-card__play[aria-pressed="true"] {
  background: rgba(212, 175, 55, 0.2);
}

.portfolio-card__play[aria-pressed="true"] .icon--play {
  display: none;
}

.portfolio-card__play[aria-pressed="true"] .icon--pause {
  display: inline;
}

.portfolio-card__play:hover,
.portfolio-card__play:focus-visible {
  transform: translateY(-1px);
}

.portfolio__audio-note {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.portfolio-card__body {
  padding: 1rem;
}

.portfolio-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.04rem;
}

.portfolio-card__tags {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.video-block {
  margin-top: 1.35rem;
  padding: 1rem;
}

.video-block__title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.video-block__grid {
  display: grid;
  gap: 0.9rem;
}

.video-block iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.video-block__note {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.pricing-grid--2 {
  grid-template-columns: 1fr;
}

.pricing-card {
  padding: 1.25rem;
}

.pricing-card--featured {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 14px 35px rgba(184, 138, 42, 0.22);
}

.pricing-card__title {
  margin: 0;
  font-family: var(--headings);
  color: var(--gold);
  font-size: 1.3rem;
}

.pricing-card__subtitle {
  margin: 0.35rem 0 0.9rem;
  color: #f1da98;
}

.pricing-card__list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-card__price {
  margin: 1rem 0 0.45rem;
  font-size: 1.35rem;
  color: #f8e9b9;
  font-weight: 700;
}

.pricing-card__meta,
.pricing-card__usage,
.pricing-card__message {
  margin: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-card .button {
  margin-top: 0.95rem;
}

.service-list {
  overflow: hidden;
  border-color: #ff8c00;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.5),
              0 0 22px rgba(255, 140, 0, 0.25),
              0 0 55px rgba(255, 140, 0, 0.1),
              inset 0 0 20px rgba(255, 140, 0, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-list:hover {
  border-color: #ffa733;
  box-shadow: 0 0 14px rgba(255, 140, 0, 0.75),
              0 0 38px rgba(255, 140, 0, 0.38),
              0 0 80px rgba(255, 140, 0, 0.15),
              inset 0 0 30px rgba(255, 140, 0, 0.06);
}

.service-list__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
}

.service-list__row:last-child {
  border-bottom: 0;
}

.service-list__row span {
  color: var(--text-muted);
}

.service-list__row strong {
  color: #f7e8ba;
  white-space: nowrap;
}

.service-list__row--block {
  flex-direction: column;
  gap: 0.4rem;
}

.service-list__row--block span {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-list__row--block small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.service-list__sub {
  font-size: 0.85rem;
  color: #f7e8ba;
  padding-left: 0.5rem;
}

.section__disclaimer {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.faq__list {
  padding: 0.4rem 0.9rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  padding: 1rem 0.25rem;
  cursor: pointer;
}

.faq-item__question::after {
  content: "+";
  float: right;
  color: var(--gold);
}

.faq-item__question[aria-expanded="true"]::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 0.25rem 1rem;
  color: var(--text-muted);
}

.contact__layout {
  display: grid;
  gap: 1rem;
}

.contact__intro,
.contact-form {
  padding: 1.2rem;
}

.contact__intro p {
  color: var(--text-muted);
}

.social-list {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Chrome / silver metallic 3D icon buttons */
.social-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  /* metallic chrome gradient — light hit top-left, dark bottom-right */
  background: linear-gradient(
    145deg,
    #ffffff 0%,
    #d8dce4 18%,
    #9ea5b0 38%,
    #c8cdd6 55%,
    #eef0f4 70%,
    #b0b7c3 85%,
    #8a9099 100%
  );
  /* dark icon color so it reads as a cutout */
  color: #14161a;
  border: none;
  /* outer shadow for lift + inner bevel for emboss */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.65),
    0 2px 6px  rgba(0,0,0,0.45),
    inset 0 2px 3px  rgba(255,255,255,0.9),
    inset 0 -2px 3px rgba(0,0,0,0.25);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-list a svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  /* deep shadow on the icon gives the engraved/cutout look */
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,0.55))
    drop-shadow(0 -1px 2px rgba(0,0,0,0.7));
}

/* Apple logo is portrait (814×1000) — constrain height instead */
.social-list a[aria-label*="Apple"] svg {
  width: 18px;
  height: 22px;
}

.social-list a:hover,
.social-list a:focus-visible {
  /* on hover: shift gradient to brighter chrome + gold glow */
  background: linear-gradient(
    145deg,
    #fff    0%,
    #e8ecf2 18%,
    #b0b8c8 38%,
    #dde1ea 55%,
    #f5f6f9 70%,
    #c0c8d4 85%,
    #98a0ae 100%
  );
  box-shadow:
    0 0 16px  rgba(212,175,55,0.45),
    0 8px 22px rgba(0,0,0,0.6),
    inset 0 2px 3px  rgba(255,255,255,0.95),
    inset 0 -2px 3px rgba(0,0,0,0.2);
  transform: translateY(-4px) scale(1.1);
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form label {
  font-weight: 600;
  color: #f0d99a;
  font-size: 0.92rem;
}

/* ── Form feedback alert ─────────────────────────────────────────── */
.form-alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid transparent;
}
.form-alert--success {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
  color: #25d366;
}
.form-alert--error {
  background: rgba(220, 60, 60, 0.12);
  border-color: #e05252;
  color: #e07272;
}
#submitBtn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Tarjeta de éxito inline ─────────────────────────────────────────── */
.form-success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  animation: fadeInUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2e1a, #0d1a0d);
  border: 2px solid #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.3),
              0 0 55px rgba(37, 211, 102, 0.1);
}

.form-success-icon svg {
  width: 36px;
  height: 36px;
  fill: #25d366;
}

.form-success-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.form-success-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 8, 12, 0.8);
  padding: 0.72rem 0.78rem;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 2.8rem 0 1.4rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.25));
}

.site-footer__grid {
  display: grid;
  gap: 1rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-family: var(--headings);
  color: var(--gold);
}

.site-footer__brand-img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  mix-blend-mode: lighten;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer__links a {
  color: var(--text-muted);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--gold);
}

.site-footer__bottom {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(11, 11, 15, 0.9);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}

.back-to-top svg {
  width: 18px;
  fill: currentColor;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ── Page load ───────────────────────────────── */
body {
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.is-loaded {
  opacity: 1;
}

/* ── Reveal base ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Reveal variants */
.reveal--left {
  transform: translateX(-32px);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--zoom {
  transform: scale(0.94);
}

.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--zoom.is-visible {
  transform: none;
}

/* Stagger delays for grid children */
.highlights__grid   .reveal:nth-child(1),
.portfolio__grid    .reveal:nth-child(1),
.pricing-grid       .reveal:nth-child(1),
.process__grid      .reveal:nth-child(1),
.testimonials__grid .reveal:nth-child(1) { transition-delay: 0ms; }

.highlights__grid   .reveal:nth-child(2),
.portfolio__grid    .reveal:nth-child(2),
.pricing-grid       .reveal:nth-child(2),
.process__grid      .reveal:nth-child(2),
.testimonials__grid .reveal:nth-child(2) { transition-delay: 90ms; }

.highlights__grid   .reveal:nth-child(3),
.portfolio__grid    .reveal:nth-child(3),
.pricing-grid       .reveal:nth-child(3),
.process__grid      .reveal:nth-child(3),
.testimonials__grid .reveal:nth-child(3) { transition-delay: 180ms; }

.highlights__grid   .reveal:nth-child(4),
.portfolio__grid    .reveal:nth-child(4) { transition-delay: 270ms; }

.portfolio__grid    .reveal:nth-child(5) { transition-delay: 340ms; }
.portfolio__grid    .reveal:nth-child(6) { transition-delay: 400ms; }

#inicio,
#portafolio,
#paquetes,
#servicios,
#branding,
#faq,
#contacto,
#extras {
  scroll-margin-top: 5.5rem;
}

@media (min-width: 560px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 720px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact__layout,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero {
    padding-top: 2.4rem;
    padding-bottom: 4.8rem;
  }

  .highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portfolio__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-block__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-logo {
    width: 7rem;
    height: 7rem;
  }
}

/* ── Parallax hero ───────────────────────────── */
.hero__bg {
  will-change: transform;
  transition: none;
}

/* ── Portfolio card hover ────────────────────── */
.portfolio-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  will-change: transform;
}

.portfolio-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(212, 175, 55, 0.12);
}

.portfolio-card__image {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.07);
}

/* ── Pricing card hover ──────────────────────── */
.pricing-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  will-change: transform;
}

/* Colored border variants — neon glow */
.pricing-card--mint {
  border-color: #3ecfb2;
  box-shadow: 0 0 8px rgba(62, 207, 178, 0.4),
              0 0 20px rgba(62, 207, 178, 0.2),
              0 0 60px rgba(62, 207, 178, 0.08),
              inset 0 0 20px rgba(62, 207, 178, 0.04);
}
.pricing-card--mint:hover {
  border-color: #5edfc4;
  box-shadow: 0 0 12px rgba(62, 207, 178, 0.65),
              0 0 35px rgba(62, 207, 178, 0.35),
              0 0 80px rgba(62, 207, 178, 0.15),
              inset 0 0 30px rgba(62, 207, 178, 0.07);
}
.pricing-card--mint .pricing-card__title {
  color: #3ecfb2;
  text-shadow: 0 0 12px rgba(62, 207, 178, 0.6);
}

.pricing-card--blue {
  border-color: #4a90e2;
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.45),
              0 0 22px rgba(74, 144, 226, 0.22),
              0 0 60px rgba(74, 144, 226, 0.09),
              inset 0 0 20px rgba(74, 144, 226, 0.04);
}
.pricing-card--blue:hover {
  border-color: #6aaaf0;
  box-shadow: 0 0 14px rgba(74, 144, 226, 0.7),
              0 0 38px rgba(74, 144, 226, 0.38),
              0 0 80px rgba(74, 144, 226, 0.16),
              inset 0 0 30px rgba(74, 144, 226, 0.07);
}
.pricing-card--blue .pricing-card__title {
  color: #6aaaf0;
  text-shadow: 0 0 12px rgba(74, 144, 226, 0.65);
}

.pricing-card--gold {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.45),
              0 0 22px rgba(212, 175, 55, 0.22),
              0 0 60px rgba(212, 175, 55, 0.09),
              inset 0 0 20px rgba(212, 175, 55, 0.04);
}
.pricing-card--gold:hover {
  border-color: #e8c44a;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7),
              0 0 38px rgba(212, 175, 55, 0.38),
              0 0 80px rgba(212, 175, 55, 0.16),
              inset 0 0 30px rgba(212, 175, 55, 0.07);
}
.pricing-card--gold .pricing-card__title {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.65);
}

.pricing-card--orange {
  border-color: #ff8c00;
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.5),
              0 0 22px rgba(255, 140, 0, 0.25),
              0 0 55px rgba(255, 140, 0, 0.1),
              inset 0 0 20px rgba(255, 140, 0, 0.04);
}
.pricing-card--orange:hover {
  border-color: #ffa733;
  box-shadow: 0 0 14px rgba(255, 140, 0, 0.75),
              0 0 38px rgba(255, 140, 0, 0.38),
              0 0 80px rgba(255, 140, 0, 0.15),
              inset 0 0 30px rgba(255, 140, 0, 0.06);
}
.pricing-card--orange .pricing-card__title {
  color: #ff8c00;
  text-shadow: 0 0 12px rgba(255, 140, 0, 0.65);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5),
              0 0 28px rgba(212, 175, 55, 0.08);
}

/* ── Process card hover ──────────────────────── */
.process-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  will-change: transform;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45),
              -3px 0 0 0 var(--gold);
}

/* ── Testimonial card hover ──────────────────── */
.testimonial-card {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.28s ease,
              box-shadow 0.28s ease;
  will-change: transform;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48),
              0 0 24px rgba(212, 175, 55, 0.07);
}

/* ── Highlight card hover ────────────────────── */
.highlight-card {
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.24s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.38);
}

/* ── Button micro-interactions ───────────────── */
.button {
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
  transform: scale(0);
  animation: ripple-out 0.55s ease-out forwards;
}

@keyframes ripple-out {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* ── Section kicker slide-in ─────────────────── */
.section__kicker {
  overflow: hidden;
}

/* ── Nav link underline micro ────────────────── */
.nav__link:not(.nav__dropdown-toggle) {
  position: relative;
}

.nav__link:not(.nav__dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.nav__link:not(.nav__dropdown-toggle):hover::after,
.nav__link:not(.nav__dropdown-toggle):focus-visible::after {
  width: 100%;
}

/* ── Social link spin-in ─────────────────────── */
.social-list a {
  transition: border-color 0.2s ease, color 0.2s ease,
              transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-list a:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ── FAQ animation ───────────────────────────── */
.faq-item__answer {
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease;
}

/* ── Nav backdrop overlay ────────────────────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .nav-backdrop {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   MOBILE OPTIMIZATIONS  (max-width: 767px)
   ══════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Container tighter on small screens */
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  /* ── Nav ── */
  .nav {
    min-height: 3.8rem;
  }

  .nav__toggle {
    width: 3rem;
    height: 3rem;
  }

  /* Nav links: full-width, thumb-friendly tap targets */
  .nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 0.5rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .nav__link:hover,
  .nav__link:focus-visible {
    background: rgba(212, 175, 55, 0.07);
  }

  /* Dropdown links bigger on mobile */
  .nav__dropdown-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.95rem;
  }

  .nav__dropdown-toggle {
    min-height: 48px;
    width: 100%;
    justify-content: space-between;
    padding: 0 0.5rem;
  }

  .nav__menu .button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    margin-top: 0.5rem;
  }

  /* ── Hero ── */
  .hero {
    padding: 1.6rem 0 2.8rem;
  }

  .hero__logo {
    width: clamp(7rem, 40vw, 10rem);
    height: clamp(7rem, 40vw, 10rem);
    margin-bottom: 0.5rem;
  }

  .hero__title {
    font-size: clamp(1.65rem, 7.5vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
    margin-top: 0.6rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.4rem;
  }

  .hero__actions .button {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    font-size: 1rem;
  }

  /* ── Sections ── */
  .section {
    padding: 2.4rem 0;
  }

  .section--tight {
    padding: 1.8rem 0;
  }

  .section__title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .section__head {
    margin-bottom: 1.2rem;
  }

  /* ── Highlights ── */
  .highlights {
    padding: 0.6rem 0 1.2rem;
  }

  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .highlight-card {
    padding: 0.85rem 0.9rem;
  }

  .highlight-card h2 {
    font-size: 0.85rem;
  }

  /* ── Portfolio ── */
  .portfolio__grid {
    gap: 0.75rem;
  }

  .portfolio-card__media {
    min-height: 180px;
  }

  /* ── Videos ── */
  .video-block {
    padding: 0.85rem;
  }

  .video-block__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pricing-grid--2 {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.1rem;
  }

  .pricing-card .button {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    font-size: 0.95rem;
  }

  /* ── Service list ── */
  .service-list__row {
    padding: 0.85rem 0.75rem;
    min-height: 52px;
    align-items: center;
  }

  /* ── Mid CTA ── */
  .mid-cta {
    padding: 2rem 0;
  }

  .mid-cta__inner {
    gap: 1.2rem;
  }

  .mid-cta__inner .button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* ── Buttons global ── */
  .button {
    min-height: 48px;
    padding: 0.7rem 1.2rem;
  }

  .button--sm {
    min-height: 44px;
  }

  /* ── Testimonials ── */
  .testimonials__grid {
    gap: 0.75rem;
  }

  .testimonial-card {
    padding: 1.1rem;
  }

  /* ── FAQ ── */
  .faq-item__question {
    font-size: 0.95rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.25rem;
  }

  /* ── Contact ── */
  .contact__layout {
    gap: 0.75rem;
  }

  .contact__intro,
  .contact-form {
    padding: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    font-size: 1rem;
  }

  .contact-form .button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  /* ── Section inline CTA ── */
  .section-cta {
    flex-direction: column;
  }

  .section-cta .button {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }

  /* ── Footer ── */
  .site-footer {
    padding: 2rem 0 1.2rem;
  }

  .site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .site-footer__links li {
    flex: 0 0 50%;
  }

  .site-footer__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  /* ── Back to top / WhatsApp spacing ── */
  .back-to-top {
    bottom: 5.2rem;
    width: 3rem;
    height: 3rem;
  }

  .whatsapp-float {
    bottom: 5rem;
    padding: 0.7rem;
  }

  /* ── Audio player spacing ── */
  body.player-open {
    padding-bottom: 6rem;
  }

  body.player-open .back-to-top {
    bottom: 9rem;
  }

  body.player-open .whatsapp-float {
    bottom: 8.8rem;
  }

  /* ── Scroll margin ── */
  #inicio, #portafolio, #paquetes,
  #servicios, #branding, #faq,
  #contacto, #extras {
    scroll-margin-top: 4.5rem;
  }

  /* ── Process grid ── */
  .process__grid {
    gap: 0.75rem;
  }

  .process-card {
    padding: 1rem;
  }
}

/* ── Small phones (max-width: 390px) ────────── */
@media (max-width: 390px) {
  .hero__title {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .hero__eyebrow {
    font-size: 0.68rem;
  }

  .g-player__inner {
    gap: 0.5rem 0.5rem;
  }
}

/* ── Tablet (720px – 991px) ──────────────────── */
@media (min-width: 720px) and (max-width: 991px) {
  .hero__actions {
    gap: 0.75rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-block__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav__link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 0.4rem;
  }
}

/* ── Reduced motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body {
    opacity: 1;
    transition: none;
  }

  .button,
  .button::after,
  .reveal,
  .site-header,
  .back-to-top,
  .concept-strip__track,
  .floating-logo,
  .portfolio-card,
  .pricing-card,
  .process-card,
  .testimonial-card,
  .highlight-card {
    transition: none;
    animation: none;
    will-change: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes concept-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════
   GLOBAL AUDIO PLAYER  — Spotify embed / gold
   ══════════════════════════════════════════════ */

.g-player {
  background: linear-gradient(160deg, #3a2a00 0%, #2a1e00 50%, #3a2a00 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(212, 175, 55, 0.1),
              inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

/* Embedded in portafolio section */
.g-player--embed {
  max-width: 1780px;
  margin: 2rem auto 0;
}

.g-player--embed .g-player__art-wrap {
  width: 130px;
  height: 130px;
}

.g-player--embed .g-player__top-main {
  height: 130px;
}

.g-player--embed .g-player__album-name {
  font-size: 1.15rem;
}

.g-player--embed .g-player__tracklist {
  max-height: 320px;
}

@media (max-width: 520px) {
  .g-player--embed .g-player__art-wrap {
    width: 80px;
    height: 80px;
  }
  .g-player--embed .g-player__top-main {
    height: 80px;
  }
}

/* ── Top panel ── */
.g-player__top {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: flex-start;
  position: relative;
}

.g-player__art-wrap {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1408;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.g-player__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g-player__art-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 35%, #2c1f06, #0e0e1a);
}

.g-player__art-placeholder.is-visible {
  display: flex;
}

.g-player__art-placeholder svg {
  width: 38px;
  height: 38px;
  fill: rgba(212, 175, 55, 0.5);
}

/* Main column: info + controls */
.g-player__top-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
}

.g-player__top-info {
  min-width: 0;
}

.g-player__album-name {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff8e0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.g-player__label-row {
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.g-player__badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 3px;
  padding: 0.05rem 0.4rem;
}

.g-player__studio {
  font-size: 0.72rem;
  color: rgba(255, 240, 180, 0.75);
}

.g-player__cta-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.18s;
}

.g-player__cta-link:hover { color: var(--gold); }

/* Controls row below info */
.g-player__ctrl-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.g-player__vol-wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: auto;
}

.g-player__vol-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0.15rem;
  transition: color 0.18s;
  display: flex;
}

.g-player__vol-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.g-player__vol-btn:hover { color: var(--gold); }

.g-player__vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 3px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 999px;
  cursor: pointer;
  outline: none;
}

.g-player__vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.g-player__vol-slider::-moz-range-thumb {
  width: 11px;
  height: 11px;
  background: #fff;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
}

/* Nav buttons (|< >|) */
.g-player__nav-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  transition: color 0.18s;
}

.g-player__nav-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.g-player__nav-btn:hover { color: rgba(255, 255, 255, 0.9); }

/* Play button — gold circle */
.g-player__play-btn {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.g-player__play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(212, 175, 55, 0.65);
}

.g-player__play-btn:active { transform: scale(0.95); }

.g-player__icon--play,
.g-player__icon--pause {
  width: 20px;
  height: 20px;
  fill: #120d00;
  display: block;
}

.g-player__icon--pause { display: none; }

.g-player.is-playing .g-player__icon--play  { display: none; }
.g-player.is-playing .g-player__icon--pause { display: block; }

/* Brand logo + close in top-right */
.g-player__top-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.g-player__close-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.18s;
  border-radius: 50%;
}

.g-player__close-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.g-player__close-btn:hover { color: rgba(255, 255, 255, 0.9); }

.g-player__brand {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.8;
}

/* ── Progress bar ── */
.g-player__seek {
  padding: 0 1rem 0.2rem;
}

.g-player__bar {
  width: 100%;
  height: 4px;
  background: rgba(212, 175, 55, 0.18);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: height 0.18s ease;
}

.g-player__bar:hover,
.g-player__bar:focus-visible {
  height: 6px;
  outline: none;
}

.g-player__bar:hover .g-player__bar-thumb,
.g-player__bar:focus-visible .g-player__bar-thumb {
  transform: translate(-50%, -50%) scale(1);
}

.g-player__bar-fill {
  position: absolute;
  inset: 0;
  right: auto;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  pointer-events: none;
}

.g-player__bar-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.18s ease;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  pointer-events: none;
}

.g-player__times {
  display: flex;
  justify-content: space-between;
  margin-top: 0.28rem;
}

.g-player__time {
  font-size: 0.66rem;
  color: rgba(255, 220, 100, 0.55);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

/* ── Track list ── */
.g-player__tracklist {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.4rem 0 0.5rem;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.2) transparent;
}

.g-player__tracklist::-webkit-scrollbar { width: 4px; }
.g-player__tracklist::-webkit-scrollbar-track { background: transparent; }
.g-player__tracklist::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.2); border-radius: 2px; }

.g-player__track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
}

.g-player__track:hover {
  background: rgba(212, 175, 55, 0.1);
}

.g-player__track.is-active .g-player__track-title {
  color: var(--gold);
}

.g-player__track-num {
  flex-shrink: 0;
  width: 20px;
  font-size: 0.8rem;
  color: rgba(255, 220, 100, 0.55);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

/* Animated equaliser icon on active+playing */
.g-player.is-playing .g-player__track.is-active .g-player__track-num {
  color: transparent;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1' y='7' width='3' height='9' rx='1' fill='%23d4af37'%3E%3Canimate attributeName='height' values='9;4;9' dur='0.8s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='7;10;7' dur='0.8s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='6' y='4' width='3' height='12' rx='1' fill='%23d4af37'%3E%3Canimate attributeName='height' values='12;5;12' dur='0.65s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='4;9;4' dur='0.65s' repeatCount='indefinite'/%3E%3C/rect%3E%3Crect x='11' y='6' width='3' height='10' rx='1' fill='%23d4af37'%3E%3Canimate attributeName='height' values='10;3;10' dur='1s' repeatCount='indefinite'/%3E%3Canimate attributeName='y' values='6;11;6' dur='1s' repeatCount='indefinite'/%3E%3C/rect%3E%3C/svg%3E") center/contain no-repeat;
  width: 20px;
  height: 16px;
}

.g-player__track-body {
  flex: 1;
  min-width: 0;
}

.g-player__track-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 248, 220, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s;
}

.g-player__track-sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 230, 140, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.08rem;
}

.g-player__track-dur {
  flex-shrink: 0;
  font-size: 0.72rem;
  color: rgba(255, 230, 140, 0.55);
  font-variant-numeric: tabular-nums;
}

/* ── Mobile ── */
@media (max-width: 520px) {
  .g-player--embed {
    margin: 1.5rem 0 0;
    border-radius: 10px;
  }

  .g-player__vol-wrap {
    display: none;
  }

  .g-player__tracklist {
    max-height: 200px;
  }
}

/* ── Urgency bar ─────────────────────────────── */
.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg, #1a1200, #2a1e00, #1a1200);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  color: #f5e8b0;
  font-size: 0.85rem;
  text-align: center;
}

.urgency-bar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5533a;
  box-shadow: 0 0 0 0 rgba(229, 83, 58, 0.6);
  animation: pulse-dot 1.6s ease infinite;
  flex-shrink: 0;
}

.urgency-bar__cta {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.urgency-bar__cta:hover {
  opacity: 0.8;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 83, 58, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(229, 83, 58, 0); }
}

/* ── Trust badges ────────────────────────────── */
.trust-badges {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 12, 0.55);
}

.trust-badges__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2.4rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c9b97e;
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ── Testimonials ────────────────────────────── */
.testimonials {
  background: linear-gradient(160deg, rgba(20, 15, 0, 0.5), transparent);
}

.testimonials__grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
}

.testimonial-card blockquote p::before {
  content: "\201C";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -0.35rem;
  margin-right: 2px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card footer strong {
  color: #f0d99a;
  font-size: 0.95rem;
}

.testimonial-card footer span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── Urgency badge on pricing card ───────────── */
.pricing-card__urgency {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.2rem 0.7rem;
  background: rgba(229, 83, 58, 0.18);
  border: 1px solid rgba(229, 83, 58, 0.55);
  border-radius: 999px;
  color: #f87a64;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section inline CTA ──────────────────────── */
.section-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(18, 14, 0, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.section-cta p {
  margin: 0;
  color: #e8d99a;
  font-size: 1rem;
  font-weight: 600;
}

/* ── Mid-page CTA banner ─────────────────────── */
.mid-cta {
  background:
    radial-gradient(60% 80% at 85% 50%, rgba(212, 175, 55, 0.14), transparent),
    linear-gradient(120deg, #0d0d00, #1a1400);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3rem 0;
}

.mid-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.mid-cta__label {
  margin: 0 0 0.3rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.mid-cta__title {
  margin: 0 0 0.4rem;
  font-family: var(--headings);
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  line-height: 1.2;
}

.mid-cta__sub {
  margin: 0;
  color: var(--text-muted);
  max-width: 46ch;
}

/* ── WhatsApp float button ───────────────────── */
.whatsapp-float {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: #25d366;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float__label {
  display: none;
}

/* ── Responsive additions ────────────────────── */
@media (min-width: 560px) {
  .whatsapp-float__label {
    display: inline;
  }
}

@media (min-width: 720px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mid-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
