:root {
  --color-primary: #0E3D6F;
  --color-primary-dark: #082543;
  --color-accent: #F8B501;
  --color-bg: #050B16;
  --color-bg-light: #0B1530;
  --color-white: #ffffff;
  --color-muted: #9CA7C1;
  --color-border: rgba(255, 255, 255, 0.08);

  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.3s ease-out;

  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-white);
  background: radial-gradient(circle at top left, #132a4a 0, #050B16 40%, #02040a 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  color: var(--color-white);
}

p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--light {
  background: rgba(8, 25, 60, 0.9);
}

.section--accent {
  background: radial-gradient(circle at top right, rgba(248, 181, 1, 0.16), transparent 55%),
    linear-gradient(135deg, #0E3D6F, #08152c);
}

.section__header {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section__header p {
  margin-top: 0.75rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.container--split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 11, 22, 0.98), rgba(5, 11, 22, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo__image {
  height: 40px;
  width: auto;
  display: block;
}

.logo--footer .logo__image {
  height: 45px;
}

.nav {
  position: relative;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  color: var(--color-muted);
  transition: color var(--transition-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #ffd75a);
  transition: width var(--transition-med);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 181, 1, 0.72);
  color: var(--color-white);
  background: radial-gradient(circle at 10% 0, rgba(248, 181, 1, 0.15), transparent 55%);
}

.nav__link--cta.nav__link--active::after {
  display: none;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 17, 38, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding: 4rem 0 4.5rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

.hero__content h1 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__content p {
  margin-top: 1rem;
  font-size: 1rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero__highlights span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 40, 0.9);
}

.hero__media {
  display: grid;
  gap: 1.5rem;
}

.hero__card {
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(248, 181, 1, 0.14), rgba(5, 11, 22, 0.96));
  box-shadow: var(--shadow-soft);
}

.hero__card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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

.stat {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 11, 24, 0.92);
}

.stat__number {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero--inner {
  padding-top: 4rem;
}

.hero--inner__content {
  max-width: 720px;
}

.hero--inner__content h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
}

/* ===============================================
   HERO PREMIUM
   =============================================== */

.hero-premium {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-premium__background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(248, 181, 1, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 61, 111, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.hero-premium__background::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-premium .container {
  position: relative;
  z-index: 1;
}

.hero-premium__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #F8B501;
  text-transform: uppercase;
}

.hero-premium__badge svg {
  width: 16px;
  height: 16px;
}

.hero-premium__content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-premium__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem;
  max-width: 600px;
}

.hero-premium__lead strong {
  color: #F8B501;
  font-weight: 600;
}

.hero-premium__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-premium__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.hero-premium__btn--primary {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  color: #050B16;
  box-shadow: 0 10px 30px rgba(248, 181, 1, 0.4);
}

.hero-premium__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(248, 181, 1, 0.5);
  gap: 0.75rem;
}

.hero-premium__btn--primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-premium__btn--primary:hover svg {
  transform: translateX(3px);
}

.hero-premium__btn--secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero-premium__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-premium__features {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-premium__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-premium__feature svg {
  width: 20px;
  height: 20px;
  color: #F8B501;
  flex-shrink: 0;
}

.hero-premium__media {
  display: grid;
  gap: 1.5rem;
}

.hero-premium__card {
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.3) 0%, rgba(14, 61, 111, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-premium__card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(248, 181, 1, 0.1);
}

.hero-premium__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-premium__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.2), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8B501;
}

.hero-premium__card-icon svg {
  width: 24px;
  height: 24px;
}

