/* styles.css */

/* ===== VARIABLES ===== */
:root {
    /* Colores corporativos */
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #D4A800;
    --black: #000000;
    --black-soft: #111111;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    
    /* Grises */
    --grey-light: #F5F5F5;
    --grey: #A0A0A0;
    --grey-dark: #666666;
    
    /* Texto */
    --white: #FFFFFF;
    --white-dim: rgba(255, 255, 255, 0.85);
    
    /* Tipografía única - Inter */
    --font-primary: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 15px rgba(255, 215, 0, 0.3);
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mejora accesibilidad con focus-visible */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* Soporte para usuarios que prefieren reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TIPOGRAFÍA UNIFICADA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white-dim);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.25rem 1rem;
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white-dim);
}

.highlight {
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--gold);
    margin-left: 0.1rem;
}

.logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-dim);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hamburger:hover {
    opacity: 0.8;
}

.hamburger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 1px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
    background-image: url('fondo.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* Eliminado background-attachment: fixed por problemas de rendimiento en móviles */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    min-width: 80px;
    text-align: right;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.stat-suffix {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== TRUST BANNER ===== */
.trust-banner {
    padding: 1.5rem 0;
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-logos span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey);
    transition: var(--transition);
    position: relative;
}

.trust-logos span:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== PROBLEM SECTION ===== */
.problem {
    padding: 80px 0;
    background: var(--black);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-text {
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white-dim);
}

.problem-list li i {
    color: #ff4444;
    font-size: 1rem;
    width: 20px;
}

.problem-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--black-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--grey);
}

/* ===== SOLUTION SECTION ===== */
.solution {
    padding: 80px 0;
    background: var(--black-soft);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-item {
    text-align: center;
    padding: 2rem;
    background: var(--black-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.solution-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
}

.solution-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.solution-item p {
    font-size: 0.9rem;
    color: var(--grey);
}

/* ===== SERVICES NAVIGATION ===== */
.services-nav {
    padding: 60px 0;
    background: var(--black);
}

.services-nav .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.services-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.group-header {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.group-header h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 1.5rem 1rem;
    background: var(--black-card);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.nav-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.nav-card i {
    font-size: 1.8rem;
    color: var(--gold);
}

.nav-card span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* ===== PLANS SECTION ===== */
.plans-section {
    padding: 100px 0;
    background: var(--black-soft);
}

.plans-section:nth-child(even) {
    background: var(--black);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: var(--black-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular {
    border: 1px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.plan-tagline {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 1rem;
}

.plan-price {
    margin-top: 1rem;
    background: rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.1);
}

.plan-price .currency {
    font-size: 1rem;
    color: var(--grey);
    vertical-align: super;
}

.plan-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.85rem;
    color: var(--grey);
}

.plan-features,
.plan-excludes {
    margin-bottom: 1.5rem;
}

.plan-features h4,
.plan-excludes h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-features ul,
.plan-excludes ul {
    list-style: none;
}

.plan-features li,
.plan-excludes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--white-dim);
}

.plan-features li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 2px;
}

.plan-excludes li i {
    color: #ff4444;
}

.plan-footer {
    margin-top: auto;
}

.plan-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--grey);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.plan-delivery i {
    color: var(--gold);
}

.plan-btn {
    width: 100%;
}

.social-plans .plan-card {
    min-width: 280px;
}

