:root {
    /* Color Palette */
    --bg-primary: #FAF9F6;
    --bg-secondary: #F5F0EB;
    --bg-dark: #012245;
    --text-primary: #0a192f;
    --text-secondary: #4A5568;
    --text-light: #FDFDFD;

    /* Accents */
    --accent-primary: #e71d73;
    --accent-primary-hover: #c4155f;
    --accent-secondary: #025eb1;
    --accent-secondary-hover: #014787;
    --accent-gold: #C9A26A;
    --accent-gold-light: #e0c9a0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Sizes */
    --max-width: 1200px;
    --section-padding: 80px 20px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 40px rgba(2, 94, 177, 0.06);
    --shadow-hover: 0 20px 50px rgba(231, 29, 115, 0.12);
    --shadow-premium: 0 30px 60px -15px rgba(1, 34, 69, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Accessibility Focus Visible */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========================
   Typography Utilities 
   ======================== */
.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(120deg, var(--accent-primary) 0%, #ff6a9f 60%, var(--accent-gold) 100%);
    position: relative;
    display: inline-block;
}

.section-title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
    opacity: 0.4;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.microcopy {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.max-w-700 {
    max-width: 700px;
}

.border-radius-lg {
    border-radius: var(--border-radius-lg);
}

.shadow {
    box-shadow: var(--shadow-soft);
}

.shadow-lg {
    box-shadow: var(--shadow-premium);
}

/* ========================
   Buttons (Premium)
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #ff4d8e 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(231, 29, 115, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 29, 115, 0.4);
    filter: brightness(1.05);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-secondary);
    border: 2px solid var(--accent-secondary);
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-secondary), #0373d4);
    transition: width var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn-secondary:hover {
    color: white;
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 25px rgba(2, 94, 177, 0.25);
    transform: translateY(-3px);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-outline-nav {
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 8px 22px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
}

.btn-outline-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), #ff4d8e);
    transition: width var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn-outline-nav:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 29, 115, 0.25);
}

.btn-outline-nav:hover::before {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.link-arrow:hover {
    gap: 14px;
    color: var(--accent-primary-hover);
}

.link-arrow svg {
    transition: var(--transition);
}

/* ========================
   Tags & Badges (Premium)
   ======================== */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(231, 29, 115, 0.08), rgba(2, 94, 177, 0.08));
    color: var(--accent-secondary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(2, 94, 177, 0.1);
}

.badge-accent {
    background: linear-gradient(135deg, rgba(231, 29, 115, 0.1), rgba(201, 162, 106, 0.1));
    border-color: rgba(231, 29, 117, 0.532);
    color: var(--accent-primary);
}

/* ========================
   Layout Utilities
   ======================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark .section-title,
.section-dark .section-badge {
    color: var(--text-light);
}

.bg-soft {
    background-color: var(--bg-secondary);
}

/* ========================
   Header (Premium Glass)
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header.scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height var(--transition);
}

.header.scrolled .header-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--accent-secondary);
    /* Azul de marca */
    border: 1.5px solid rgba(2, 94, 177, 0.15);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-social-icon:hover {
    color: white;
    background-color: var(--accent-primary);
    /* Fuxia de marca */
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(231, 29, 115, 0.25);
}

.nav-social-icon svg {
    width: 16px;
    height: 16px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
    transition: var(--transition);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--accent-primary);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
    background-color: var(--accent-primary);
}

/* ========================
   Hero Section (Premium)
   ======================== */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(231, 29, 115, 0.06), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(2, 94, 177, 0.04), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 162, 106, 0.03), transparent 70%);
    position: relative;
    overflow: hidden;
}

/* Decorative subtle grain overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Decorative line art */
.hero::after {
    content: '';
    position: absolute;
    top: 60%;
    right: -5%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201, 162, 106, 0.12);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 106, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    color: var(--accent-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 540px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    align-items: center;
}

/* Hero Image - Premium Treatment */
.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
    padding: 10px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -8%;
    right: -8%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -8%;
    left: -8%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.hero-shape {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.6) 0%, rgba(245, 240, 235, 0.4) 100%);
    border: 1px solid rgba(201, 162, 106, 0.25);
    border-radius: 28px;
    z-index: 1;
    transform: rotate(2deg) scale(0.97);
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.6),
        0 20px 50px rgba(0, 0, 0, 0.04);
}