.hero-premium__card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.hero-premium__card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.hero-premium__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-premium__stat {
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.hero-premium__stat:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-premium__stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #F8B501;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.hero-premium__stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Responsive Hero Premium */
@media (max-width: 960px) {
  .hero-premium__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-premium__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding: 4rem 0 3rem;
  }

  .hero-premium__content h1 {
    font-size: 1.75rem;
  }

  .hero-premium__lead {
    font-size: 1rem;
  }

  .hero-premium__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-premium__btn {
    width: 100%;
  }

  .hero-premium__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  color: #050B16;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.btn--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

.btn--ghost:hover {
  background: rgba(12, 27, 60, 0.9);
}

.btn--light {
  background: #ffffff;
  color: #050B16;
}

.btn--light:hover {
  background: #f3f3f3;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(5, 11, 22, 0.95);
  padding: 1.5rem 1.6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.card__link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.card__link::after {
  content: "→";
  margin-left: 0.25rem;
}

.section--services {
  background: linear-gradient(180deg, rgba(8, 25, 60, 0.4) 0%, rgba(5, 11, 22, 0) 100%);
  padding: 5rem 0 5.5rem;
}

.services-header {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.services-header h2 {
  font-size: 1.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #9CA7C1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

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

.service-card-premium {
  position: relative;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: 
    radial-gradient(circle at bottom left, rgba(14, 61, 111, 0.4), transparent 65%),
    rgba(5, 11, 22, 0.95);
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium--clickable {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.6), rgba(14, 61, 111, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-premium:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(248, 181, 1, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(248, 181, 1, 0.4);
}

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

.service-card-premium__icon {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.12), rgba(14, 61, 111, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card-premium__icon::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.2), transparent 70%);
  border-radius: 999px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.service-card-premium__icon svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.service-card-premium:hover .service-card-premium__icon svg {
  transform: scale(1.1) rotate(5deg);
}

.service-card-premium__content {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-premium__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.3;
}

.service-card-premium__content p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(156, 167, 193, 0.95);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-card-premium__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card-premium__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-card-premium__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.95rem;
  font-weight: 600;
  color: #F8B501;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.service-card-premium__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-card-premium:hover .service-card-premium__cta {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border-color: #F8B501;
  color: #050B16;
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(248, 181, 1, 0.4);
  gap: 0.8rem;
}

.service-card-premium:hover .service-card-premium__cta svg {
  transform: translateX(2px);
}

.service-card-premium:hover .service-card-premium__link {
  gap: 0.75rem;
  color: #FFD75A;
}

.service-card-premium:hover .service-card-premium__link svg {
  transform: translateX(4px);
}

.section--benefits {
  background: linear-gradient(180deg, rgba(5, 11, 22, 0) 0%, rgba(8, 25, 60, 0.4) 100%);
  padding: 5.5rem 0;
}

.benefits-intro {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.benefits-intro h2 {
  font-size: 1.85rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #9CA7C1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-intro__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 3.5rem;
  align-items: start;
}

.benefits-main {
  position: sticky;
  top: 100px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefits-list__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.2), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.benefits-list strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.benefits-list p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  color: var(--color-muted);
}

.btn--large {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

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

.benefit-card--premium {
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: 
    radial-gradient(circle at top left, rgba(14, 61, 111, 0.5), transparent 70%),
    rgba(5, 11, 22, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.benefit-card--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(248, 181, 1, 0.5), rgba(14, 61, 111, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card--premium:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(248, 181, 1, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(248, 181, 1, 0.4);
}

.benefit-card--premium:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(14, 61, 111, 0.3));
  border: 1px solid rgba(248, 181, 1, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--color-accent);
  transition: all 0.3s ease;
}

.benefit-card--premium:hover .benefit-card__icon {
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.25), rgba(14, 61, 111, 0.4));
  border-color: rgba(248, 181, 1, 0.5);
  box-shadow: 0 8px 20px rgba(248, 181, 1, 0.2);
  transform: scale(1.05);
}

.benefit-card__icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card--premium h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.benefit-card--premium p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(156, 167, 193, 0.95);
}

.list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.list--check {
  list-style: none;
  padding-left: 0;
}

.list--check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
}

.list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: var(--color-accent);
}

.section--cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-premium {
  position: relative;
  padding: 4rem 3.5rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: 
    radial-gradient(circle at top right, rgba(248, 181, 1, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(14, 61, 111, 0.6), rgba(5, 11, 22, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: 
    0 10px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: center;
}

.cta-premium__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.3), transparent 70%);
  border-radius: 999px;
  filter: blur(60px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-premium__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-premium h2 {
  font-size: 1.85rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #F8B501 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-premium p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.cta-btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #F8B501 0%, #E58A00 100%);
  color: #050B16;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(248, 181, 1, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-btn-premium:hover::before {
  opacity: 1;
}

.cta-btn-premium:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(248, 181, 1, 0.5),
    0 0 40px rgba(248, 181, 1, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  gap: 1rem;
}

.cta-btn-premium__text {
  position: relative;
  z-index: 1;
}

.cta-btn-premium__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.cta-btn-premium__icon svg {
  width: 20px;
  height: 20px;
}

.cta-btn-premium:hover .cta-btn-premium__icon {
  transform: translateX(4px);
}

/* ===============================================
   SERVICIOS - HERO PREMIUM
   =============================================== */

.services-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, rgba(14, 61, 111, 0.15) 0%, transparent 100%);
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.services-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F8B501;
  text-transform: uppercase;
}

.services-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.services-hero__lead strong {
  color: #F8B501;
  font-weight: 600;
}

/* ===============================================
   SERVICIOS - TARJETAS DE DETALLE PREMIUM
   =============================================== */

.section--services-list {
  padding: 5rem 0;
}

.services-list-grid {
  display: grid;
  gap: 3rem;
}

.service-detail-card {
  position: relative;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(14, 61, 111, 0.25) 0%,
    rgba(14, 61, 111, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F8B501 0%, #E58A00 50%, #F8B501 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail-card:hover::before {
  opacity: 1;
  animation: shimmer 2s linear infinite;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(248, 181, 1, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-detail-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-detail-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.2), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  color: #F8B501;
  transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-card__icon {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border-color: #F8B501;
  color: #050B16;
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 25px rgba(248, 181, 1, 0.4);
}

.service-detail-card__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.service-detail-card__header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #ffffff;
  line-height: 1.2;
}

.service-detail-card__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

.service-detail-card__description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}

.service-detail-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  gap: 1rem;
}

