/* ====================================================
   OPTION 5 — ULTRA-MODERN ARCHITECTURAL LUXURY
   High-contrast Pearl & Dark Sapphire, Glass Morphism,
   Interactive Tabbed Pillars, 3D Floating Photo Cards
==================================================== */

:root {
    --o5-dark: #070d19;
    --o5-navy: #0f1e36;
    --o5-pearl: #fafafc;
    --o5-card-bg: #ffffff;
    --o5-gold: #d4af37;
    --o5-gold-light: #f3e5ab;
    --o5-gold-dark: #9a7b1c;
    --o5-text-main: #111827;
    --o5-text-muted: #64748b;
    --o5-border: rgba(15, 30, 54, 0.08);
}

body {
    background: var(--o5-pearl) !important;
    color: var(--o5-text-main) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

::selection {
    background: var(--o5-navy);
    color: var(--o5-gold);
}

/* Font Utility Classes */
.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* Seamless Animations */
.reveal-o5 {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Layout Container */
.o5-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ====================================================
   NAVBAR — Floating Glass Capsule
==================================================== */
.nav5-wrapper {
    position: fixed;
    top: 1.25rem;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
}

.nav5 {
    width: 100%;
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 30, 54, 0.1);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(15, 30, 54, 0.05);
    transition: all 0.4s ease;
}

.nav5.scrolled {
    background: rgba(15, 30, 54, 0.95);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(7, 13, 25, 0.4);
}

.nav5-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav5-logo-icon {
    width: 32px;
    height: 36px;
    transition: transform 0.3s ease;
}

.nav5-brand:hover .nav5-logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.nav5-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--o5-navy);
    transition: color 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav5-brand-title .brand-global {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--o5-dark);
    background: linear-gradient(135deg,
            var(--o5-gold-light) 0%,
            var(--o5-gold) 100%);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    line-height: 1;
}

.nav5.scrolled .nav5-brand-title {
    color: #ffffff;
}

.nav5.scrolled .nav5-brand-title .brand-global {
    background: linear-gradient(135deg,
            var(--o5-gold-light) 0%,
            var(--o5-gold) 100%);
    color: var(--o5-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.nav5-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav5-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--o5-text-muted);
    text-decoration: none;
    padding: 0.45rem 0.85rem;
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle Glass Pill Backdrop on Hover */
.nav5-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 54, 0.05);
    border-radius: 100px;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

/* Glowing Gold Underline Indicator */
.nav5-links a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 18px;
    height: 2.5px;
    background: linear-gradient(90deg,
            var(--o5-gold-light) 0%,
            var(--o5-gold) 100%);
    border-radius: 10px;
    transform: translateX(-50%) scaleX(0);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
}

/* Icon Animation */
.nav5-links a svg {
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.3s ease;
}

.nav5-links a:hover {
    color: var(--o5-navy);
    transform: translateY(-2px);
}

.nav5-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav5-links a:hover::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav5-links a:hover svg {
    color: var(--o5-gold-dark);
    transform: translateY(-2px) scale(1.18);
}

/* Scrolled State Hover */
.nav5.scrolled .nav5-links a {
    color: rgba(255, 255, 255, 0.75);
}

.nav5.scrolled .nav5-links a::before {
    background: rgba(255, 255, 255, 0.1);
}

.nav5.scrolled .nav5-links a:hover {
    color: #ffffff;
}

.nav5.scrolled .nav5-links a:hover svg {
    color: var(--o5-gold-light);
}

/* ========== DROPDOWN SUBMENU ========== */
.nav5-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav5-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 290px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(15, 30, 54, 0.1);
    border-radius: 20px;
    padding: 0.75rem;
    box-shadow: 0 20px 40px rgba(15, 30, 54, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
}

.nav5.scrolled .dropdown-menu {
    background: rgba(15, 30, 54, 0.98);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(7, 13, 25, 0.5);
}