.hero-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px -20px rgba(1, 34, 69, 0.2);
    width: 100%;
    height: auto;
    display: block;
    animation: floating 7s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 6px solid rgba(255, 255, 255, 0.95);
    object-fit: cover;
    object-position: center 20%;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ========================
   Authority Strip (Premium)
   ======================== */
.authority-strip {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(245, 240, 235, 0.5) 100%);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(201, 162, 106, 0.15);
    border-bottom: 1px solid rgba(201, 162, 106, 0.15);
    position: relative;
}

.authority-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.authority-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.authority-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    opacity: 0.9;
}

.authority-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(201, 162, 106, 0.4), transparent);
}

/* ========================
   Problem Section (Premium Dark)
   ======================== */
.problem-section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--bg-dark) 0%, #01315f 50%, #012245 100%);
}

/* Decorative circle */
.problem-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(231, 29, 115, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 162, 106, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.problem-section .section-badge {
    background: rgb(231, 29, 117);
    border-color: rgba(231, 29, 115, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.problem-content {
    max-width: 750px;
    margin-top: 2rem;
}

.problem-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.problem-content strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ========================
   Transformation Section (Premium)
   ======================== */
.transformation-section {
    padding: 120px 20px;
    background: var(--bg-primary);
    position: relative;
}

/* Decorative accent line */
.transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
    border-radius: 2px;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Transformation Image — Premium Treatment */
.transformation-image {
    position: relative;
    padding: 12px;
    perspective: 800px;
}

/* Decorative glass shape (rotación opuesta al hero: -2deg vs hero +2deg) */
.transformation-image-shape {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(200deg, rgba(255, 255, 255, 0.55) 0%, rgba(245, 240, 235, 0.35) 100%);
    border: 1px solid rgba(201, 162, 106, 0.22);
    border-radius: 28px;
    z-index: 0;
    transform: rotate(-2deg) scale(0.97);
    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

/* Glow dorado — arriba derecha */
.transformation-image::before {
    content: '';
    position: absolute;
    top: -6%;
    right: -6%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.22;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* Glow magenta — abajo izquierda (posición inversa al hero) */
.transformation-image::after {
    content: '';
    position: absolute;
    bottom: -6%;
    left: -6%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.transformation-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 1;
    border: 5px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 25px 55px -15px rgba(1, 34, 69, 0.18);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: imgBreathe 8s ease-in-out infinite;
}

/* Breathing: sombra que alterna entre azul y magenta + sutil elevación */
@keyframes imgBreathe {

    0%,
    100% {
        box-shadow: 0 25px 55px -15px rgba(1, 34, 69, 0.18);
        transform: translateY(0px);
    }

    50% {
        box-shadow: 0 30px 60px -10px rgba(231, 29, 115, 0.14);
        transform: translateY(-8px);
    }
}

.transformation-image:hover img {
    transform: scale(1.02) rotate(-0.5deg);
    box-shadow: 0 35px 65px -15px rgba(231, 29, 115, 0.2);
    animation-play-state: paused;
}

.transformation-text .section-title {
    font-size: 2.5rem;
}

.benefits-list {
    margin-top: 2.5rem;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 20px;
    background: transparent;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.benefits-list li:hover {
    background: linear-gradient(90deg, rgba(231, 29, 115, 0.04) 0%, transparent 100%);
    border-left-color: var(--accent-primary);
    transform: translateX(6px);
}

.check-icon {
    color: var(--accent-primary);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(231, 29, 115, 0.08);
    padding: 4px;
    border-radius: 50%;
}

.benefits-list li:hover .check-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(231, 29, 115, 0.3);
}

.benefits-list li span {
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.benefits-list li:hover span {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================
   Method Section (Premium Cards)
   ======================== */
.method-section {
    padding: 120px 20px;
    position: relative;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.method-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Gradient top border */
.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(201, 162, 106, 0.15);
}

.method-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-secondary), #0373d4);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(2, 94, 177, 0.2);
}

.method-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.method-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================
   Lead Magnet (Premium)
   ======================== */
.lead-magnet-section {
    padding: 120px 20px;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(231, 29, 115, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(2, 94, 177, 0.03) 0%, transparent 40%);
    overflow: hidden;
}

.lead-magnet-card {
    background: white;
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 40px 100px -20px rgba(1, 34, 69, 0.12);
}

.lead-magnet-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-primary);
    filter: blur(120px);
    opacity: 0.05;
    top: -50px;
    right: -50px;
    z-index: 0;
}

/* Decorative gradient line */
.lead-magnet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
    z-index: 1;
}

.lm-content {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.lm-tag {
    background: linear-gradient(135deg, rgba(231, 29, 115, 0.1), rgba(201, 162, 106, 0.1));
    color: var(--accent-primary);
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    border: 1px solid rgba(231, 29, 115, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: lmTagFloat 3s ease-in-out infinite;
}

@keyframes lmTagFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.lm-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.lm-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.lm-image {
    background: linear-gradient(135deg, var(--bg-secondary), rgba(201, 162, 106, 0.1));
    padding: 0;
    position: relative;
    overflow: hidden;
}

.lm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lm-image:hover img {
    transform: scale(1.03);
}

/* ========================
   Mentoring Section (Premium)
   ======================== */
.mentoring-section {
    background:
        linear-gradient(180deg, #001a3a 0%, var(--bg-dark) 50%, #01315f 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.mentoring-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid rgba(201, 162, 106, 0.05);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: inset 0 0 50px rgba(201, 162, 106, 0.02);
}

.mentoring-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(231, 29, 115, 0.05);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 80px rgba(231, 29, 115, 0.04);
}

.mentoring-section .section-title {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.subtitle-gold {
    color: var(--accent-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.mentoring-section p {
    position: relative;
    z-index: 1;
}

/* ========================
   Testimonials Marquee (Premium)
   ======================== */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.marquee-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 20px 0;
    margin-top: 4rem;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.track-left {
    animation: scrollLeft 45s linear infinite;
}

.track-right {
    animation: scrollRight 45s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.testi-img {
    height: 380px;
    width: auto;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(201, 162, 106, 0.15);
    margin-right: 2rem;
    transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
    cursor: pointer;
    background: white;
    padding: 2px;
}

.testi-img:hover {
    transform: scale(1.03) translateY(-5px) rotate(1deg);
    box-shadow: var(--shadow-hover);
    z-index: 10;
    position: relative;
}

@keyframes scrollLeft {
    to {
        transform: translateX(calc(-50% - 1rem));
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(calc(-50% - 1rem));
    }

    to {
        transform: translateX(0);
    }
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20vw;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

/* ========================
   About Section (Premium)
   ======================== */
.about-section {
    padding: 120px 20px;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.about-text p strong {
    color: var(--text-primary);
}

.signature {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-style: italic;
    color: var(--accent-secondary);
    margin: 2rem 0;
    position: relative;
}

.signature::before {
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.about-image {
    position: relative;
}

.about-image img {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 162, 106, 0.4);
    border-radius: var(--border-radius-lg);
    z-index: 0;
    transition: var(--transition);
}

.about-image:hover::before {
    bottom: -12px;
    left: -12px;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--accent-primary);
    border-right: 2px solid var(--accent-primary);
    border-radius: 0 var(--border-radius-lg) 0 0;
    z-index: 0;
    opacity: 0.5;
}

/* ========================
   Footer (Premium Dark)
   ======================== */
.footer {
    padding: 80px 20px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #001a3a 100%);
}

/* Decorative accent line at top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold), var(--accent-secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
    border-color: var(--accent-primary);
    background: rgba(231, 29, 115, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 29, 115, 0.3);
}

.footer h4 {
    color: var(--accent-gold);
    margin-bottom: 1.8rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.footer ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
}

.footer ul li {
    margin-bottom: 0.85rem;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.footer ul a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.footer ul a:hover {
    color: white;
    padding-left: 0;
}

.footer ul a:hover::before {
    width: 100%;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.btn-outline-light.btn-whatsapp-footer {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-light.btn-whatsapp-footer:hover {
    background: #ffffff;
    color: var(--bg-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-outline-light.btn-whatsapp-footer svg {
    color: #25D366;
    /* WhatsApp Green */
    transition: transform 0.3s ease;
}

.btn-outline-light.btn-whatsapp-footer:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 1rem;
    letter-spacing: 0.02em;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(231, 29, 115, 0.4), var(--accent-gold), rgba(231, 29, 115, 0.4), transparent);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.35);
    margin-left: 1.5rem;
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================
   WhatsApp Float (Premium)
   ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    transition: var(--transition);
    animation: wppPulse 2s infinite;
}

@keyframes wppPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    animation-play-state: paused;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ========================
   Animations
   ======================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

/* ========================
   Selection Style
   ======================== */
::selection {
    background: rgba(231, 29, 115, 0.15);
    color: var(--text-primary);
}

/* ========================
   Scrollbar (Premium)
   ======================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--accent-primary-hover), var(--accent-secondary-hover));
}

/* ========================
   Problem Grid & Pain Pills
   ======================== */
.problem-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.problem-grid .problem-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.problem-grid .problem-content strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.pain-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.pain-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(231, 29, 115, 0.1);
    border: 1px solid rgba(231, 29, 115, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.pain-pill svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    opacity: 0.8;
}

.pain-pill:hover {
    background: rgba(231, 29, 115, 0.18);
    transform: translateX(6px);
    border-color: rgba(231, 29, 115, 0.35);
}

/* ========================
   Method Card Variants
   ======================== */
.method-card-1 .card-icon {
    background: linear-gradient(135deg, var(--accent-secondary), #0373d4);
    box-shadow: 0 8px 20px rgba(2, 94, 177, 0.25);
}

.method-card-2 .card-icon {
    background: linear-gradient(135deg, var(--accent-primary), #ff6a9f);
    box-shadow: 0 8px 20px rgba(231, 29, 115, 0.25);
}

.method-card-3 .card-icon {
    background: linear-gradient(135deg, var(--accent-gold), #d4a843);
    box-shadow: 0 8px 20px rgba(201, 162, 106, 0.3);
}

.method-card-1:hover {
    border-color: rgba(2, 94, 177, 0.2);
}

.method-card-2:hover {
    border-color: rgba(231, 29, 115, 0.2);
}

.method-card-3:hover {
    border-color: rgba(201, 162, 106, 0.25);
}

.method-card-1::before {
    background: linear-gradient(90deg, var(--accent-secondary), #0373d4);
}

.method-card-2::before {
    background: linear-gradient(90deg, var(--accent-primary), #ff6a9f);
}

.method-card-3::before {
    background: linear-gradient(90deg, var(--accent-gold), #d4a843);
}

/* ========================
   Mentoring Features
   ======================== */
.mentoring-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem auto 3.5rem;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.mentoring-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all var(--transition-slow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.mentoring-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 162, 106, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 0;
}

.mentoring-feature svg {
    color: var(--accent-gold);
    transition: transform var(--transition);
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
}

.mentoring-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
}

.mentoring-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 106, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 162, 106, 0.1);
}

.mentoring-feature:hover::before {
    opacity: 1;
}

.mentoring-feature:hover svg {
    transform: scale(1.15) translateY(-3px);
}

.mentoring-section .subtitle-gold {
    color: var(--accent-gold);
}

/* ========================
   Testimonials Section
   ======================== */
.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(231, 29, 115, 0.07);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ========================
   Responsive Design
   ======================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-container,
    .transformation-grid,
    .about-grid {
        gap: 3rem;
    }

    .method-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .lead-magnet-card {
        grid-template-columns: 1fr;
    }

    .lm-content {
        padding: 3rem 2.5rem;
    }

    .lm-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FAF9F6;
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: none;
    }

    .main-nav.active {
        left: 0;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-links a {
        font-size: 1.15rem;
    }

    .nav-links a::after {
        bottom: -4px;
    }

    .btn-outline-nav {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-container,
    .transformation-grid,
    .about-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
        max-width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
        max-width: 100%;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .hero-image-wrapper img {
        max-width: 380px;
        margin: 0 auto;
    }

    .chip {
        margin: 0 auto 1.5rem;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .microcopy {
        text-align: center;
    }

    .authority-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .authority-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(201, 162, 106, 0.4), transparent);
    }

    .section-title {
        font-size: 2rem;
    }

    .transformation-section::before {
        width: 50px;
    }

    .method-cards {
        grid-template-columns: 1fr;
    }

    .problem-section,
    .mentoring-section,
    .about-section,
    .transformation-section,
    .method-section,
    .lead-magnet-section {
        padding: 80px 20px;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        margin: 1rem auto 1.5rem;
        max-width: 100%;
        font-size: 0.95rem;
    }

    .footer-logo-link {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        height: 40px;
        margin: 0;
    }

    .social-links {
        justify-content: center;
        gap: 1.25rem;
    }

    .footer h4 {
        margin-bottom: 1.5rem;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    .footer ul {
        justify-content: center;
        column-gap: 2.5rem;
        max-width: 320px;
        margin: 0.5rem auto 0;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp-footer {
        width: auto;
        min-width: 250px;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 2.5rem;
    }

    .legal-links {
        margin-top: 0.5rem;
    }

    .legal-links a {
        margin: 0 0.75rem;
    }

    .transformation-image {
        padding: 8px;
    }

    .transformation-image::before {
        width: 120px;
        height: 120px;
        opacity: 0.15;
    }

    .transformation-image::after {
        width: 140px;
        height: 140px;
    }

    .transformation-image-shape {
        transform: rotate(-1.5deg) scale(0.98);
    }

    .about-image {
        margin-top: 2rem;
    }

    .about-image::after {
        display: none;
    }

    .about-image::before {
        bottom: -10px;
        left: -10px;
    }

    .mentoring-section .section-title {
        font-size: 2.25rem;
    }

    .lm-title {
        font-size: 1.85rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .lead-magnet-card {
        text-align: center;
        border-radius: 30px;
    }

    .lm-content {
        padding: 3.5rem 1.5rem;
        align-items: center;
    }

    .lm-tag {
        margin: 0 auto 1.5rem;
        display: inline-block;
        background: linear-gradient(135deg, rgba(231, 29, 115, 0.15), rgba(201, 162, 106, 0.1));
        padding: 10px 22px;
        box-shadow: 0 4px 15px rgba(231, 29, 115, 0.08);
    }

    .lm-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .lm-image {
        min-height: 250px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .lm-image img {
        height: 100%;
        object-position: center;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 16px;
    }

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

    .testi-img {
        height: 250px;
        margin-right: 1.5rem;
    }

    .marquee-container {
        gap: 1.5rem;
    }

    .pain-pills {
        grid-template-columns: 1fr;
    }

    .mentoring-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }

    .hero-shape {
        transform: rotate(1deg) scale(0.98);
    }

    .transformation-image::before,
    .transformation-image::after {
        display: none;
    }

    .transformation-image-shape {
        transform: rotate(-1deg) scale(0.98);
    }

    .transformation-image {
        padding: 5px;
    }

    .testi-img {
        height: 200px;
    }

    .mentoring-section::before,
    .mentoring-section::after {
        display: none;
    }
}

/* ========================
   Curso Gratis Layouts
   ======================== */
.course-hero {
    background: radial-gradient(ellipse at top, rgba(201, 162, 106, 0.12), transparent 70%);
}

.videos-section {
    padding: 140px 20px 100px;
    /* Más espacio para respirar */
    /* Eliminado el degradado brusco blanco>azul que generaba manchas grises */
    background: linear-gradient(180deg, var(--bg-dark) 0%, #01152d 100%);
}

.videos-section .section-title {
    color: var(--text-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 106, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(201, 162, 106, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.video-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.video-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.video-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsivo para Videos */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .course-hero {
        padding-top: 140px;
    }
}

/* Video Facade Pattern */
.video-facade {
    cursor: pointer;
}

.video-facade>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(1, 34, 69, 0.2), rgba(1, 34, 69, 0.5));
    transition: background 0.4s ease;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 65px;
    height: 65px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(231, 29, 115, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.play-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 5px;
    /* Optically center play triangle */
}

/* Hover effects for video thumbnail */
.video-card:hover .video-facade>img {
    transform: scale(1.05);
}

.video-card:hover .play-overlay {
    background: linear-gradient(to bottom, transparent, rgba(1, 34, 69, 0.4));
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ff4d8e;
    box-shadow: 0 15px 30px rgba(231, 29, 115, 0.6);
}

/* Upsell Banner (Curso -> Mentoring) */
.upsell-container {
    background: linear-gradient(135deg, rgba(1, 34, 69, 0.6) 0%, rgba(201, 162, 106, 0.15) 100%);
    border: 1px solid rgba(201, 162, 106, 0.4);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 800px;
    margin: 5rem auto 0;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(201, 162, 106, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.upsell-container:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(201, 162, 106, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 162, 106, 0.2), inset 0 0 30px rgba(201, 162, 106, 0.15);
}

.upsell-container::before,
.upsell-container::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(30px);
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.upsell-container:hover::before {
    transform: scale(1.3) translate(20px, 20px);
    opacity: 0.3;
}

.upsell-container:hover::after {
    transform: scale(1.3) translate(-20px, -20px);
    opacity: 0.3;
}

.upsell-container::before {
    top: -80px;
    left: -80px;
}

.upsell-container::after {
    bottom: -80px;
    right: -80px;
}

.upsell-container .badge-accent {
    background: rgba(201, 162, 106, 0.1) !important;
    border-color: rgba(201, 162, 106, 0.4) !important;
    color: var(--accent-gold) !important;
    box-shadow: 0 0 15px rgba(201, 162, 106, 0.15);
}

.upsell-title {
    font-size: 2.2rem;
    color: var(--accent-gold-light);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.upsell-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    /* Mucho más respiro entre texto y botón */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .upsell-container {
        padding: 2.5rem 1.5rem;
        margin: 4rem 15px 0;
        /* Previene colisión lateral en móviles estrechos */
        border-radius: 16px;
    }

    .upsell-title {
        font-size: 1.6rem;
    }

    .upsell-desc {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }

    .upsell-container .btn {
        width: 100%;
        /* El botón se ajusta de punta a punta */
        white-space: normal;
        /* Evita que el texto desborde su contenedor */
        padding: 15px 10px;
        /* Ajuste limpio */
        font-size: 0.95rem;
        /* Minimante más pequeño para encajar limpio */
    }
}

/* ========================
   Página de Servicios
   ======================== */
.services-hero {
    background: radial-gradient(ellipse at center, rgba(201, 162, 106, 0.12), transparent 70%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 3.5rem 2.8rem;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 15px 35px rgba(1, 34, 69, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(201, 162, 106, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(231, 29, 115, 0.15);
    background: #ffffff;
    box-shadow: 0 35px 80px -15px rgba(1, 34, 69, 0.12);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(231, 29, 115, 0.08) 0%, rgba(231, 29, 115, 0.02) 100%);
    color: var(--accent-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(231, 29, 115, 0.1);
    position: relative;
}

.service-icon-wrapper svg {
    width: 30px;
    height: 30px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-primary);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(231, 29, 115, 0.25);
    border-color: transparent;
}

.service-title {
    font-size: 1.7rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    font-weight: 700;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link .arrow {
    margin-left: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1.2rem;
}

.service-link:hover {
    color: var(--accent-gold);
}

.service-link:hover .arrow {
    transform: translateX(8px) scale(1.2);
}

/* Background decorator for services section */
.services-section-wrapper {
    position: relative;
    background: linear-gradient(180deg, #FAF9F6 0%, #ffffff 100%);
    overflow: hidden;
    padding-bottom: 120px;
}

.services-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(231, 29, 115, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.services-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(201, 162, 106, 0.04) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(201, 162, 106, 0.08);
    transition: all 0.5s ease;
    user-select: none;
    z-index: 0;
}

.service-card:hover .service-number {
    color: rgba(201, 162, 106, 0.18);
    transform: scale(1.1) translateY(-5px);
}

/* Responsivo para Servicios */
@media (max-width: 900px) {
    .services-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2.5rem 1.8rem;
    }
}

/* ========================
   Página Sobre Mí
   ======================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 1rem;
    background: #ffffff;
    z-index: 1;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 60%);
    opacity: 0.15;
    z-index: -1;
}

.about-img {
    border-radius: 12px;
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-image-decorator {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========================
   Página Contacto
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-wrap {
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item.border-0 {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(231, 29, 115, 0.08);
    /* accent primary pink */
    color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.contact-item-text a {
    font-size: 0.95rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item-text a:hover {
    color: var(--accent-gold);
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
}

.contact-social-icons a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-social-icons a:hover {
    color: var(--accent-primary);
}

/* El Formulario de Contacto (floating card) */
.contact-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 60%);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.custom-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #FAFAFA;
    border: 1px solid rgba(1, 34, 69, 0.08);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(1, 34, 69, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(201, 162, 106, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 3rem;
}

.select-arrow {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-wrap {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .contact-form-wrap {
        padding: 2.2rem 1.5rem;
    }

    .custom-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ========================
   Premium Hero Card (Sobre Mí)
   ======================== */
.premium-hero-wrapper {
    padding: 180px 20px 80px;
    background-color: var(--bg-primary);
    /* Se integra con el header */
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
    /* Elimina cualquier recorte indeseado de la foto */
}

.premium-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 106, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.premium-hero-card {
    background: linear-gradient(135deg, rgba(1, 34, 69, 0.95) 0%, rgba(201, 162, 106, 0.15) 100%);
    background-color: var(--bg-dark);
    border: 1px solid rgba(201, 162, 106, 0.4);
    border-radius: 20px;
    width: 100%;
    max-width: 1050px;
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 420px;
    box-shadow: 0 40px 80px rgba(1, 34, 69, 0.25), inset 0 0 30px rgba(201, 162, 106, 0.1);
    align-items: center;
    overflow: visible;
}

/* Luces doradas decorativas interiores */
.premium-hero-card::before,
.premium-hero-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(40px);
    pointer-events: none;
}

.premium-hero-card::before {
    top: -100px;
    left: -100px;
}

.premium-hero-card::after {
    bottom: -100px;
    right: -100px;
}

.ph-image-col {
    position: relative;
    height: 100%;
    width: 100%;
}

.ph-image-col img {
    position: absolute;
    bottom: -1px;
    left: 45%;
    transform: translateX(-50%);
    width: auto;
    max-width: 150%;
    max-height: 125%;
    /* Limitamos altura para que no choque arriba */
    z-index: 2;
    filter: drop-shadow(15px 0 35px rgba(0, 0, 0, 0.5));
}

.ph-text-col {
    padding: 3rem 4rem 3rem 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.ph-badge {
    display: inline-block;
    background: rgba(201, 162, 106, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(201, 162, 106, 0.4);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(201, 162, 106, 0.15);
}

.ph-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-gold-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.ph-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

/* --- Contadores de prueba social --- */
.ph-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.ph-stat {
    display: flex;
    flex-direction: column;
}

.ph-stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
}

.ph-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.ph-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 162, 106, 0.35);
}

@media (max-width: 992px) {
    .premium-hero-wrapper {
        padding-top: 250px;
        /* Mas espacio alto en móvil */
    }

    .premium-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 180px;
        min-height: auto;
    }

    .ph-image-col {
        position: static;
    }

    .ph-image-col img {
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: -150px;
        width: 85%;
        max-width: 320px;
        max-height: none;
        /* Esfumado elegante del corte recto inferior */
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 98%);
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 98%);
    }

    .ph-text-col {
        padding: 2rem;
    }

    .ph-title {
        font-size: 2.8rem;
    }

    .ph-stats {
        justify-content: center;
        gap: 1rem;
    }

    .ph-stat-number {
        font-size: 1.4rem;
    }

    .ph-stat-label {
        font-size: 0.7rem;
    }
}

/* ========================
   Editorial Bio Section
   ======================== */
.editorial-section {
    background-color: var(--bg-primary);
    padding: 80px 0 100px;
    overflow: visible;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* --- Imagen con caja dorada desfasada --- */
.ed-image-wrap {
    position: relative;
    z-index: 2;
    padding-top: 40px;  /* Espacio para que la caja dorada respire arriba */
}

.ed-image-frame {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

/* La caja dorada detrás (desfasada) */
.ed-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-gold);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.5;
}

/* Brillo dorado sutil en esquina */
.ed-image-frame::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(201, 162, 106, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.ed-image-frame img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    z-index: 1;
}

/* --- Contenido texto --- */
.ed-content {
    padding: 0 2rem 3rem 3rem;
    position: relative;
    z-index: 1;
}

.ed-eyebrow {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.ed-title {
    font-family: var(--font-base);
    font-size: 5.5rem;
    font-weight: 200;
    line-height: 0.9;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.ed-lead {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.ed-lead strong {
    font-weight: 700;
}

.ed-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.15rem;
    line-height: 1.75;
}

.ed-text strong {
    color: var(--text-primary);
}

.ed-quote {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 106, 0.3);
    line-height: 1.5;
}

/* --- Tablet (≤992px) --- */
@media (max-width: 992px) {
    .editorial-section {
        padding: 60px 0 80px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 2rem;
    }

    .ed-image-wrap {
        display: flex;
        justify-content: center;
        padding-top: 0;
        margin-bottom: 2.5rem;
    }

    .ed-image-frame {
        max-width: 340px;
    }

    .ed-image-frame::before {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }

    .ed-content {
        padding: 0 1rem 2rem;
    }

    .ed-title {
        font-size: 4.5rem;
    }

    .ed-lead {
        font-size: 1.2rem;
    }
}

/* --- Celular (≤576px) --- */
@media (max-width: 576px) {
    .editorial-section {
        padding: 40px 0 60px;
    }

    .editorial-grid {
        padding: 0 1.2rem;
    }

    .ed-image-frame {
        max-width: 280px;
    }

    .ed-image-frame::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
        border-width: 1.5px;
    }

    .ed-image-frame::after {
        display: none;
    }

    .ed-content {
        padding: 0 0.5rem 1.5rem;
    }

    .ed-title {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }

    .ed-lead {
        font-size: 1.05rem;
    }

    .ed-text {
        font-size: 0.95rem;
    }

    .ed-quote {
        font-size: 1.1rem;
    }
}

/* ============================
   CONTACTO PAGE — Premium
   ============================ */

/* --- Hero Dark con glow dorado --- */
.ct-hero {
    background: linear-gradient(170deg, var(--bg-dark) 0%, #01152d 100%);
    padding: 190px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ct-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 106, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.ct-badge {
    display: inline-block;
    background: rgba(201, 162, 106, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(201, 162, 106, 0.35);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.ct-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.ct-hero-title em {
    color: var(--accent-gold-light);
    font-style: italic;
}

.ct-hero-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* --- Tarjetas de contacto rápido --- */
.ct-cards-section {
    background-color: var(--bg-primary);
    padding: 80px 0 40px;
}

.ct-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ct-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ct-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(1, 34, 69, 0.12);
    border-color: rgba(201, 162, 106, 0.3);
}

.ct-card-featured {
    background: linear-gradient(135deg, var(--bg-dark), #012245);
    border: 1px solid rgba(201, 162, 106, 0.3);
}

.ct-card-featured .ct-card-title,
.ct-card-featured .ct-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.ct-card-featured .ct-card-link {
    color: var(--accent-gold);
}

.ct-card-featured .ct-card-icon {
    background: rgba(201, 162, 106, 0.15);
    color: var(--accent-gold);
}

.ct-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(1, 34, 69, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.ct-card-icon svg {
    width: 26px;
    height: 26px;
}

.ct-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ct-card-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.ct-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    letter-spacing: 0.3px;
}

/* --- Redes sociales fila --- */
.ct-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-social-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ct-social-icons {
    display: flex;
    gap: 0.75rem;
}

.ct-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(1, 34, 69, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ct-social-icons a:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 106, 0.3);
}

/* --- Formulario Premium --- */
.ct-form-section {
    background: var(--bg-primary);
    padding: 0 0 100px;
}

.ct-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 106, 0.2);
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 60px rgba(1, 34, 69, 0.08);
}

.ct-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ct-form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ct-form-sub {
    font-size: 1rem;
    color: var(--text-secondary);
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ct-form-group {
    margin-bottom: 1.25rem;
}

.ct-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ct-form-group input,
.ct-form-group textarea,
.ct-form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: var(--font-base);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fafafa;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus,
.ct-form-group select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 106, 0.15);
    background: #ffffff;
}

.ct-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-select-wrap {
    position: relative;
}

.ct-select-wrap select {
    padding-right: 2.5rem;
    cursor: pointer;
}

.ct-select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    color: var(--text-secondary);
}

.ct-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1.1rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-base);
    color: #ffffff;
    background: linear-gradient(135deg, var(--bg-dark), #012245);
    border: 1px solid rgba(201, 162, 106, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.ct-submit-btn:hover {
    background: linear-gradient(135deg, #012245, var(--bg-dark));
    box-shadow: 0 12px 30px rgba(1, 34, 69, 0.25);
    transform: translateY(-2px);
}

/* --- WhatsApp Submit Variant --- */
.ct-submit-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: 1px solid rgba(37, 211, 102, 0.4);
}

.ct-submit-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.ct-submit-whatsapp svg {
    flex-shrink: 0;
}

/* --- Estado "Enviando" --- */
.ct-btn-sending {
    pointer-events: none;
    opacity: 0.85;
}

/* --- Spinner --- */
@keyframes ct-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ct-spin {
    animation: ct-spin 1s linear infinite;
}

/* --- Mensaje de éxito --- */
.ct-form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #128c7e;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ct-form-success svg {
    flex-shrink: 0;
    color: #25d366;
}

.ct-success-animate {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Contacto --- */
@media (max-width: 992px) {
    .ct-hero {
        padding: 160px 20px 60px;
    }
    .ct-hero-title {
        font-size: 2.8rem;
    }
    .ct-cards-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .ct-hero-title {
        font-size: 2.2rem;
    }
    .ct-hero-sub {
        font-size: 1rem;
    }
    .ct-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
    .ct-form-row {
        grid-template-columns: 1fr;
    }
    .ct-social-row {
        flex-direction: column;
        gap: 0.75rem;
    }
}