.service-detail-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
}

.service-detail-card__features li:hover {
  background: rgba(248, 181, 1, 0.08);
  border-color: rgba(248, 181, 1, 0.2);
  transform: translateX(4px);
}

.service-detail-card__features li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #F8B501;
  margin-top: 2px;
}

.service-detail-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  color: #F8B501;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card__cta:hover {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border-color: #F8B501;
  color: #050B16;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 181, 1, 0.4);
  gap: 0.75rem;
}

.service-detail-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-detail-card__cta:hover svg {
  transform: translateX(3px);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===============================================
   CONTACTO - HERO PREMIUM
   =============================================== */

.contact-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, rgba(14, 61, 111, 0.15) 0%, transparent 100%);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F8B501;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.contact-hero__lead strong {
  color: #F8B501;
  font-weight: 600;
}

/* ===============================================
   CONTACTO - MÉTODOS DE CONTACTO PREMIUM
   =============================================== */

.section--contact-methods {
  padding: 5rem 0;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-method-card {
  position: relative;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(248, 181, 1, 0.15);
}

.contact-method-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-method-card__icon--whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.contact-method-card__icon--email {
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.2), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  color: #F8B501;
}

.contact-method-card__icon--phone {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3B82F6;
}

.contact-method-card:hover .contact-method-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(248, 181, 1, 0.3);
}

.contact-method-card__icon svg {
  width: 40px;
  height: 40px;
}

.contact-method-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
}

.contact-method-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem;
}

.contact-method-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  color: #F8B501;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method-card__cta:hover {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border-color: #F8B501;
  color: #050B16;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 181, 1, 0.4);
  gap: 0.75rem;
}

.contact-method-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.contact-method-card__cta:hover svg {
  transform: translateX(3px);
}

/* ===============================================
   CONTACTO - INFO PREMIUM
   =============================================== */

.section--contact-info {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 61, 111, 0.1) 100%);
}

.contact-info-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-info-premium__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F8B501;
  text-transform: uppercase;
}

.contact-info-premium h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #ffffff;
}