.nav5-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.dropdown-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(15, 30, 54, 0.05);
    color: var(--o5-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.nav5.scrolled .dropdown-item-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--o5-gold);
}

.dropdown-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--o5-navy);
    transition: color 0.25s ease;
}

.nav5.scrolled .dropdown-item-title {
    color: #ffffff;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: var(--o5-text-muted);
    line-height: 1.25;
}

.nav5.scrolled .dropdown-item-desc {
    color: rgba(255, 255, 255, 0.6);
}

.dropdown-item:hover {
    background: rgba(15, 30, 54, 0.05);
}

.nav5.scrolled .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--o5-gold-dark);
}

.nav5.scrolled .dropdown-item:hover .dropdown-item-title {
    color: var(--o5-gold-light);
}

.dropdown-item:hover .dropdown-item-icon {
    background: var(--o5-navy);
    color: var(--o5-gold);
}

.nav5.scrolled .dropdown-item:hover .dropdown-item-icon {
    background: var(--o5-gold);
    color: var(--o5-dark);
}

/* ========== LUXURY CTA BUTTON 'INGRESAR' ========== */
.nav5-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, #0b1d3a 0%, #070d19 100%);
    color: #f3e5ab !important;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    box-shadow:
        0 4px 18px rgba(7, 13, 25, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav5-cta svg {
    color: var(--o5-gold) !important;
    transition: all 0.3s ease;
}

.nav5-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.nav5-cta:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
    color: #0b1d3a !important;
    border-color: #f3e5ab;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.nav5-cta:hover svg {
    color: #0b1d3a !important;
}

.nav5-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.nav5.scrolled .nav5-cta {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 100%);
    color: #0b1d3a !important;
    border-color: #f3e5ab;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

.nav5.scrolled .nav5-cta svg {
    color: #0b1d3a !important;
}

.nav5.scrolled .nav5-cta:hover {
    background: #ffffff;
    color: var(--o5-navy) !important;
}

/* Mobile Toggle */
.nav5-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.nav5-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--o5-navy);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav5.scrolled .nav5-toggle span {
    background: #ffffff;
}

/* ====================================================
   HERO SECTION — Architectural Split with Interactive Card
==================================================== */
.hero5 {
    position: relative;
    padding-top: 9rem;
    padding-bottom: 6rem;
    background:
        radial-gradient(circle at 80% 20%,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 50%),
        radial-gradient(circle at 10% 80%,
            rgba(15, 30, 54, 0.05) 0%,
            transparent 60%);
    overflow: hidden;
}

.hero5-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero5-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    background: rgba(15, 30, 54, 0.05);
    border: 1px solid rgba(15, 30, 54, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--o5-navy);
    margin-bottom: 1.75rem;
}

.hero5-pill-dot {
    width: 8px;
    height: 8px;
    background: var(--o5-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--o5-gold);
}

.hero5-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.75rem, 5vw, 4.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--o5-navy);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.hero5-title span.accent-gold {
    background: linear-gradient(135deg,
            var(--o5-navy) 0%,
            var(--o5-gold-dark) 50%,
            var(--o5-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    display: inline-block;
    padding-right: 0.2em;
}

.hero5-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--o5-text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero5-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn5-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--o5-navy);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(15, 30, 54, 0.2);
}

.btn5-primary:hover {
    background: #1a3158;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 30, 54, 0.3);
}

.btn5-primary svg {
    transition: transform 0.3s ease;
}

.btn5-primary:hover svg {
    transform: translateX(4px);
}

/* ====================================================
   EYE-CATCHING STRIKING GOLD BUTTON (LUXURY GLOW & SHIMMER)
==================================================== */
.btn-gold-striking,
.btn5-primary-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.6rem;
    background: linear-gradient(135deg, #FFF0B8 0%, #E6C65C 25%, #D4AF37 50%, #B88E20 75%, #9A7210 100%);
    background-size: 200% 200%;
    color: #071710 !important;
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(255, 240, 184, 0.8);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45), 0 0 25px rgba(212, 175, 55, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    animation: goldGradientPulse 4s ease infinite;
}