/* ===== ADDITIONAL SERVICES ===== */
.additional-services {
    padding: 80px 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.25rem;
    background: var(--black-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    color: var(--gold);
    font-size: 1.2rem;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.service-price {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.services-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 2rem;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 80px 0;
    background: var(--black-soft);
}

.process-steps {
    max-width: 800px;
    margin: 40px auto 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 1.5rem;
    background: var(--black-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 8px;
    color: var(--black);
    font-weight: 700;
    font-size: 1.1rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--grey);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.contact-details {
    margin: 2rem 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--black-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.2);
}

.contact-detail i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    color: var(--gold);
    font-size: 1.1rem;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
    font-size: 0.95rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-industries {
    padding: 1.5rem;
    background: var(--black-card);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.05);
}

.contact-industries h4 {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 1rem;
    font-weight: 500;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tags span {
    padding: 0.4rem 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--white-dim);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.industry-tags span:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--black-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    color: var(--white);
}

.form-group select option {
    background: var(--black);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 80px 0;
    background: var(--black-soft);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    height: 180px;
    margin-bottom: 1rem;
}

.footer-brand .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-card);
    border-radius: 8px;
    color: var(--grey);
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--grey);
}

.footer-logo {
    display: inline-block;
    height: 24px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin: 0 4px;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s ease infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification-success i {
    color: #4CAF50;
}

.notification-error i {
    color: #f44336;
}

/* ===== TESTIMONIOS SECTION ===== */
.testimonios {
    padding: 100px 0;
    background: var(--black);
    position: relative;
}

.carrusel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.carrusel-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.testimonios-carrusel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

.testimonio-card {
    flex: 0 0 100%;
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonio-card.active::before {
    opacity: 1;
}

.testimonio-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonio-stars i {
    color: var(--gold);
}

.testimonio-text {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white-dim);
    margin: 0 0 20px 0;
    font-style: italic;
    border-left: 3px solid rgba(255, 215, 0, 0.2);
    padding-left: 20px;
}

.testimonio-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonio-author strong {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.autor-empresa {
    color: var(--grey);
    font-size: 0.85rem;
    font-style: italic;
}

/* Botones del Carrusel */
.carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 1.2rem;
}

.carrusel-btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.carrusel-prev {
    left: 0;
}

.carrusel-next {
    right: 0;
}

/* Bullets de Navegación */
.carrusel-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.bullet:hover {
    background: rgba(255, 215, 0, 0.4);
}

.bullet.active {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Reseñas Cortas */
.resenas-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
}

.resenas-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.resenas-carrusel-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 60px;
}

.resenas-carrusel-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.resenas-carrusel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.resena-card {
    flex: 0 0 100%;
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.resena-card.active {
    border-color: rgba(255, 215, 0, 0.3);
}

.resena-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.resena-stars i {
    color: var(--gold);
}

.resena-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--white-dim);
    font-style: italic;
}

/* Botones del Carrusel de Reseñas */
.resenas-carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 1rem;
}

.resenas-carrusel-btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.resenas-prev {
    left: 0;
}

.resenas-next {
    right: 0;
}

/* Bullets de Reseñas */
.resenas-bullets {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.resena-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.resena-bullet:hover {
    background: rgba(255, 215, 0, 0.4);
}

.resena-bullet.active {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* ===== TECNOLOGÍAS Y CERTIFICACIONES ===== */
.tech-certifications {
    padding: 100px 0;
    background: var(--black);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cert-category {
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
}

.cert-category:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.1);
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.cert-header i {
    font-size: 2rem;
    color: var(--gold);
}

.cert-header h3 {
    font-size: 1.2rem;
    color: var(--white);
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding: 10px 0;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.cert-list li:last-child {
    border-bottom: none;
}

.cert-list i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ===== POR QUÉ ELEGIR ===== */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02), rgba(255, 215, 0, 0.01));
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.why-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.02);
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.15);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.why-card.featured:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border-color: rgba(255, 215, 0, 0.5);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px;
}

.card-badge i {
    margin-right: 4px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.why-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 12px;
    margin-top: 24px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.card-intro {
    font-size: 0.95rem;
    color: var(--gold);
    margin: 12px 0 16px 0;
    font-weight: 500;
}

.card-bullets {
    list-style: none;
    text-align: left;
    margin-top: 16px;
}

.card-bullets li {
    padding: 10px 0;
    color: var(--white-dim);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.card-bullets li:last-child {
    border-bottom: none;
}

.card-bullets li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    min-width: 20px;
    flex-shrink: 0;
}

.card-bullets strong {
    color: var(--gold);
}

/* Comparativa Visual */
.comparison-section {
    margin-top: 80px;
    padding: 40px;
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow-x: auto;
}

.comparison-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: var(--white);
}