.contact-info-premium__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}

.contact-info-premium__text strong {
  color: #F8B501;
  font-weight: 600;
}

.contact-info-premium__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-premium__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-premium__detail svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #F8B501;
}

.contact-info-premium__detail div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-premium__detail strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-premium__detail span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-premium__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.2);
  text-align: center;
}

.contact-info-premium__cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
}

.contact-info-premium__cta p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem;
}

.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #F8B501;
  color: #F8B501;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-outline:hover {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border-color: #F8B501;
  color: #050B16;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 181, 1, 0.4);
}

.btn-premium-outline svg {
  width: 20px;
  height: 20px;
}

/* Responsive contacto */
@media (max-width: 768px) {
  .contact-hero {
    padding: 5rem 0 3rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-premium {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2.5rem;
  }
}

/* Responsive para servicios */
@media (max-width: 768px) {
  .services-hero {
    padding: 5rem 0 3rem;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .services-hero__lead {
    font-size: 1rem;
  }

  .section--services-list {
    padding: 3rem 0;
  }

  .service-detail-card {
    padding: 2rem;
  }

  .service-detail-card__header {
    flex-direction: column;
    gap: 1rem;
  }

  .service-detail-card__icon {
    width: 56px;
    height: 56px;
  }

  .service-detail-card__icon svg {
    width: 28px;
    height: 28px;
  }

  .service-detail-card__header h2 {
    font-size: 1.5rem;
  }
}

.cta-premium__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-premium__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.cta-premium__link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-premium__link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
  gap: 0.8rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-premium__link:hover svg {
  transform: scale(1.1);
}

.service-highlight {
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at top left, rgba(248, 181, 1, 0.12), rgba(5, 11, 22, 0.97));
}

.service-highlight h3 {
  margin-bottom: 0.5rem;
}

.service-highlight p {
  margin-bottom: 1.2rem;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--color-muted);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn--active,
.filter-btn:hover {
  background: rgba(14, 61, 111, 0.9);
  border-color: rgba(248, 181, 1, 0.55);
  color: var(--color-white);
}

.portfolio-card__image {
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.portfolio-card__tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(248, 181, 1, 0.15);
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.portfolio-card__results {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  list-style: disc;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.about-highlight {
  padding: 1.8rem 1.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(140deg, rgba(14, 61, 111, 0.55), rgba(5, 11, 22, 0.98));
}

.steps {
  counter-reset: step-counter;
  display: grid;
  gap: 1.4rem;
}

.steps li {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 3.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(5, 11, 22, 0.95);
}

.steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: rgba(248, 181, 1, 0.16);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.contact-form-wrapper h2 {
  margin-bottom: 0.6rem;
}

.contact-form {
  margin-top: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 8, 18, 0.95);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(248, 181, 1, 0.8);
  box-shadow: 0 0 0 1px rgba(248, 181, 1, 0.25);
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.contact-info {
  padding: 1.8rem 1.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: rgba(5, 11, 22, 0.96);
}

.contact-info__list {
  margin-bottom: 1.2rem;
}

.contact-info__list li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
}

.contact-info__whatsapp {
  margin-bottom: 0.9rem;
}

.contact-info__text {
  font-size: 0.86rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 1.9rem 1.7rem 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(248, 181, 1, 0.06), transparent 55%),
    linear-gradient(145deg, rgba(5, 11, 22, 0.98), rgba(7, 19, 45, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid rgba(248, 181, 1, 0.0);
  border-image: linear-gradient(90deg, rgba(248, 181, 1, 0.9), rgba(14, 61, 111, 0.0)) 1;
  pointer-events: none;
}

.pricing-card--featured {
  border-color: rgba(248, 181, 1, 0.85);
  background:
    radial-gradient(circle at top center, rgba(248, 181, 1, 0.22), transparent 60%),
    linear-gradient(150deg, #0E3D6F, #050B16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75);
  transform: translateY(-8px);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.9);
  border-color: rgba(248, 181, 1, 0.7);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #F8B501, #FF8C2A);
  color: #050B16;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-subtitle {
  font-size: 0.85rem;
  margin-bottom: 1.3rem;
  color: var(--color-muted);
}

.pricing-price {
  margin-bottom: 1.3rem;
}

.pricing-price__old {
  display: block;
  font-size: 0.82rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.pricing-price__current {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3CCF4E;
}

.pricing-price__note {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.pricing-features {
  margin: 1.1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
}

.pricing-features li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
}

.pricing-features .is-included::before {
  content: "✓";
  color: #3CCF4E;
}

.pricing-features .not-included::before {
  content: "✕";
  color: #FF4B5C;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-card--featured {
    transform: none;
  }
}

/* ===============================================
   PRICING PREMIUM
   =============================================== */

.section--pricing-premium {
  padding: 5rem 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(248, 181, 1, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(14, 61, 111, 0.15) 0%, transparent 50%);
}

.pricing-premium__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.pricing-premium__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #F8B501;
  text-transform: uppercase;
}

.pricing-premium__header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  color: #ffffff;
}

.pricing-premium__header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pricing-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-premium-card {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.2) 0%, rgba(14, 61, 111, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 181, 1, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-premium-card--featured {
  border-color: rgba(248, 181, 1, 0.4);
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.12) 0%, rgba(14, 61, 111, 0.15) 100%);
  transform: scale(1.02);
}