@keyframes goldGradientPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-gold-striking::before,
.btn5-primary-gold::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.75) 50%,
            transparent 100%);
    transform: rotate(25deg);
    transition: all 0.7s ease;
    animation: goldShimmerSweep 3s infinite;
}

@keyframes goldShimmerSweep {
    0% {
        left: -75%;
    }

    40%,
    100% {
        left: 125%;
    }
}

.btn-gold-striking:hover,
.btn5-primary-gold:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.65), 0 0 40px rgba(255, 240, 184, 0.5), inset 0 1px 3px rgba(255, 255, 255, 1);
    color: #000000 !important;
}

.btn-gold-striking svg,
.btn5-primary-gold svg {
    transition: transform 0.3s ease;
    color: #071710 !important;
}

.btn-gold-striking:hover svg,
.btn5-primary-gold:hover svg {
    transform: translateX(5px);
}

.btn5-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: var(--o5-navy);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(15, 30, 54, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn5-secondary:hover {
    background: rgba(15, 30, 54, 0.03);
    border-color: var(--o5-navy);
    transform: translateY(-2px);
}

/* Hero Right Visual Stack */
.hero5-visual-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero5-main-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 30, 54, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.hero5-main-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.hero5-main-card:hover img {
    transform: scale(1.04);
}

.hero5-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 40%,
            rgba(15, 30, 54, 0.85) 100%);
}

.hero5-card-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: #ffffff;
}

.hero5-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero5-card-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Badges on Hero Image */
.hero5-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 35px rgba(15, 30, 54, 0.12);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 10;
    animation: floatAnim 6s ease-in-out infinite;
}

.badge-top-right {
    top: -1.5rem;
    right: -1.5rem;
}

.badge-bottom-left {
    bottom: 2rem;
    left: -2rem;
    animation-delay: -3s;
}

@keyframes floatAnim {

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

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

.badge-icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--o5-gold-dark);
}

.badge-text-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--o5-navy);
}

.badge-text-sub {
    font-size: 0.75rem;
    color: var(--o5-text-muted);
}

/* ====================================================
   INTERACTIVE CONCEPT & TABBED PILLARS SECTION
==================================================== */
.concept5 {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
    border-top: 1px solid var(--o5-border);
}

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

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--o5-gold-dark);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--o5-navy);
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.section-desc {
    font-size: 1rem;
    color: var(--o5-text-muted);
    line-height: 1.7;
}

/* Interactive Pillar Tabs Component */
.pillar-tabs-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--o5-pearl);
    border: 1px solid var(--o5-border);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(15, 30, 54, 0.03);
}

.pillar-tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.tab-btn.active {
    background: #ffffff;
    border-color: rgba(15, 30, 54, 0.1);
    box-shadow: 0 10px 25px rgba(15, 30, 54, 0.06);
}

.tab-num {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--o5-text-muted);
    transition: color 0.3s ease;
}

.tab-btn.active .tab-num {
    color: var(--o5-gold-dark);
}

.tab-btn-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--o5-navy);
    margin: 0 0 0.25rem 0;
}

.tab-btn-text p {
    font-size: 0.775rem;
    color: var(--o5-text-muted);
    margin: 0;
}

/* Tab Display Panel */
.tab-display-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(15, 30, 54, 0.06);
    box-shadow: 0 15px 30px rgba(15, 30, 54, 0.04);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-content-item {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.tab-badge {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    background: rgba(212, 175, 55, 0.12);
    color: var(--o5-gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.tab-title {
    font-family: 'Cinzel', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--o5-navy);
    margin-bottom: 1rem;
}

.tab-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--o5-text-muted);
    margin-bottom: 1.5rem;
}