.comparison-table {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 215, 0, 0.02);
}

.comparison-row.header {
    background: rgba(255, 215, 0, 0.08);
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 8px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.comparison-col strong {
    color: var(--gold);
}

.comparison-col.highlight-col {
    color: var(--gold);
    font-weight: 500;
}

.comparison-col.highlight-col i {
    margin-right: 8px;
    color: var(--gold);
}

@media (max-width: 992px) {
    .why-card.featured {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card.featured {
        grid-column: auto;
    }
    
    .comparison-section {
        padding: 24px;
    }
    
    .comparison-title {
        font-size: 1.3rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px;
        display: flex;
        flex-direction: column;
    }
    
    .comparison-row.header {
        display: none;
    }
    
    .comparison-col {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .comparison-col:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gold);
        display: block;
        margin-bottom: 4px;
        font-size: 0.8rem;
    }
}

/* ===== ABOUT NARRATIVE ===== */
.about-narrative {
    padding: 100px 0;
    background: var(--black);
}

.narrative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.narrative-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.narrative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.narrative-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.1);
}

.narrative-card:hover::before {
    opacity: 1;
}

.narrative-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.narrative-card.featured:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.06));
    border-color: rgba(255, 215, 0, 0.5);
}

.narrative-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.narrative-header i {
    font-size: 2rem;
    color: var(--gold);
}

.narrative-header h3 {
    font-size: 1.4rem;
    color: var(--white);
}

.narrative-card.featured .narrative-header {
    justify-content: center;
    text-align: center;
    margin-top: 24px;
}

.narrative-card.featured .narrative-header h3 {
    font-size: 1.6rem;
}

.narrative-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.card-intro {
    font-size: 0.95rem;
    color: var(--gold);
    margin: 16px 0 24px 0;
    font-weight: 500;
    text-align: center;
}

.narrative-list {
    list-style: none;
    margin: 12px 0;
}

.narrative-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--white-dim);
}

.narrative-list i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Commitment Items */
.commitment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.commitment-bullet {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.commitment-bullet:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.commitment-icon {
    font-size: 2rem;
    color: var(--gold);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-content {
    flex: 1;
}

.commitment-content strong {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.commitment-content p {
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.6;
    margin: 0;
}

/* Frase de Posicionamiento de Marca */
.brand-tagline {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-top: 40px;
}

.brand-tagline p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.brand-tagline .highlight {
    color: var(--gold);
    font-weight: 600;
}
@media (max-width: 1200px) {
    .nav-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .carrusel-container {
        padding: 0 50px;
    }
    
    .resenas-carrusel-container {
        padding: 0 50px;
    }
}

@media (max-width: 992px) {
    .problem-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .nav-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-nav .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .selector-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .carrusel-container {
        padding: 0 20px;
    }
    
    .carrusel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carrusel-prev {
        left: -10px;
    }
    
    .carrusel-next {
        right: -10px;
    }
    
    .testimonio-card {
        padding: 24px;
    }
    
    .resenas-carrusel-container {
        padding: 0 20px;
    }
    
    .resenas-carrusel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .resenas-prev {
        left: -8px;
    }
    
    .resenas-next {
        right: -8px;
    }
    
    .resena-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .nav-cards {
        grid-template-columns: 1fr;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .trust-logos span {
        font-size: 0.8rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== PRICE SELECTOR SECTION ===== */
.price-selector-section {
    padding: 60px 0;
    background: var(--black);
    border-top: 1px solid var(--black-border);
}

.selector-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.selector-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.selector-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.service-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.selector-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.selector-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Plans visibility states */
.plans-section {
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
}

.plans-section.hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}