.pricing-premium-card--featured:hover {
  transform: translateY(-8px) scale(1.02);
}

.pricing-premium-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C41E3A, #8B1429);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.pricing-premium-card__header {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-premium-card--featured .pricing-premium-card__header {
  padding-top: 3.5rem;
}

.pricing-premium-card__header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #ffffff;
}

.pricing-premium-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.pricing-premium-card__price-old {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.pricing-premium-card__price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F8B501;
  line-height: 1;
}

.pricing-premium-card__price-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.pricing-premium-card__content {
  padding: 2rem;
}

.pricing-premium-card__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  text-align: center;
}

.pricing-premium-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-premium-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.pricing-premium-card__features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #25D366;
}

.pricing-premium-card__feature--disabled {
  opacity: 0.4;
}

.pricing-premium-card__feature--disabled svg {
  color: #ef4444 !important;
}

.pricing-premium-card__cta {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transition: all 0.3s ease;
}

.pricing-premium-card__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.pricing-premium-card__cta--primary {
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border-color: transparent;
  color: #050B16;
  box-shadow: 0 8px 20px rgba(248, 181, 1, 0.3);
}

.pricing-premium-card__cta--primary:hover {
  background: linear-gradient(135deg, #FFC520, #F8B501);
  box-shadow: 0 12px 30px rgba(248, 181, 1, 0.4);
  transform: translateY(-2px);
}

/* Responsive Pricing Premium */
@media (max-width: 1024px) {
  .pricing-premium-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pricing-premium-card--featured {
    transform: none;
  }

  .pricing-premium-card--featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .section--pricing-premium {
    padding: 3rem 0;
  }

  .pricing-premium__header {
    margin-bottom: 3rem;
  }

  .pricing-premium-card__header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .pricing-premium-card--featured .pricing-premium-card__header {
    padding-top: 3rem;
  }

  .pricing-premium-card__content {
    padding: 1.5rem;
  }

  .pricing-premium-card__price-current {
    font-size: 2rem;
  }
}

.footer-premium {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: 
    radial-gradient(circle at bottom center, rgba(14, 61, 111, 0.3), transparent 50%),
    rgba(2, 6, 15, 0.98);
  padding: 4rem 0 0;
}

.footer-premium__main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-premium__brand {
  max-width: 380px;
}

.logo--footer {
  margin-bottom: 1.2rem;
}

.footer-premium__tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(156, 167, 193, 0.9);
  margin-bottom: 1.5rem;
}

.footer-premium__social {
  display: flex;
  gap: 0.75rem;
}

.footer-premium__social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 61, 111, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-premium__social a svg {
  width: 20px;
  height: 20px;
}