.tab-highlight {
    padding: 1.25rem 1.5rem;
    background: rgba(15, 30, 54, 0.03);
    border-left: 3px solid var(--o5-gold);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--o5-navy);
    font-size: 0.95rem;
}

/* ====================================================
   GALLERY & FEATURES GRID SECTION
==================================================== */
.features5 {
    padding: 7rem 0;
    background: var(--o5-navy);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.features5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--o5-gold),
            transparent);
    opacity: 0.3;
}

.features5 .section-title {
    color: #ffffff;
}

.features5 .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Feature Cards Grid */
.feat5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feat5-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.feat5-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feat5-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.feat5-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feat5-card:hover .feat5-card-img-wrapper img {
    transform: scale(1.08);
}

.feat5-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: rgba(7, 13, 25, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--o5-gold-light);
    letter-spacing: 0.1em;
}

.feat5-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feat5-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.feat5-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feat5-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--o5-gold-light);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feat5-card-link:hover {
    gap: 0.85rem;
    color: #ffffff;
}

/* ====================================================
   STATS & IMPACT STRIP
==================================================== */
.stats5-section {
    padding: 5rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--o5-border);
}

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

.stat5-item {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid rgba(15, 30, 54, 0.08);
}

.stat5-item:last-child {
    border-right: none;
}

.stat5-number {
    font-family: 'Cinzel', serif;
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--o5-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat5-number span {
    color: var(--o5-gold-dark);
}

.stat5-label {
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--o5-text-muted);
}

/* ====================================================
   VALUES ACCORDION & QUOTE SECTION
==================================================== */
.values5-section {
    padding: 7rem 0;
    background: var(--o5-pearl);
}

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

.quote-box {
    background: var(--o5-navy);
    color: #ffffff;
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(15, 30, 54, 0.12);
    overflow: hidden;
}

.quote-box::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-family: 'Cinzel', serif;
    font-size: 15rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.05);
    pointer-events: none;
}

.quote-icon {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--o5-gold);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.quote-author-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--o5-gold-light);
}

.quote-author-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Values List Pills */
.values-pill-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item-card {
    background: #ffffff;
    border: 1px solid var(--o5-border);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.value-item-card:hover {
    border-color: var(--o5-gold);
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(15, 30, 54, 0.04);
}

.value-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 30, 54, 0.05);
    color: var(--o5-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item-card:hover .value-icon-circle {
    background: var(--o5-navy);
    color: var(--o5-gold);
}

.value-item-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--o5-navy);
    margin: 0 0 0.2rem 0;
}

.value-item-desc {
    font-size: 0.85rem;
    color: var(--o5-text-muted);
    margin: 0;
}

/* ====================================================
   CTA SECTION — Bold Pearl & Sapphire Card
==================================================== */
.cta5 {
    padding: 7rem 0;
    background: #ffffff;
}

.cta5-card {
    background: linear-gradient(135deg, var(--o5-navy) 0%, #070d19 100%);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(7, 13, 25, 0.25);
}

.cta5-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 50%);
    pointer-events: none;
}