.footer-premium__social a:hover {
  background: rgba(248, 181, 1, 0.15);
  border-color: rgba(248, 181, 1, 0.5);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(248, 181, 1, 0.2);
}

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

.footer-premium__column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--color-white);
}

.footer-premium__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-premium__column li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-premium__column li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.footer-premium__column a {
  color: rgba(156, 167, 193, 0.95);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

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

.footer-premium__column span {
  color: rgba(156, 167, 193, 0.95);
}

.footer-premium__bottom {
  padding: 1.75rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(156, 167, 193, 0.8);
}

.footer-premium__legal {
  color: rgba(156, 167, 193, 0.95);
  transition: color 0.3s ease;
}

.footer-premium__legal:hover {
  color: var(--color-white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

/* ===============================================
   WHATSAPP FLOAT PREMIUM
   =============================================== */

.whatsapp-float-premium {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1EBE57);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 40px rgba(37, 211, 102, 0.4),
    0 0 0 0 rgba(37, 211, 102, 0.7);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float-premium::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1EBE57);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.whatsapp-float-premium:hover::before {
  opacity: 0.3;
}

.whatsapp-float-premium:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 15px 50px rgba(37, 211, 102, 0.5),
    0 0 60px rgba(37, 211, 102, 0.3);
  animation: none;
}

.whatsapp-float-premium__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: whatsapp-pulse-ring 2s ease-in-out infinite;
}

.whatsapp-float-premium__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-float-premium:hover .whatsapp-float-premium__icon {
  transform: scale(1.1) rotate(5deg);
}

.whatsapp-float-premium__icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-float-premium__tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.95), rgba(5, 11, 22, 0.95));
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.whatsapp-float-premium__tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent rgba(14, 61, 111, 0.95);
}

.whatsapp-float-premium:hover .whatsapp-float-premium__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Animaciones WhatsApp Premium */
@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 
      0 10px 40px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 
      0 10px 40px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes whatsapp-pulse-ring {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

/* Responsive WhatsApp Premium */
@media (max-width: 768px) {
  .whatsapp-float-premium {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float-premium__icon svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float-premium__tooltip {
    display: none;
  }
}

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

@media (max-width: 960px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .container--split,
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .benefits-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .benefits-main {
    position: relative;
    top: 0;
  }

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

@media (max-width: 768px) {
  .header__inner {
    padding-inline: 0.25rem;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__list {
    position: absolute;
    right: 0;
    top: 110%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(4, 10, 22, 0.98);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 210px;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-med), transform var(--transition-med), visibility var(--transition-med);
  }

  .nav__list--open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .hero__content h1 {
    font-size: 1.9rem;
  }

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

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

  .services-header h2,
  .benefits-intro h2 {
    font-size: 1.75rem;
  }

  .cta-premium {
    padding: 3rem 2rem;
  }

  .cta-premium h2 {
    font-size: 1.75rem;
  }

  .footer-premium__main {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

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

  .footer-premium__bottom {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .section {
    padding-block: 3.2rem;
  }

  .hero {
    padding-block: 3rem;
  }

  .container {
    padding-inline: 1rem;
  }

  .cta-premium {
    padding: 2.5rem 1.5rem;
  }

  .cta-premium h2 {
    font-size: 1.5rem;
  }

  .cta-premium__actions {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-premium__nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

/* ===============================================
   NOSOTROS - HERO PREMIUM
   =============================================== */

.about-hero {
  position: relative;
  padding: 8rem 0 5rem;
  background: linear-gradient(180deg, rgba(14, 61, 111, 0.15) 0%, transparent 100%);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F8B501;
  text-transform: uppercase;
}

.about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.about-hero__lead strong {
  color: #F8B501;
  font-weight: 600;
}

/* ===============================================
   NOSOTROS - HISTORIA PREMIUM
   =============================================== */

.section--about-story {
  padding: 5rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F8B501;
  text-transform: uppercase;
}

.about-story__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  color: #ffffff;
}

.about-story__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.about-story__content p strong {
  color: #F8B501;
  font-weight: 600;
}

.about-story__highlight {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-story__highlight h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: #ffffff;
}

.about-story__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-story__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.about-story__list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #F8B501;
  margin-top: 0.1rem;
}

/* ===============================================
   NOSOTROS - MISIÓN, VISIÓN Y VALORES
   =============================================== */

.section--about-mvv {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 61, 111, 0.1) 100%);
}

.about-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.about-section-header__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.15), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #F8B501;
  text-transform: uppercase;
}

.about-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-mvv-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.about-mvv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(248, 181, 1, 0.15);
}