.cta5-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.cta5-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.cta5-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.75rem;
    background: var(--o5-gold);
    color: var(--o5-dark);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta5-btn:hover {
    background: #ffffff;
    color: var(--o5-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* ====================================================
   FOOTER
==================================================== */
.footer5 {
    background: var(--o5-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer5-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer5-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer5-brand span {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
}

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

.footer5-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer5-links a:hover {
    color: var(--o5-gold);
}

.footer5-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero5-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero5-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero5-actions {
        justify-content: center;
    }

    .pillar-tabs-container {
        grid-template-columns: 1fr;
    }

    .feat5-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values5-grid {
        grid-template-columns: 1fr;
    }

    .stats5-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat5-item {
        border-right: none;
        border-bottom: 1px solid rgba(15, 30, 54, 0.08);
        padding-bottom: 1.5rem;
    }
}

/* ========== RESPONSIVE MOBILE NAVIGATION ========== */
@media (max-width: 992px) {
    .nav5-wrapper {
        padding: 0 0.85rem;
        top: 0.85rem;
    }

    .nav5 {
        padding: 0.5rem 1rem;
        border-radius: 100px;
    }

    .nav5-logo-img {
        height: 32px !important;
    }

    .nav5-brand-title {
        font-size: 1.05rem;
        gap: 0.3rem;
    }

    .nav5-brand-title .brand-global {
        font-size: 0.55rem;
        padding: 0.12rem 0.35rem;
    }

    .nav5-links {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 0;
        right: 0;
        background: rgba(7, 13, 25, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 20px;
        padding: 1.25rem 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav5-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav5-links a {
        color: #ffffff !important;
        padding: 0.75rem 1rem;
        justify-content: flex-start;
        border-radius: 12px;
        width: 100%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.9rem;
        font-weight: 600;
    }

    .nav5-links a::before,
    .nav5-links a::after {
        display: none !important;
    }

    .nav5-links a svg {
        color: var(--o5-gold) !important;
    }

    .nav5-links a:hover,
    .nav5-links a:active {
        background: rgba(212, 175, 55, 0.12);
        border-color: rgba(212, 175, 55, 0.3);
        color: var(--o5-gold-light) !important;
        transform: none !important;
    }

    /* Mobile CTA Button */
    .nav5-cta {
        background: linear-gradient(135deg,
                #f3e5ab 0%,
                #d4af37 100%) !important;
        color: #0b1d3a !important;
        font-weight: 800 !important;
        justify-content: center !important;
        padding: 0.85rem 1rem !important;
        border-radius: 14px !important;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35) !important;
        margin-top: 0.5rem;
        border: 1px solid #f3e5ab !important;
    }

    .nav5-cta svg {
        color: #0b1d3a !important;
    }

    .nav5-cta:hover {
        background: #ffffff !important;
        color: var(--o5-navy) !important;
    }

    .nav5-cta:hover svg {
        color: var(--o5-navy) !important;
    }

    /* Mobile Dropdown Submenu */
    .nav5-dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        padding: 0.75rem 1rem;
        color: #ffffff !important;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(212, 175, 55, 0.06);
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-left: 3px solid var(--o5-gold);
        border-radius: 12px;
        margin-top: 0.4rem;
        min-width: 100%;
        padding: 0.5rem;
    }

    .dropdown-item {
        padding: 0.6rem 0.75rem;
        background: transparent !important;
        border: none !important;
    }

    .dropdown-item-icon {
        width: 32px;
        height: 32px;
        background: rgba(212, 175, 55, 0.15) !important;
        color: var(--o5-gold) !important;
        border-radius: 8px;
    }

    .dropdown-item-title {
        color: #ffffff !important;
        font-size: 0.85rem;
    }

    .dropdown-item-desc {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.7rem;
    }

    /* Mobile Hamburger Toggle Button */
    .nav5-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(15, 30, 54, 0.05);
        border: 1px solid rgba(15, 30, 54, 0.1);
    }

    .nav5.scrolled .nav5-toggle {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .nav5-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--o5-navy);
        margin: 2.5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .nav5.scrolled .nav5-toggle span {
        background: #ffffff;
    }

    .nav5-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav5-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav5-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .feat5-grid {
        grid-template-columns: 1fr;
    }

    .badge-top-right,
    .badge-bottom-left {
        display: none;
    }

    .footer5-top {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

/* ====================================================
   FORMULARIO A & INSCRIPCIÓN PASANAKU 360 STYLES
==================================================== */
.form-a-wrapper {
    padding: 4rem 0 7rem 0;
    background: var(--o5-pearl);
    min-height: 100vh;
}

.form-a-card {
    background: #ffffff;
    border: 1px solid var(--o5-border);
    border-radius: 28px;
    padding: 4rem 3.5rem;
    box-shadow: 0 25px 70px rgba(15, 30, 54, 0.08);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.form-a-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px dashed rgba(15, 30, 54, 0.1);
}

.form-a-tag {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--o5-gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.form-a-title {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--o5-navy);
    margin-bottom: 0.4rem;
}

.form-a-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--o5-navy);
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.form-a-program-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--o5-gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
}

.form-a-intro {
    font-size: 0.95rem;
    color: var(--o5-text-muted);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
    background: rgba(15, 30, 54, 0.03);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border-left: 4px solid var(--o5-gold);
}

.form-section-block {
    margin-bottom: 3rem;
}

.section-banner {
    background: var(--o5-navy);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(15, 30, 54, 0.15);
}

.section-banner-num {
    background: var(--o5-gold);
    color: var(--o5-navy);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--o5-navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-label span.req {
    color: #dc2626;
    margin-left: 0.2rem;
}

.form-control {
    width: 100%;
    padding: 0.95rem 1.25rem;
    background: var(--o5-pearl);
    border: 1.5px solid rgba(15, 30, 54, 0.12);
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--o5-text-main);
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--o5-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.radio-pill-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-pill-card {
    position: relative;
    cursor: pointer;
}

.radio-pill-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-pill-content {
    padding: 1.1rem 1.35rem;
    background: var(--o5-pearl);
    border: 2px solid rgba(15, 30, 54, 0.12);
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--o5-navy);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
}

.radio-pill-card:hover .radio-pill-content {
    border-color: var(--o5-gold);
    background: #ffffff;
    transform: translateY(-2px);
}

.radio-pill-card input[type="radio"]:checked+.radio-pill-content {
    border-color: var(--o5-gold);
    background: linear-gradient(135deg, rgba(255, 253, 242, 0.98) 0%, rgba(253, 246, 224, 0.9) 100%);
    color: var(--o5-navy);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.stack-radio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
}

.stack-radio-card {
    position: relative;
    cursor: pointer;
}

.stack-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.stack-radio-content {
    padding: 1.15rem 1.6rem;
    background: var(--o5-pearl);
    border: 2px solid rgba(15, 30, 54, 0.12);
    border-radius: 18px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--o5-navy);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.stack-radio-card:hover .stack-radio-content {
    border-color: var(--o5-gold);
    background: #ffffff;
    transform: translateY(-2px);
}

.stack-radio-card input[type="radio"]:checked+.stack-radio-content {
    border-color: var(--o5-gold);
    background: linear-gradient(135deg, rgba(255, 253, 242, 0.98) 0%, rgba(253, 246, 224, 0.9) 100%);
    color: var(--o5-navy);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

.radio-check-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(15, 30, 54, 0.25);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.radio-pill-card:hover .radio-check-dot,
.stack-radio-card:hover .radio-check-dot {
    border-color: var(--o5-gold);
}

.radio-pill-card input[type="radio"]:checked+.radio-pill-content .radio-check-dot,
.stack-radio-card input[type="radio"]:checked+.stack-radio-content .radio-check-dot {
    border-color: var(--o5-gold);
    background: var(--o5-gold);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.45);
}

.radio-check-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.radio-pill-card input[type="radio"]:checked+.radio-pill-content .radio-check-dot::after,
.stack-radio-card input[type="radio"]:checked+.stack-radio-content .radio-check-dot::after {
    opacity: 1;
    transform: scale(1);
}

.terms-box {
    background: rgba(15, 30, 54, 0.03);
    border: 1px solid rgba(15, 30, 54, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-top: 1rem;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--o5-text-main);
    line-height: 1.6;
}

.terms-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    accent-color: var(--o5-gold-dark);
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-a-card {
        padding: 2.5rem 1.5rem;
    }

    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: 1fr;
    }

    .form-a-title {
        font-size: 1.8rem;
    }

    .form-a-subtitle {
        font-size: 1.1rem;
    }
}