.about-mvv-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.2), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  color: #F8B501;
  transition: all 0.3s ease;
}

.about-mvv-card:hover .about-mvv-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(248, 181, 1, 0.3);
}

.about-mvv-card__icon svg {
  width: 40px;
  height: 40px;
}

.about-mvv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
}

.about-mvv-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.about-mvv-card p strong {
  color: #F8B501;
  font-weight: 600;
}

.about-mvv-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-mvv-card__list li {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.5rem;
  position: relative;
}

.about-mvv-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F8B501;
  font-size: 1.5rem;
  line-height: 1;
}

/* ===============================================
   NOSOTROS - DIFERENCIALES
   =============================================== */

.section--about-diff {
  padding: 5rem 0;
}

.about-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-diff-card {
  position: relative;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.about-diff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F8B501, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-diff-card:hover::before {
  opacity: 1;
}

.about-diff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(248, 181, 1, 0.15);
}

.about-diff-card__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(248, 181, 1, 0.1);
  line-height: 1;
}

.about-diff-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 181, 1, 0.2), rgba(248, 181, 1, 0.05));
  border: 1px solid rgba(248, 181, 1, 0.3);
  color: #F8B501;
  transition: all 0.3s ease;
}

.about-diff-card:hover .about-diff-card__icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(248, 181, 1, 0.3);
}

.about-diff-card__icon svg {
  width: 32px;
  height: 32px;
}

.about-diff-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #ffffff;
}

.about-diff-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.about-diff-card p strong {
  color: #F8B501;
  font-weight: 600;
}

/* ===============================================
   NOSOTROS - PROCESO
   =============================================== */

.section--about-process {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(14, 61, 111, 0.1) 0%, transparent 100%);
}

.about-process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-process-step {
  position: relative;
  padding: 2.5rem 2rem 2.5rem 6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.25) 0%, rgba(14, 61, 111, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-process-step:hover {
  transform: translateX(8px);
  border-color: rgba(248, 181, 1, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(248, 181, 1, 0.15);
}

.about-process-step__number {
  position: absolute;
  left: 2rem;
  top: 2.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #F8B501, #E58A00);
  color: #050B16;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(248, 181, 1, 0.4);
}

.about-process-step__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

.about-process-step__content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ===============================================
   NOSOTROS - CTA
   =============================================== */

.section--about-cta {
  padding: 5rem 0;
}

.about-cta-card {
  position: relative;
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(14, 61, 111, 0.4) 0%, rgba(14, 61, 111, 0.15) 100%);
  border: 1px solid rgba(248, 181, 1, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  overflow: hidden;
}

.about-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(248, 181, 1, 0.15) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.about-cta-card__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.about-cta-card__content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #ffffff;
}

.about-cta-card__content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.about-cta-card__actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #F8B501, #E58A00);
  border: none;
  color: #050B16;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(248, 181, 1, 0.4);
}

.btn-premium-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(248, 181, 1, 0.5);
  gap: 0.75rem;
}

.btn-premium-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-premium-cta:hover svg {
  transform: translateX(3px);
}

.btn-premium-outline-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-outline-alt:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Nosotros */
@media (max-width: 960px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

@media (max-width: 768px) {
  .about-hero {
    padding: 5rem 0 3rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-section-header h2 {
    font-size: 2rem;
  }

  .about-cta-card {
    padding: 3rem 2rem;
  }

  .about-cta-card__content h2 {
    font-size: 1.75rem;
  }

  .about-cta-card__actions {
    flex-direction: column;
    gap: 1rem;
  }
}


