/*HOME*/
:root {
    --color-blue-deep: #0B192C;     
    --color-blue-medium: #1E3E62;  
    --color-sky-cyan: #00D2FC;      
    --color-sky-soft: #E0F7FA;   
    --color-sky-hover: #00B4D8;     
    --color-white: #FFFFFF;        
    --color-bg-light: #F4F9FD; 
    
    --text-main: #1F2937;
    --text-muted: #64748B;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem; 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.section {
    padding: 7rem 1.5rem;
}

.inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

h1, h2, h3, h4 {
    color: var(--color-blue-deep);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.highlight-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--color-sky-hover);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0.75rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
}

.tag {
    display: inline-block;
    background-color: var(--color-sky-soft);
    color: var(--color-blue-medium);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
}

.tag--light {
    background-color: rgba(0, 210, 252, 0.15);
    color: var(--color-sky-cyan);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    font-size: 0.9rem;
    font-weight: 700; 
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn--sky {
    background: linear-gradient(135deg, var(--color-sky-cyan) 0%, var(--color-sky-hover) 100%);
    color: var(--color-blue-deep);
    box-shadow: 0 4px 15px rgba(0, 210, 252, 0.3); 
}

.btn--sky:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 252, 0.5);
    filter: brightness(1.05);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-blue-deep);
    border: 2px solid var(--color-blue-deep);
}

.btn--outline:hover {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn--dark-blue {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    border: 2px solid var(--color-blue-deep);
}

.btn--dark-blue:hover {
    background-color: transparent;
    color: var(--color-blue-deep);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.hero-split {
    background: 
        radial-gradient(circle at 85% 20%, rgba(0, 210, 252, 0.18) 0%, transparent 45%), 
        radial-gradient(circle at 15% 80%, rgba(224, 247, 250, 0.4) 0%, transparent 50%),
        linear-gradient(180deg, #E6F4FA 0%, var(--color-bg-light) 100%);
    /* MODIFICADO: Bajamos de 10rem a 5rem el espacio superior */
    padding: 5rem 1.5rem 7rem; 
    display: flex;
    align-items: center;
    position: relative;
}

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

.hero-text__location {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-blue-medium);
    background-color: rgba(0, 210, 252, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 252, 0.25);
}

.hero-text__title {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-blue-deep);
}

.hero-text__lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-blue-medium);
}

.hero-highlight-item i {
    color: var(--color-sky-hover);
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatAnimation 6s ease-in-out infinite;
    width: 100%;
}

.hero-img-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0; 
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -15px rgba(11, 25, 44, 0.12), 
                0 10px 20px -5px rgba(0, 210, 252, 0.05);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    display: block;
}

.hero-img-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 210, 252, 0.4) 0%, rgba(224, 247, 250, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    top: -20px;
    right: -10px;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.marquee-wrap {
    background-color: var(--color-blue-deep);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
}

.marquee-inner {
    display: flex;
    align-items: center;
    animation: marqueeAnimation 40s linear infinite;
}

.marquee-inner span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 2.5rem;
    position: relative;
    opacity: 0.85;
}

.marquee-inner span::after {
    content: "◆";
    position: absolute;
    right: -4px;
    color: var(--color-sky-cyan); 
    font-size: 0.7rem;
}

@keyframes marqueeAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

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

.why-card {
    background-color: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--color-sky-hover); 
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sky-hover); 
}

.why-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-sky-soft);
    color: var(--color-sky-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--color-blue-deep);
    color: var(--color-sky-cyan);
    transform: rotate(-5deg);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hm-services {
    background-color: var(--color-white);
}

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

.svc-card {
    background-color: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--color-sky-hover); 
}

.svc-card:hover {
    background-color: var(--color-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sky-hover); 
}

.svc-icon {
    font-size: 2rem;
    color: var(--color-blue-medium);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.svc-card:hover .svc-icon {
    color: var(--color-sky-hover);
}

.svc-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.svc-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hm-stats {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, #112235 100%);
    padding: 5rem 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-num {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-sky-cyan);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.community-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 4.5rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    border: 2px solid var(--color-sky-hover); 
}

.community-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 1.2rem 0 2rem;
}

.community-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.comm-avatars {
    display: flex;
    align-items: center;
}

.comm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: var(--color-blue-deep);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-white);
    margin-right: -14px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.comm-avatar.alt { background-color: #E0F2FE; color: var(--color-blue-medium); z-index: 3; }
.comm-avatar.alt2 { background-color: var(--color-sky-soft); color: var(--color-sky-hover); z-index: 4; }

.comm-count {
    padding-left: 1.8rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    font-size: 0.95rem;
}

.comm-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #ECFDF5;
    color: #065F46;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comm-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}

.comm-dot::after {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background-color: inherit;
    border-radius: inherit;
    top: 0; left: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hm-cta {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue-medium) 100%);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 5rem;
    box-shadow: 0 25px 50px -12px rgba(11, 25, 44, 0.25);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 210, 252, 0.3);
}

.hm-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 252, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hm-cta .section-title {
    color: var(--color-white);
}

.hm-cta .section-sub {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.75rem;
}

.hm-cta__action {
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero-grid, .community-card, .hm-cta {
        grid-template-columns: 1fr;
        padding: 4rem 2.5rem;
        gap: 3rem;
    }
    .hero-split {
        padding: 8rem 1.5rem 5rem;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text__location {
        justify-content: center;
    }
    .hero-text__lead {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions, .hero-highlights, .community-visual, .hm-cta__action {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .hero-img-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body { font-size: 0.9rem; }
    .section { padding: 4.5rem 1rem; }
    .section-title { font-size: 2rem; }
    
    .hero-split { padding: 7rem 1rem 4rem; }
    .hero-text__title { font-size: 2.6rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; }
    
    .hero-img-card img { height: 360px; }
    
    .why-grid, .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .stat-num { font-size: 2.4rem; }
}



/*ABOUT*/

:root {
    --color-blue-deep: #0B192C;    
    --color-blue-medium: #1E3E62;  
    --color-sky-cyan: #00D2FC;      
    --color-sky-soft: #E0F7FA;      
    --color-sky-hover: #00B4D8;    
    --color-white: #FFFFFF;        
    --color-bg-light: #F4F9FD;     
    
    --text-main: #1F2937;
    --text-muted: #64748B;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.section {
    padding: 2.5rem 1.25rem;
}

@media (min-width: 769px) {
    .section { padding: 4.5rem 1.5rem; }
}

.inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 1.85rem;
    color: var(--color-blue-deep);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (min-width: 769px) {
    .section-title { font-size: 2.5rem; }
}

.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-sky-hover);
}

.ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-sky-soft);
    color: var(--color-blue-deep);
    border: 1px solid rgba(0, 210, 252, 0.3);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    width: 100%;
}

@media (min-width: 576px) {
    .btn { width: auto; }
}

.btn-cyan {
    background-color: var(--color-sky-cyan);
    color: var(--color-blue-deep);
    box-shadow: 0 4px 15px rgba(0, 210, 252, 0.2);
}

.btn-cyan:hover {
    background-color: var(--color-sky-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 210, 252, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-blue-deep);
    border: 2px solid var(--color-blue-deep);
}

.btn-outline:hover {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    transform: translateY(-3px);
}

.ns-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, #06111e 100%);
    overflow: hidden;
    padding: 4rem 1.25rem;
}

.ns-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 993px) {
    .ns-hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 2rem;
    }
}

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

@media (min-width: 993px) {
    .ns-hero__content {
        text-align: left;
        padding-right: 2rem;
    }
}

.ns-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 210, 252, 0.1);
    border: 1px solid rgba(0, 210, 252, 0.2);
    color: var(--color-sky-cyan);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.ns-hero__title {
    font-size: 2.4rem;
    color: var(--color-white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    margin-top: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 576px) { .ns-hero__title { font-size: 3.2rem; } }

.ns-hero__title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
}

.ns-hero__title em {
    color: var(--color-sky-cyan);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.ns-hero__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 540px;
}

@media (max-width: 992px) {
    .ns-hero__sub { margin: 0 auto 2rem; }
}

.ns-hero__btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .ns-hero__btns { flex-direction: row; justify-content: center; }
}
@media (min-width: 993px) {
    .ns-hero__btns { justify-content: flex-start; }
}

.ns-hero__visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ns-hero__frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-sky-cyan) 0%, var(--color-blue-medium) 100%);
    padding: 8px;
}

.ns-hero__img-wrapper {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 8px);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.ns-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-marquee-wrap {
    background-color: var(--color-blue-deep);
    border-top: 2px solid var(--color-sky-cyan);
    border-bottom: 2px solid var(--color-sky-cyan);
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    padding: 0.8rem 0;
}

.ab-marquee-inner {
    display: flex;
    align-items: center;
    animation: marqueeAnimation 30s linear infinite;
}

.ab-marquee-inner span {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 1.5rem;
}

@keyframes marqueeAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.ns-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 993px) {
    .ns-story__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

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

@media (min-width: 993px) {
    .ns-story__content { text-align: left; }
}

.ns-story__content p {
    font-size: 1rem;
    color: var(--text-main);
    margin-top: 1rem;
}

.ns-story__actions {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 993px) {
    .ns-story__actions { justify-content: flex-start; }
}

.ns-stats-cluster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.ns-stat-box {
    background-color: var(--color-white);
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 210, 252, 0.1);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.ns-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-blue-deep);
    line-height: 1;
    margin-bottom: 0.4rem;
}

@media (min-width: 576px) { .ns-stat-number { font-size: 3rem; } }

.ns-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.ab-why {
    background-color: var(--color-white);
}

.ab-why-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ab-why-header p {
    color: var(--text-muted);
    margin-top: 0.4rem;
    font-size: 1rem;
}

.ab-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ab-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
    padding: 0.5rem 0.25rem;
    width: 100%;
}

.ab-slider::-webkit-scrollbar {
    display: none; 
}

.ab-f-card {
    flex: 0 0 86%; 
    scroll-snap-align: start;
    background-color: var(--color-bg-light);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 62, 98, 0.05); 
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

@media (min-width: 600px) {
    .ab-f-card { flex: 0 0 calc(50% - 0.625rem); }
}

@media (min-width: 993px) {
    .ab-f-card { flex: 0 0 calc(33.333% - 0.85rem); padding: 2.5rem 2rem; }
}

.ab-feat-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-sky-soft);
    color: var(--color-blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.ab-f-card h3 {
    font-size: 1.2rem;
    color: var(--color-blue-deep);
    margin-bottom: 0.6rem;
    font-weight: 700;
    margin-top: 0;
}

.ab-f-card p {
    color: var(--text-main);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.ab-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.ab-slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.ab-slider-btn:hover {
    background-color: var(--color-sky-cyan);
    color: var(--color-blue-deep);
    transform: scale(1.05);
}

.ns-mission {
    background-color: var(--color-white);
}

.ns-mission__split {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 993px) {
    .ns-mission__split {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.ns-mission__accent-block {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    padding: 3rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 769px) {
    .ns-mission__accent-block { padding: 4.5rem 3rem; }
}

.ns-mission__accent-block .ab-tag {
    background-color: rgba(0, 210, 252, 0.1);
    color: var(--color-sky-cyan);
    border-color: rgba(0, 210, 252, 0.2);
    align-self: flex-start;
}

.ns-mission__main-title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
}

@media (min-width: 769px) {
    .ns-mission__main-title { font-size: 2.8rem; }
}

.ns-mission__main-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-sky-cyan);
}

.ns-mission__details-block {
    background-color: var(--color-bg-light);
    color: var(--text-main);
    padding: 3rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 769px) {
    .ns-mission__details-block { padding: 4.5rem 3rem; }
}

.ns-mission__quote-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ns-mission__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
    position: relative;
    padding-left: 1.25rem;
}

.ns-mission__quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background-color: var(--color-sky-cyan);
    border-radius: 3px;
}

.ns-mission__tagline-wrapper {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.25rem;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 210, 252, 0.1);
    box-shadow: var(--shadow-sm);
}

.ns-mission__tagline-icon {
    font-size: 1.3rem;
    color: var(--color-sky-cyan);
}

.ns-mission__tagline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    margin: 0;
}

.ns-cta {
    background-color: var(--color-white);
    text-align: center;
    border-top: 1px solid rgba(30, 62, 98, 0.05);
}

.ns-cta__box h3 {
    font-size: 1.85rem;
    color: var(--color-blue-deep);
    font-weight: 800;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 769px) {
    .ns-cta__box h3 { font-size: 2.6rem; }
}

.ns-cta__box p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    margin-top: 0;
}

.ab-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/*SERVICES*/

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

    :root {
      --color-blue-deep: #0B192C;    
      --color-blue-medium: #1E3E62;  
      --color-sky-cyan: #00D2FC;      
      --color-sky-soft: #E0F7FA;      
      --color-sky-hover: #00B4D8;    
      --color-white: #FFFFFF;        
      --color-bg-light: #F4F9FD;     
      
      --text-main: #1F2937;
      --text-muted: #64748B;
      
      --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --font-serif: 'Playfair Display', Georgia, serif;
      
      --radius-lg: 24px;
      --radius-md: 14px;
      --radius-sm: 8px;
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      
      --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
      --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
      --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--color-bg-light);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .hero {
      background: linear-gradient(135deg, var(--color-blue-deep) 0%, #06111e 100%);
      color: var(--color-white);
      padding: 7rem 1.5rem 5rem;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -20%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0, 210, 252, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero__container {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem; align-items: center; position: relative; z-index: 2;
    }
    
    .hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0, 210, 252, 0.1);
      border: 1px solid rgba(0, 210, 252, 0.25);
      color: var(--color-sky-cyan); font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem;
    }
    
    .hero__title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em;
    }
    .hero__title em { 
      font-family: var(--font-serif); 
      font-style: italic; 
      font-weight: 400; 
      color: var(--color-sky-cyan); 
    }
    
    .hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 500px; margin-bottom: 2.5rem; }
    .hero__btns { display: flex; gap: 1rem; }

    .hero__image-wrapper {
      position: relative; width: 100%; height: 440px;
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 6px solid rgba(30, 62, 98, 0.4);
      background: var(--color-blue-medium);
    }
    .hero__image-wrapper::after {
      content: '';
      position: absolute; inset: 0;
      box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
      pointer-events: none;
    }
    .hero__image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

    /* BOTONES */
    .btn-primary, .btn-ghost {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-weight: 700; font-size: 0.95rem; padding: 14px 28px;
      border-radius: var(--radius-sm); text-decoration: none; transition: var(--transition-smooth);
    }
    
    .btn-primary { 
      background: var(--color-sky-cyan); 
      color: var(--color-blue-deep); 
      box-shadow: 0 4px 15px rgba(0, 210, 252, 0.2);
    }
    .btn-primary:hover { 
      background: var(--color-sky-hover); 
      transform: translateY(-2px); 
      box-shadow: 0 6px 20px rgba(0, 210, 252, 0.35);
    }
    .btn-ghost { border: 2px solid rgba(255,255,255,0.2); color: var(--color-white); }
    .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--color-white); }

    .marquee-wrap { 
      background: var(--color-blue-deep);              
      padding: 14px 0;                                  
      overflow: hidden; 
      white-space: nowrap; 
      border-top: 2px solid var(--color-sky-cyan);    
      border-bottom: 2px solid var(--color-sky-cyan); 
      display: flex;
      align-items: center;
    }
    .marquee-inner { 
      display: inline-flex; 
      align-items: center;
      animation: marquee 28s linear infinite; 
    }
    .marquee-inner span { 
      font-size: 0.8rem;              
      font-weight: 700; 
      color: var(--color-white);      
      padding-right: 3.5rem;              
      text-transform: uppercase; 
      letter-spacing: 0.1em;             
      display: inline-flex;
      align-items: center;
    }
    .marquee-inner span i { color: var(--color-sky-cyan); font-size: 0.75rem; margin: 0 8px; }

    .section { padding: 4.5rem 1.5rem; background: var(--color-bg-light); }
    .inner { max-width: 1140px; margin: 0 auto; }
    
    .section-header { text-align: left; margin-bottom: 3rem; max-width: 700px; }
    .tag { 
      display: inline-flex; 
      font-size: 0.72rem; 
      font-weight: 700; 
      letter-spacing: 0.08em; 
      text-transform: uppercase; 
      color: var(--color-blue-deep); 
      background-color: var(--color-sky-soft);
      padding: 4px 12px;
      border-radius: 50px;
      border: 1px solid rgba(0, 210, 252, 0.3);
      margin-bottom: 0.75rem; 
    }
    .section-title { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; color: var(--color-blue-deep); letter-spacing: -0.02em; }
    .section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--color-sky-hover); }
    .section-sub { font-size: 1rem; color: var(--text-muted); margin-top: 0.5rem; }

    .grid-small {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
      gap: 1.25rem;
    }
    .mt-lg { margin-top: 4.5rem; }

    .card-mini {
      background: var(--color-white);
      border: 2px solid var(--color-sky-cyan);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
      box-shadow: var(--shadow-sm);
    }
    .card-mini:hover {
      border-color: var(--color-sky-hover);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .card-mini__img {
      height: 140px;
      width: 100%;
      position: relative;
      background: var(--color-blue-medium);
    }
    .card-mini__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .card-mini__content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .card-mini__head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.75rem;
    }
    .card-mini__icon {
      width: 36px; height: 36px; border-radius: var(--radius-md);
      background: var(--color-sky-soft);
      display: flex; align-items: center; justify-content: center;
      color: var(--color-blue-deep); font-size: 1rem; flex-shrink: 0;
    }
    .card-mini__title { font-size: 1.15rem; font-weight: 700; color: var(--color-blue-deep); letter-spacing: -0.01em; }
    .card-mini__desc { font-size: 0.9rem; color: var(--text-main); margin-bottom: 1rem; line-height: 1.5; }
    
    .card-mini__list { list-style: none; margin-bottom: 1.25rem; border-top: 1px solid var(--color-bg-light); padding-top: 0.75rem; }
    .card-mini__list li { font-size: 0.8rem; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
    .card-mini__list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--color-sky-hover); font-size: 0.7rem; }

    .card-mini__link {
      font-size: 0.88rem; 
      font-weight: 700; 
      color: var(--color-blue-deep);
      background: var(--color-sky-soft);
      border: 1px solid rgba(0, 210, 252, 0.2);
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      text-decoration: none; 
      display: inline-flex; 
      align-items: center; 
      justify-content: center;
      gap: 6px; 
      margin-top: auto;
      transition: var(--transition-smooth);
      width: 100%;
    }
    .card-mini__link:hover { 
      background: var(--color-sky-cyan);
      transform: translateY(-1px);
    }

    .pricing-section { background: var(--color-white); padding: 4.5rem 1.5rem; }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    
    .plan-mini {
      border: 1px solid rgba(30, 62, 98, 0.08); border-radius: var(--radius-lg); padding: 2.5rem 1.75rem;
      display: flex; flex-direction: column; background: var(--color-bg-light); transition: var(--transition-smooth);
      box-shadow: var(--shadow-sm);
    }
    .plan-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    
    .plan-mini--featured { 
      border: 3px solid var(--color-sky-cyan); 
      background: var(--color-white); 
      box-shadow: var(--shadow-lg);
      position: relative; 
    }
    .plan-mini__badge { 
      position: absolute; 
      top: 1rem; 
      right: 1.25rem; 
      background: var(--color-blue-deep); 
      color: var(--color-sky-cyan); 
      font-size: 0.68rem; 
      font-weight: 800; 
      padding: 4px 12px;  
      border-radius: 30px; 
      text-transform: uppercase; 
      letter-spacing: 0.05em;
    }
    
    .plan-mini__name { font-size: 1.2rem; font-weight: 700; color: var(--color-blue-deep); margin-bottom: 0.5rem; }
    .plan-mini__price { margin-bottom: 1.5rem; }
    .plan-mini__amount { font-size: 3rem; font-weight: 800; color: var(--color-blue-deep); line-height: 1; letter-spacing: -0.02em; }
    .plan-mini__period { font-size: 0.9rem; color: var(--text-muted); }
    
    .plan-mini__list { list-style: none; margin-bottom: 2rem; font-size: 0.9rem; color: var(--text-main); }
    .plan-mini__list li { margin-bottom: 0.6rem; display: flex; align-items: center; gap: 8px; }
    .plan-mini__list li i { color: var(--color-sky-hover); font-size: 0.8rem; }

    .plan-mini .btn-primary { width: 100%; justify-content: center; font-size: 0.9rem; padding: 12px; border-radius: var(--radius-sm); }
    
    .plan-mini--featured .btn-primary {
      background: var(--color-blue-deep);
      color: var(--color-white);
    }
    .plan-mini--featured .btn-primary:hover {
      background: var(--color-sky-cyan);
      color: var(--color-blue-deep);
    }

    .cta-section { background: var(--color-blue-deep); color: var(--color-white); padding: 4.5rem 1.5rem; text-align: center; position: relative; }
    .cta-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
    .cta-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--color-sky-cyan); }
    .cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
    
    .cta-section .btn-primary {
      background-color: var(--color-sky-cyan);
      color: var(--color-blue-deep);
    }
    .cta-section .btn-primary:hover {
      background-color: var(--color-sky-hover);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .hero__container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
      .hero__sub { margin: 0 auto 2rem; }
      .hero__btns { justify-content: center; }
      .hero__image-wrapper { height: 350px; max-width: 500px; margin: 0 auto; }
      .section-header { text-align: center; margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 480px) {
      .hero__btns { flex-direction: column; }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

/*LICENSING*/

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

:root {
    --color-blue-deep: #0B192C;     
    --color-blue-medium: #1E3E62; 
    --color-sky-cyan: #00D2FC;   
    --color-sky-soft: #E0F7FA;      
    --color-sky-hover: #00B4D8;     
    --color-white: #FFFFFF;        
    --color-bg-light: #F4F9FD;  
    
    --text-main: #1F2937;
    --text-muted: #64748B;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08);
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.co-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.txt-highlight-cyan { color: var(--color-sky-cyan); font-weight: 600; }
.txt-highlight-blue { color: var(--color-blue-deep); font-weight: 700; }

.split-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 85vh;
    display: grid;
    grid-template-columns: 55% 45%;
    background-color: var(--color-blue-deep);
    overflow: hidden;
}

.split-hero__left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 6rem 4rem 6rem 2rem;
    position: relative;
    z-index: 2;
}

.split-hero__inner-content {
    max-width: 600px;
    width: 100%;
}

.split-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 252, 0.08);
    border: 1px solid rgba(0, 210, 252, 0.3);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-sky-cyan);
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.8rem;
}

.split-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.split-hero__title span {
    color: var(--color-sky-cyan);
}

.split-hero__subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--color-sky-soft);
    margin-bottom: 3rem;
    border-left: 3px solid var(--color-sky-cyan);
    padding-left: 1.25rem;
    line-height: 1.4;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-co {
    padding: 16px 36px; font-size: 0.88rem; font-weight: 600;
    text-decoration: none; border-radius: var(--radius-sm); transition: var(--transition-smooth);
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
    border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em;
}

.btn-flat-cyan { 
    background-color: var(--color-sky-cyan); color: var(--color-blue-deep); box-shadow: 0 5px 20px rgba(0, 210, 252, 0.2); 
}

.btn-flat-cyan:hover { 
    background-color: var(--color-sky-hover); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3); 
}

.btn-outline-white {
    background-color: transparent; color: var(--color-white); border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
    background-color: var(--white); color: var(--color-blue-deep); transform: translateY(-3px);
}

.split-hero__right {
    position: relative;
    width: 100%;
    height: 100%;
}

.split-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.split-hero__right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, var(--color-blue-deep) 0%, transparent 15%);
    pointer-events: none;
}

.state-licensing-section {
    padding: 2rem 0;
}

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

.section-title-blue {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-blue-deep);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-title-blue::after {
    content: '';
    display: block;
    width: 50px; height: 4px;
    background: var(--color-sky-cyan);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

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

.bento-card-block {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(30, 62, 98, 0.1);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.bento-card-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bento-card__img-holder {
    width: 100%;
    height: 250px;
    position: relative;
    background: var(--color-blue-deep);
    overflow: hidden;
}

.bento-card__img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.bento-card-block:hover .bento-card__img-holder img {
    transform: scale(1.04);
}

.service-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    font-weight: 700;
    background: rgba(11, 25, 44, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(6px);
}

.service-badge i { color: var(--color-sky-cyan); }

.bento-card__content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bento-card__content h3 {
    font-size: 1.8rem;
    color: var(--color-blue-deep);
    margin-bottom: 1rem;
    font-weight: 800;
}

.bento-card__content p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.about-checklist {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-checklist li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
}

.about-checklist li i {
    color: var(--color-sky-hover);
    margin-top: 2px;
}

.btn-about-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-blue-medium);
    color: var(--color-white);
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.btn-about-action:hover {
    background: var(--color-sky-cyan);
    color: var(--color-blue-deep);
    transform: translateX(4px);
}

.bottom-cta-blue-section {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-blue-medium) 100%);
    color: var(--color-white);
    padding: 5rem 3.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
    border-top: 5px solid var(--color-sky-cyan);
    box-shadow: var(--shadow-lg);
}

.bottom-cta-blue-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.bottom-cta-blue-section h2 span { color: var(--color-sky-cyan); }

.bottom-cta-blue-section p {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: #A0B2C6;
}

.btn-massive-cyan {
    background: var(--color-sky-cyan);
    color: var(--color-blue-deep);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 210, 252, 0.2);
    transition: var(--transition-smooth);
}

.btn-massive-cyan:hover {
    background: var(--color-white);
    transform: translateY(-3px);
}

.co-reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}

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

.white-text {
  color: #ffffff;
}

.highlight {
}

@media (max-width: 992px) {
    .split-hero { grid-template-columns: 1fr; min-height: auto; }
    .split-hero__left { justify-content: center; padding: 5rem 1.5rem; }
    .split-hero__right { height: 350px; }
    .split-hero__right::before { background: linear-gradient(to bottom, var(--color-blue-deep) 0%, transparent 15%); }
    .bento-matrix-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .hero-actions { flex-direction: column; }
    .btn-co { width: 100%; }
    .bento-card__content { padding: 1.8rem; }
}

/*CONTACT*/

:root {
    --color-blue-deep: #0B192C;     
    --color-blue-medium: #1E3E62;  
    --color-sky-cyan: #00D2FC;     
    --color-sky-soft: #E0F7FA;      
    --color-sky-hover: #00B4D8;   
    --color-white: #FFFFFF;         
    --bg-light: #F4F9FD;          
    
    --text-main: #1F2937;
    --text-muted: #64748B;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    --border-light: #E2E8F0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.page-subpage {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.co-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--color-blue-deep);
    letter-spacing: -0.02em;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-sky-cyan);
}

p { color: var(--text-muted); font-size: 0.95rem; }

.hero-bento-container {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, #050d18 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 3.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bento-container::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 450px; height: 450px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 252, 0.15) 0%, transparent 70%);
    z-index: 1; pointer-events: none;
}

.hero-bento-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.co-breadcrumb-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-sky-cyan);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.co-breadcrumb-cyan:hover { 
    color: var(--color-white);
    transform: translateX(-3px);
}

.co-eyebrow-pill {
    background: rgba(0, 210, 252, 0.1);
    color: var(--color-sky-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    border: 1px solid rgba(0, 210, 252, 0.2);
}

.hero-bento-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero-bento-left h1 span.sf-highlight {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-sky-cyan);
}

.co-hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.co-hero__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-co {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: var(--radius-sm); transition: var(--transition-smooth);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; 
    border: none; cursor: pointer;
}
.btn-co-cyan { 
    background-color: var(--color-sky-cyan); color: var(--color-blue-deep); box-shadow: 0 5px 15px rgba(0, 210, 252, 0.3); 
}
.btn-co-cyan:hover { 
    background-color: var(--color-sky-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 210, 252, 0.4); 
}
.btn-co-outline {
    background-color: transparent; color: var(--color-white); border: 2px solid rgba(255, 255, 255, 0.3); padding: 11px 24px;
}
.btn-co-outline:hover {
    background-color: var(--color-white); color: var(--color-blue-deep); border-color: var(--color-white);
}

.co-section {
    padding: 0;
    background-color: transparent;
}

.co-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

.co-info__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 3rem) clamp(1rem, 3vw, 2.5rem);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-blue-medium);
}

.co-info__card h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--color-blue-deep);
    margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .co-info__card {
        padding: 1.5rem;
        border-left-width: 3px;
    }

    .co-info__card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .co-info__card {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .co-info__card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
}
.co-info__items {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.co-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.co-info__icon {
    width: 40px;
    height: 40px;
    background: var(--color-sky-soft);
    border: 1px solid rgba(0, 210, 252, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-medium);
    font-size: 1rem;
    flex-shrink: 0;
}

.co-info__item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-blue-medium);
    margin-bottom: 3px;
}

.co-info__item a, .co-info__item span {
    color: var(--text-main);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.co-info__item a:hover {
    color: var(--color-sky-hover);
    transform: translateX(2px);
}

.co-info__divider {
    height: 1px;
    background: var(--border-light);
    margin: 2.5rem 0;
}

/* Insignia Integrada Matrix Informadora */
.co-info__badge {
    border: 1px dashed rgba(30, 62, 98, 0.3);
    background: var(--color-sky-soft);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.co-info__badge i {
    color: var(--color-blue-medium);
    font-size: 1.2rem;
    margin-top: 2px;
}

.co-info__badge strong {
    color: var(--color-blue-deep);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.co-info__badge p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 4px;
}

.co-form__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.co-form__card h3 {
    font-size: 2.2rem;
    color: var(--color-blue-deep);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.co-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.co-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.co-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.co-form__field label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-blue-deep);
}

.co-form__field input[type="text"],
.co-form__field input[type="email"],
.co-form__field input[type="tel"],
.co-form__field select,
.co-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: var(--transition-smooth);
}

.co-form__field input:focus,
.co-form__field select:focus,
.co-form__field textarea:focus {
    outline: none;
    border-color: var(--color-sky-hover);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(0, 210, 252, 0.15);
}

/* Botón Enviar Integrado */
.co-submit {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    border: none;
    padding: 15px 36px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    margin-top: 1rem;
}

.co-submit:hover {
    background-color: var(--color-blue-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 25, 44, 0.15);
}

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

@media (max-width: 992px) {
    .hero-bento-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-bento-container { padding: 2.5rem 2rem; }
    .hero-image-wrapper { height: 320px; }
    .co-contact__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    .co-form__row { grid-template-columns: 1fr; gap: 1.5rem; }
    .co-form__card { padding: 2.5rem 1.5rem; }
    .co-submit { width: 100%; justify-content: center; }
    .co-hero__btns { flex-direction: column; }
}

/*Commissary Kitchen*/

:root {
    --color-blue-deep: #0B192C;    
    --color-blue-medium: #1E3E62; 
    --color-sky-cyan: #00D2FC;      
    --color-sky-soft: #E0F7FA;    
    --color-sky-hover: #00B4D8;   
    --color-white: #FFFFFF;        
    --color-bg-light: #F4F9FD;   
    
    --text-main: #1F2937;
    --text-muted: #64748B;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.page-subpage {
    font-family: var(--font-sans);
    background-color: var(--color-bg-light);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--color-blue-deep);
    letter-spacing: -0.02em;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-sky-hover);
}

.hero-split-container {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-top: 5px solid var(--color-sky-cyan);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 252, 0.1), transparent);
    z-index: 1; pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-sky {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-sky-hover);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ce-breadcrumb-sky:hover { 
    color: var(--color-blue-deep);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: var(--color-sky-soft);
    color: var(--color-blue-medium);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    border: 1px solid rgba(0, 212, 252, 0.2);
}

.hero-split-left h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--color-blue-deep);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span {
    color: var(--color-sky-hover);
    background: linear-gradient(120deg, var(--color-blue-medium), var(--color-sky-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-white);
    position: relative;
    overflow: hidden;
    background: var(--color-blue-deep);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-sky-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-blue-deep);
    border: 1px solid var(--color-blue-medium);
    color: var(--color-white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.floating-sky-badge i { font-size: 1.8rem; color: var(--color-sky-cyan); }
.floating-sky-badge div { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-sky-soft); }
.floating-sky-badge span { display: block; font-size: 1.2rem; font-weight: 800; line-height: 1; margin-top: 2px; color: var(--color-white); }

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.ce-tag-sky {
    background: var(--color-sky-soft);
    color: var(--color-blue-medium);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 210, 252, 0.3);
}

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--color-blue-deep);
}

.ce-intro__grid p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ce-intro__img-wrap {
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-radius: var(--radius-md);
    padding: 10px;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}
.ce-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-sm); display: block;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}
.slider-controls { display: flex; gap: 8px; }
.slider-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(30, 62, 98, 0.15); background: var(--color-white);
    color: var(--color-blue-deep); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: var(--transition-smooth);
}
.slider-arrow:hover {
    border-color: var(--color-sky-cyan); color: var(--color-blue-deep); background: var(--color-sky-soft);
    box-shadow: var(--shadow-sm);
}

.slider-container { overflow: hidden; width: 100%; padding: 4px 4px 2rem 4px; }
.ck-why__grid {
    display: flex; gap: 1.25rem; scroll-behavior: smooth;
    overflow-x: auto; white-space: nowrap; scrollbar-width: none;
}
.ck-why__grid::-webkit-scrollbar { display: none; }

/* TARJETA SLIDER */
.ck-why__item {
    flex: 0 0 calc(25% - 15px);
    background: var(--color-white);
    border: 1px solid rgba(30, 62, 98, 0.1); 
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    white-space: normal;
    display: flex;
    flex-direction: column;
}
.ck-why__item:hover {
    transform: translateY(-5px);
    border-color: var(--color-sky-cyan);
    box-shadow: var(--shadow-md);
}
.ck-why__item-img {
    height: 110px; width: 100%; background: var(--color-blue-deep); overflow: hidden;
}
.ck-why__item-img img {
    width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth);
}

.ck-why__item-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.ck-why__item-head { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }

.ck-why__icon-wrap {
    width: 34px; height: 34px; border-radius: 8px;
    background: var(--color-sky-soft);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--transition-smooth);
}
.ck-why__item:hover .ck-why__icon-wrap { background: var(--color-sky-cyan); }
.ck-why__icon { font-size: 0.9rem; color: var(--color-blue-medium); transition: var(--transition-smooth); }
.ck-why__item:hover .ck-why__icon { color: var(--color-blue-deep); }

.ck-why__item strong { font-size: 1rem; font-weight: 700; color: var(--color-blue-deep); }
.ck-why__item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }

.ck-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}
.ck-feature {
    background: var(--color-white); border: 1px solid rgba(30, 62, 98, 0.1);
    border-left: 4px solid var(--color-sky-cyan); padding: 1.5rem;
    border-radius: var(--radius-md); display: flex; gap: 1rem;
    box-shadow: var(--shadow-sm); transition: var(--transition-smooth);
}
.ck-feature:hover {
    transform: scale(1.01) translateX(3px); box-shadow: var(--shadow-md);
    border-left-color: var(--color-blue-deep);
}
.ck-feature__icon-circle {
    width: 38px; height: 38px; background: var(--color-sky-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ck-feature__icon { font-size: 0.95rem; color: var(--color-blue-medium); }
.ck-feature h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-weight: 700; }
.ck-feature p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.4; }

.ck-who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}
.ck-who__item {
    background: var(--color-white); 
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); position: relative; transition: var(--transition-smooth);
}
.ck-who__item:hover {
    transform: translateY(-4px);
    border-color: var(--color-sky-cyan);
    box-shadow: var(--shadow-lg);
}
.ck-who__item-img { height: 120px; width: 100%; background: var(--color-blue-deep); }
.ck-who__item-img img { width: 100%; height: 100%; object-fit: cover; }

.ck-who__item-body { padding: 1.5rem; position: relative; }
.ck-who__num {
    font-size: 2.5rem; font-weight: 900; color: var(--color-blue-medium); opacity: 0.08;
    position: absolute; bottom: 0.5rem; right: 1rem; line-height: 1; transition: var(--transition-smooth);
}
.ck-who__item:hover .ck-who__num { opacity: 0.25; transform: scale(1.1); color: var(--color-sky-cyan); }
.ck-who__item h3 { font-size: 1.15rem; margin-bottom: 0.5rem; font-weight: 700; color: var(--color-blue-deep); }
.ck-who__item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.45; position: relative; z-index: 2; }

/* ── BUTTONS ── */
.ce-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: var(--radius-sm); transition: var(--transition-smooth);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}
.ce-btn--sky { background-color: var(--color-sky-cyan); color: var(--color-blue-deep); box-shadow: 0 5px 15px rgba(0, 210, 252, 0.2); }
.ce-btn--sky:hover { background-color: var(--color-sky-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 210, 252, 0.3); }

.ce-btn--outline-navy { background-color: transparent; color: var(--color-blue-deep); border: 2px solid var(--color-blue-deep); }
.ce-btn--outline-navy:hover { background-color: var(--color-blue-deep); color: var(--color-white); }

.ce-btn--primary { background-color: var(--color-blue-medium); color: var(--color-white); }
.ce-btn--primary:hover { background-color: var(--color-blue-deep); transform: translateY(-1px); }

.ce-cta-clean {
    text-align: center; padding: 4.5rem 2rem;
    background: linear-gradient(135deg, var(--color-blue-deep), #050b14);
    border: 1px solid rgba(30, 62, 98, 0.4);
    border-radius: var(--radius-lg); color: var(--color-white);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0, 212, 252, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--color-white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(244, 249, 253, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.ce-reveal.ce-visible { opacity: 1; transform: translateY(0); }
.ce-cta-clean::after{
    pointer-events:none;
}

.ce-cta-clean > *{
    position:relative;
    z-index:2;
}

@media (max-width: 1200px) {
    .ck-why__item { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 992px) {
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-sky-badge { left: 20px; bottom: -15px; }
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ck-why__item { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 576px) {
    .slider-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .slider-controls { width: 100%; justify-content: flex-end; }
    .ck-why__item { flex: 0 0 100%; }
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.2rem; }
}

/*Serv Safe*/

:root {
    --color-blue-deep: #0B192C;     
    --color-blue-medium: #1E3E62;   
    --color-sky-cyan: #00D2FC;      
    --color-sky-soft: #E0F7FA;      
    --color-sky-hover: #00B4D8;     
    --color-white: #FFFFFF;        
    --color-bg-light: #F4F9FD;     
    --text-main: #1F2937;
    --text-muted: #64748B;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
}

.ce-breadcrumb-sky {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-sky-hover);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ce-breadcrumb-sky:hover { 
    color: var(--color-blue-deep);
    transform: translateX(-3px);
}

.sf-intro__img-wrap {
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    position: relative;
}
.sf-intro__img-wrap img {
    width: 100%; 
    height: 320px; 
    object-fit: cover;
    border-radius: var(--radius-md); 
    display: block;
}

.sf-why__box {
    background: var(--color-white);
    border: 1px solid rgba(30, 62, 98, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.sf-why__list { 
    list-style: none; 
    margin-top: 1.5rem; 
}
.sf-why__item-line { 
    display: flex; 
    align-items: flex-start; 
    gap: 12px; 
    margin-bottom: 14px; 
    font-size: 0.95rem; 
}
.sf-why__item-line i { 
    color: var(--color-sky-hover); 
    margin-top: 5px; 
    font-size: 0.95rem; 
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}
.sf-cover {
    background: var(--color-white);
    border: 1px solid rgba(30, 62, 98, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition-smooth);
    border-left: 4px solid var(--color-sky-cyan);
    align-items: center;
    gap: 20px;
}
.sf-cover:hover {
    border-color: var(--color-sky-cyan);
    border-left-color: var(--color-blue-deep);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}
.sf-cover__icon {
    width: 38px; 
    height: 38px; 
    background: var(--color-sky-soft); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    color: var(--color-blue-medium); 
    font-size: 0.95rem;
}
.sf-cover h3 { 
    font-size: 1.05rem; 
    margin-bottom: 0; 
    font-weight: 700; 
    color: var(--color-blue-deep); 
}

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}
.sf-schedule__item {
    background: var(--color-white);
    border: 1px solid rgba(30, 62, 98, 0.1);
    border-top: 3px solid var(--color-sky-cyan);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition-smooth);
    flex-direction: column; 
    overflow: hidden; 
    position: relative;
}
.sf-schedule__item:hover {
    border-color: var(--color-sky-cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.sf-schedule__num {
    font-size: 2.5rem; 
    font-weight: 900; 
    color: var(--color-blue-medium); 
    opacity: 0.08;
    position: absolute; 
    bottom: 0.5rem; 
    right: 1rem; 
    line-height: 1; 
    transition: var(--transition-smooth);
}
.sf-schedule__item:hover .sf-schedule__num { 
    opacity: 0.25; 
    transform: scale(1.1); 
    color: var(--color-sky-cyan);
}
.sf-schedule__body h3 { 
    font-size: 1.15rem; 
    margin-bottom: 8px; 
    font-weight: 700; 
    color: var(--color-blue-deep); 
}
.sf-schedule__body p { 
    font-size: 0.85rem; 
    position: relative; 
    z-index: 2; 
    color: var(--text-muted); 
}

@media (max-width: 1200px) {
    .sf-intro__grid { gap: 40px; }
}

/*Sales Tax*/
:root {
    --navy-light: #0B192C;               
    --navy-light-rgb: 11, 25, 44;         
    
    --color-sky: #00D2FC;                      
    --color-sky-light: #E0F7FA;             
    
    --color-orange: #00B4D8;               
    --color-orange-rgb: 0, 180, 216;           
    --color-orange-hover: #1E3E62;         
    
    --white: #FFFFFF;
    --bg-light: #F4F9FD;                
    
    --text-dark: #1F2937;                  
    --text-muted: #64748B;
    --border-light: #E5EBF2;            
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-xl: 24px;
    --radius-lg: 24px;                         
    --radius-md: 14px;                         
    --radius-sm: 8px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
}

.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; 
    position: absolute; 
    top: -150px; 
    right: -150px;
    width: 400px; 
    height: 400px; 
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 210, 252, 0.07), transparent);
    z-index: 1; 
    pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ce-breadcrumb-accent:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(0, 210, 252, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(var(--navy-light-rgb), 0.25), transparent),
                url('../assets/img/sales.webp') no-repeat center center/cover;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
}

.floating-accent-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}
.floating-accent-badge i { font-size: 1.8rem; }
.floating-accent-badge div { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.floating-accent-badge span { display: block; font-size: 1.2rem; font-weight: 800; line-height: 1; margin-top: 2px; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-accent {
    background: rgba(0, 210, 252, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 180, 216, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}
.sf-intro__img-wrap img {
    width: 100%; 
    height: 320px; 
    object-fit: cover;
    border-radius: var(--radius-md); 
    display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    gap: 1rem;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
    border-left: 4px solid var(--color-orange);
    align-items: center;
    gap: 20px;
}

.sf-cover:hover {
    border-color: var(--color-orange);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--navy-light);
}

.sf-cover__icon {
    width: 38px; 
    height: 38px; 
    background: rgba(0, 210, 252, 0.06); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    color: var(--color-orange); 
    font-size: 0.95rem;
}
.sf-cover h3 { font-size: 1.05rem; margin-bottom: 0; font-weight: 700; color: var(--navy-light); }

.sf-why__box {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.sf-why__box .ce-section-title { font-size: 2rem; }
.sf-why__list { list-style: none; margin-top: 1.5rem; }
.sf-why__item-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.sf-why__item-line i { color: var(--color-orange); margin-top: 5px; font-size: 0.9rem; }

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    background: var(--white);
    border: 1px solid var(--color-orange); 
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
}
.sf-schedule__item:hover {
    transform: scale(1.01) translateY(-4px);
    box-shadow: var(--shadow-md);
}

.sf-schedule__num {
    font-size: 2.5rem; 
    font-weight: 900; 
    color: var(--color-orange); 
    opacity: 0.12;
    position: absolute; 
    bottom: 0.5rem; 
    right: 1rem; 
    line-height: 1; 
    transition: var(--transition);
}
.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }

.ce-btn {
    padding: 13px 26px; 
    font-size: 0.9rem; 
    font-weight: 600;
    text-decoration: none; 
    border-radius: 8px; 
    transition: var(--transition);
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    border: none; 
    cursor: pointer;
}
.ce-btn--accent { 
    background-color: var(--color-orange); 
    color: var(--white); 
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.25); 
}
.ce-btn--accent:hover { 
    background-color: var(--color-orange-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.35); 
}

.ce-btn--outline-navy { 
    background-color: transparent; 
    color: var(--navy-light); 
    border: 2px solid var(--navy-light); 
    padding: 11px 24px;
}
.ce-btn--outline-navy:hover { 
    background-color: var(--navy-light); 
    color: var(--white); 
}

.ce-cta-clean {
    text-align: center; 
    padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); 
    color: var(--white);
    position: relative; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}
.ce-cta-clean::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 250px; 
    height: 250px;
    background: radial-gradient(circle, rgba(0, 210, 252, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}
.ce-reveal.ce-visible { 
    opacity: 1; 
    transform: translateY(0); 
}

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-accent-badge { left: 20px; bottom: -15px; }
}
@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.2rem; }
    .ce-section-title { font-size: 1.8rem; }
}
/* Añade esto al final de tu CSS para probar */
.ce-reveal {
    opacity: 1 !important;
    transform: none !important;
}

/*Business Tax*/
:root {
   
    --navy-light: #0B192C;
    --navy-light-rgb: 11, 25, 44;

    --color-sky: #00D2FC;
    --color-sky-light: #E0F7FA;
    --color-orange: #00B4D8;
    --color-orange-rgb: 0, 180, 216;
    --color-orange-hover: #1E3E62;
    --white: #FFFFFF;
    --bg-light: #F4F9FD;
    --text-dark: #1F2937;
    --text-muted: #64748B;
    --border-light: #E5EBF2;
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-xl: 24px;
    --radius-lg: 24px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { color: var(--text-muted); font-size: 0.95rem; }

.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ce-breadcrumb-orange:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span.sf-highlight {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
}

.floating-orange-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 2px dashed rgba(255,255,255,0.4);
}
.floating-orange-badge i { font-size: 1.6rem; }
.floating-orange-badge div { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-orange {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}
.sf-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-md); display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover, .sf-schedule__item {
    background: var(--white);
    border: 1px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    gap: 1rem;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}

.sf-cover:hover, .sf-schedule__item:hover {
    border-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-cover {
    align-items: center;
    gap: 20px;
}

.sf-cover__icon {
    width: 38px; height: 38px; background: rgba(255, 85, 0, 0.06); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--color-orange); font-size: 0.95rem;
}
.sf-cover h3 { font-size: 1.05rem; margin-bottom: 0; font-weight: 700; color: var(--navy-light); }

.sf-why__box {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.sf-why__box .ce-section-title { font-size: 2rem; }
.sf-why__list { list-style: none; margin-top: 1.5rem; }
.sf-why__item-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.sf-why__item-line i { color: var(--color-orange); margin-top: 5px; font-size: 0.9rem; }

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    padding: 2.5rem 1.5rem; 
}
.sf-schedule__num {
    font-size: 2.5rem; font-weight: 900; color: var(--color-orange); opacity: 0.12;
    position: absolute; bottom: 0.5rem; right: 1rem; line-height: 1; transition: var(--transition);
}
.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }
.ce-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}
.ce-btn--orange { 
    background-color: var(--color-orange); color: var(--white); box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}
.ce-btn--orange:hover { 
    background-color: var(--color-orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.ce-btn--outline-navy { 
    background-color: transparent; color: var(--navy-light); border: 2px solid var(--navy-light); padding: 11px 24px;
}
.ce-btn--outline-navy:hover { background-color: var(--navy-light); color: var(--white); }

.ce-cta-clean {
    text-align: center; padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.ce-reveal.ce-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-orange-badge { right: 20px; top: -15px; }
}
@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.1rem; }
    .ce-section-title { font-size: 1.8rem; }
}

/*HACCP PLAN*/
:root {
  
    --navy-light: #0B192C;                
    --navy-light-rgb: 11, 25, 44;          
    --color-sky: #00D2FC;                   
    --color-sky-light: #E0F7FA;            
    
    --color-orange: #00B4D8;             
    --color-orange-rgb: 0, 180, 216;      
    --color-orange-hover: #1E3E62;           
    
    --white: #FFFFFF;
    --bg-light: #F4F9FD;                    
    
    --text-dark: #1F2937;                 
    --text-muted: #64748B;
    --border-light: #E5EBF2;              
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-xl: 24px;
    --radius-lg: 24px;                  
    --radius-md: 14px;               
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { color: var(--text-muted); font-size: 0.95rem; }

/* HERO ASIMÉTRICO (Bento Split Layout) */
.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ce-breadcrumb-orange:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span.sf-highlight {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
}

.floating-orange-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 2px dashed rgba(255,255,255,0.4);
}
.floating-orange-badge i { font-size: 1.6rem; }
.floating-orange-badge div { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-orange {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}
.sf-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-md); display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}
.sf-cover:hover {
    border-color: var(--color-orange);
    border-left-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-cover__icon {
    width: 38px; height: 38px; background: rgba(255, 85, 0, 0.06); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--color-orange); font-size: 0.95rem;
}
.sf-cover h3 { font-size: 1.05rem; margin-bottom: 0; font-weight: 700; color: var(--navy-light); }

.sf-why__box {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.sf-why__box .ce-section-title { font-size: 2rem; }
.sf-why__list { list-style: none; margin-top: 1.5rem; }
.sf-why__item-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.sf-why__item-line i { color: var(--color-orange); margin-top: 5px; font-size: 0.9rem; }

/* Bento Grid - How We Build Your Plan */
.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    background: var(--white);
    border: 1px solid var(--color-orange);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sf-schedule__item:hover {
    border-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-schedule__num {
    font-size: 2.5rem; font-weight: 900; color: var(--color-orange); opacity: 0.12;
    position: absolute; bottom: 0.5rem; right: 1rem; line-height: 1; transition: var(--transition);
}
.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }

.ce-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}
.ce-btn--orange { 
    background-color: var(--color-orange); color: var(--white); box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}
.ce-btn--orange:hover { 
    background-color: var(--color-orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.ce-btn--outline-navy { 
    background-color: transparent; color: var(--navy-light); border: 2px solid var(--navy-light); padding: 11px 24px;
}
.ce-btn--outline-navy:hover { background-color: var(--navy-light); color: var(--white); }

.ce-cta-clean {
    text-align: center; padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.ce-reveal.ce-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-orange-badge { right: 20px; top: -15px; }
}
@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.1rem; }
    .ce-section-title { font-size: 1.8rem; }
}

/*LLC*/
:root {

    --navy-light: #0B192C;             
    --navy-light-rgb: 11, 25, 44;          
    --color-sky: #00D2FC;                
    --color-sky-light: #E0F7FA;            

    --color-orange: #00B4D8;             
    --color-orange-rgb: 0, 180, 216;       
    --color-orange-hover: #1E3E62;        
    
    --white: #FFFFFF;
    --bg-light: #F4F9FD;        
    
    --text-dark: #1F2937;              
    --text-muted: #64748B;
    --border-light: #E5EBF2;               
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-xl: 24px;
    --radius-lg: 24px;                    
    --radius-md: 14px;                
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.sf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.sf-section { padding: 5rem 0; }

h1, h2, h3, h4, strong { 
    color: var(--navy-light); 
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { color: var(--text-muted); font-size: 0.95rem; }

.sf-tag {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.sf-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}

.sf-btn--orange { 
    background-color: var(--color-orange); 
    color: var(--white); 
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}
.sf-btn--orange:hover { 
    background-color: var(--color-orange-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.sf-btn--outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.sf-btn--outline-white:hover {
    background-color: var(--white);
    color: var(--navy-light);
}

.sf-hero-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin: 2rem auto 0 auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.sf-hero-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; pointer-events: none;
}

.sf-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sf-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sf-breadcrumb:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.sf-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.sf-hero-left h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.sf-hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.sf-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.sf-hero-right { position: relative; }

.sf-hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
    background: #E2E8F0;
}
.sf-hero-image-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.sf-intro { background-color: var(--bg-light); }
.sf-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.sf-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-md); display: block;
}

.sf-why { background-color: var(--white); }

.sf-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.sf-why__item {
    border: 1px solid var(--color-orange); 
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sf-why__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sf-why__icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 85, 0, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.sf-why__item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy-light);
}

.sf-entities-section { background-color: var(--bg-light); }

.sf-entities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

.sf-entity-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-orange); 
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sf-entity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sf-entity-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-orange);
    opacity: 0.12;
    line-height: 1;
}

.sf-entity-card__title { 
    font-size: 1.25rem; 
    font-weight: 700;
    margin-bottom: 0.25rem; 
    color: var(--navy-light); 
    max-width: 80%;
}

.sf-entity-card__subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-orange);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.sf-entity-card__list {
    list-style: none;
}
.sf-entity-card__list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.sf-entity-card__list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-orange);
    font-size: 0.9rem;
}

.sf-help { background-color: var(--white); }

.sf-help__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sf-help__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.sf-help__list-item {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--color-orange); 
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sf-help__list-item:hover {
    background-color: var(--bg-light);
    transform: translateX(3px);
}

.sf-help__list-item i {
    font-size: 1.1rem;
    color: var(--color-orange);
    width: 38px;
    height: 38px;
    background: rgba(255, 85, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-help__list-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-light);
}

.ce-cta-clean {
    text-align: center; padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
    margin: 0 1.5rem 4rem 1.5rem;
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.sf-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.sf-reveal.sf-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .sf-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sf-hero-container { padding: 2.5rem 2rem; }
    .sf-hero-image-card { height: 320px; }
    .sf-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 576px) {
    .sf-hero-ctas { flex-direction: column; }
    .sf-btn { width: 100%; }
}

/*EIN*/

:root {
    --navy-light: #0B192C;                 
    --navy-light-rgb: 11, 25, 44;         
    --color-sky: #00D2FC;                  
    --color-sky-light: #E0F7FA;             
    --color-orange: #00B4D8;              
    --color-orange-rgb: 0, 180, 216; 
    --color-orange-hover: #1E3E62;          
    --white: #FFFFFF;
    --bg-light: #F4F9FD;                 
    --text-dark: #1F2937; 
    --text-muted: #64748B;
    --border-light: #E5EBF2; 
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-xl: 24px;
    --radius-lg: 24px; 
    --radius-md: 14px; 
    --radius-sm: 8px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.sf-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem; 
}

.sf-section { 
    padding: 2.5rem 0; 
}

h1, h2, h3, h4, strong { 
    color: var(--navy-light); 
    letter-spacing: -0.02em;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { color: var(--text-muted); font-size: 0.95rem; }

.sf-tag {
    background: rgba(0, 180, 216, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 0.75rem; 
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 180, 216, 0.15);
}

.sf-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 800;
}

.sf-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}

.sf-btn--orange { 
    background-color: var(--color-orange); 
    color: var(--white); 
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.25); 
}
.sf-btn--orange:hover { 
    background-color: var(--color-orange-hover); 
    color: var(--white);
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(11, 41, 44, 0.35); 
}

.sf-btn--outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.sf-btn--outline-white:hover {
    background-color: var(--white);
    color: var(--navy-light);
}

.sf-hero-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 3.5rem; 
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin: 1rem auto 0 auto; 
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.sf-hero-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.07), transparent);
    z-index: 1; pointer-events: none;
}

.sf-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sf-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem; 
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sf-breadcrumb:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.sf-eyebrow-pill {
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
}

.sf-hero-left h1 {
    font-size: clamp(2.5rem, 4.2vw, 3.8rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1rem; 
}

.sf-hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem; 
    max-width: 540px;
    line-height: 1.6;
}

.sf-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.sf-hero-right { position: relative; }

.sf-hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
    background: #E2E8F0;
}
.sf-hero-image-card img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.sf-intro { background-color: var(--bg-light); }
.sf-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem; 
    align-items: center;
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}

.sf-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-md); display: block;
}

.sf-intro__badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--navy-light);
    color: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    width: 110px;
    height: 110px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 2px dashed rgba(0, 212, 252, 0.3);
}
.sf-intro__badge i { font-size: 1.4rem; margin-bottom: 6px; color: var(--color-sky); }

.sf-why { background-color: var(--white); }

.sf-why__box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 1.5rem;
}

.sf-why__box {
    border: 1px solid var(--color-orange); 
    padding: 2rem 1.75rem; /* Reducido */
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sf-why__box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.sf-why__box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--navy-light);
    display: flex;
    align-items: center;
    gap: 12px;
}
.sf-why__box h3 i { color: var(--color-orange); }

.sf-why__list { list-style: none; margin-top: 1rem; }

.sf-why__item-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.75rem; 
}
.sf-why__item-line i {
    color: var(--color-orange);
    margin-top: 4px;
    font-size: 0.95rem;
}

.sf-internal-step {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.sf-internal-step__num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    background-color: var(--navy-light);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 212, 252, 0.2);
}
.sf-internal-step p { margin: 0; padding-top: 4px; }

.sf-schedule { background-color: var(--bg-light); }

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.sf-schedule__item {
    background: var(--white);
    padding: 2rem 1.5rem; 
    border: 1px solid var(--color-orange); 
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.sf-schedule__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sf-schedule__num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-orange);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: right;
}
.sf-schedule__body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.88rem; line-height: 1.5; }


.ce-cta-clean {
    text-align: center; padding: 3.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
    margin: 0 1.5rem 2rem 1.5rem; 
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 1.75rem auto; font-size: 0.95rem; }

.sf-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.sf-reveal.sf-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .sf-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sf-hero-container { padding: 2rem 1.5rem; }
    .sf-hero-image-card { height: 300px; }
    .sf-intro__grid { grid-template-columns: 1fr; gap: 2rem; }
    .sf-why__box-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .sf-hero-ctas { flex-direction: column; }
    .sf-btn { width: 100%; }
}


/*Equipment Repair*/
:root {
  
    --navy-light: #0B192C;            
    --navy-light-rgb: 11, 25, 44;         
    --color-sky: #00D2FC;                  
    --color-sky-light: #E0F7FA;             
    
    --color-orange: #00B4D8;                
    --color-orange-rgb: 0, 180, 216;        
    --color-orange-hover: #1E3E62;           
    --white: #FFFFFF;
    --bg-light: #F4F9FD;          
    --text-dark: #1F2937;                
    --text-muted: #64748B;
    --border-light: #E5EBF2;         
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --radius-xl: 24px;
    --radius-lg: 24px;                      
    --radius-md: 14px;                     
    --radius-sm: 8px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
}

.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; 
    position: absolute; 
    top: -150px; 
    right: -150px;
    width: 400px; 
    height: 400px; 
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; 
    pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ce-breadcrumb-orange:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span.sf-highlight {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
}

.floating-orange-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 2px dashed rgba(255,255,255,0.4);
}

.floating-orange-badge i { font-size: 1.6rem; }
.floating-orange-badge div { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-orange {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}

.sf-intro__img-wrap img {
    width: 100%; 
    height: 320px; 
    object-fit: cover;
    border-radius: var(--radius-md); 
    display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}

.sf-cover:hover {
    border-color: var(--color-orange);
    border-left-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-cover__icon {
    width: 38px; 
    height: 38px; 
    background: rgba(255, 85, 0, 0.06); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    color: var(--color-orange); 
    font-size: 0.95rem;
}

.sf-cover h3 { 
    font-size: 1.05rem; 
    margin-bottom: 0; 
    font-weight: 700; 
    color: var(--navy-light); 
}

.sf-why__box {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.sf-why__box .ce-section-title { font-size: 2rem; }
.sf-why__list { list-style: none; margin-top: 1.5rem; }
.sf-why__item-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; font-size: 0.95rem; }
.sf-why__item-line i { color: var(--color-orange); margin-top: 5px; font-size: 0.9rem; }

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    background: var(--white);
    border: 1px solid var(--color-orange);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column; 
    overflow: hidden; 
    position: relative;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}

.sf-schedule__item:hover {
    border-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-schedule__num {
    font-size: 2.5rem; 
    font-weight: 900; 
    color: var(--color-orange); 
    opacity: 0.12;
    position: absolute; 
    bottom: 0.5rem; 
    right: 1rem; 
    line-height: 1; 
    transition: var(--transition);
}

.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }

.ce-btn {
    padding: 13px 26px; 
    font-size: 0.9rem; 
    font-weight: 600;
    text-decoration: none; 
    border-radius: 8px; 
    transition: var(--transition);
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    border: none; 
    cursor: pointer;
}

.ce-btn--orange { 
    background-color: var(--color-orange); 
    color: var(--white); 
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}

.ce-btn--orange:hover { 
    background-color: var(--color-orange-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.ce-btn--outline-navy { 
    background-color: transparent; 
    color: var(--navy-light); 
    border: 2px solid var(--navy-light); 
    padding: 11px 24px;
}

.ce-btn--outline-navy:hover { 
    background-color: var(--navy-light); 
    color: var(--white); 
}

.ce-cta-clean {
    text-align: center; 
    padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); 
    color: var(--white);
    position: relative; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}

.ce-cta-clean::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 250px; 
    height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}

.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}

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

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-orange-badge { right: 20px; top: -15px; }
}

@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.1rem; }
    .ce-section-title { font-size: 1.8rem; }
}

/*Financial*/

:root {
    --navy-light: #0B192C;                  
    --navy-light-rgb: 11, 25, 44;          
    --color-sky: #00D2FC;                 
    --color-sky-light: #E0F7FA;          
    --color-orange: #00B4D8;               
    --color-orange-rgb: 0, 180, 216;        
    --color-orange-hover: #1E3E62;         

    --white: #FFFFFF;
    --bg-light: #F4F9FD;                    
    --text-dark: #1F2937;                     
    --text-muted: #64748B;
    --border-light: #E5EBF2;                
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-xl: 24px;
    --radius-lg: 24px;                  
    --radius-md: 14px;         
    --radius-sm: 8px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { color: var(--text-muted); font-size: 0.95rem; }

.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ce-breadcrumb-orange:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span.sf-highlight {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 25, 44, 0.25), transparent);
    pointer-events: none;
}

.floating-orange-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 2px dashed rgba(255,255,255,0.4);
}
.floating-orange-badge i { font-size: 1.6rem; }
.floating-orange-badge div { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-orange {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}
.sf-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-md); display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-orange); 
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}
.sf-cover:hover {
    border-color: var(--color-orange);
    border-left-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-cover__icon {
    width: 38px; height: 38px; background: rgba(255, 85, 0, 0.06); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--color-orange); font-size: 0.95rem;
}
.sf-cover h3 { font-size: 1.05rem; margin-bottom: 0; font-weight: 700; color: var(--navy-light); }

.sf-why__box {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.sf-why__box .ce-section-title { font-size: 2rem; }
.sf-why__list { list-style: none; margin-top: 1.5rem; }
.sf-why__item-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.sf-why__item-line i { color: var(--color-orange); margin-top: 5px; font-size: 0.9rem; }


.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    background: var(--white);
    border: 1px solid var(--color-orange); 
    padding: 2.5rem 1.5rem; 
    border-radius: var(--radius-md); 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
}
.sf-schedule__item:hover {
    border-color: var(--navy-light); 
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-schedule__num {
    font-size: 2.5rem; font-weight: 900; color: var(--color-orange); opacity: 0.12;
    position: absolute; bottom: 0.5rem; right: 1rem; line-height: 1; transition: var(--transition);
}
.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }

.ce-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}
.ce-btn--orange { 
    background-color: var(--color-orange); color: var(--white); box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}
.ce-btn--orange:hover { 
    background-color: var(--color-orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.ce-btn--outline-navy { 
    background-color: transparent; color: var(--navy-light); border: 2px solid var(--navy-light); padding: 11px 24px;
}
.ce-btn--outline-navy:hover { background-color: var(--navy-light); color: var(--white); }

.ce-cta-clean {
    text-align: center; padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }
.ce-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.ce-reveal.ce-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-orange-badge { right: 20px; top: -15px; }
}
@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.1rem; }
    .ce-section-title { font-size: 1.8rem; }
}

/*Food Trucks*/
:root {
    --navy-light: #0B192C;                     
    --navy-light-rgb: 11, 25, 44;              
    
    --color-sky: #00D2FC;                      
    --color-sky-light: #E0F7FA;                
    
    --color-orange: #00B4D8;                   
    --color-orange-rgb: 0, 180, 216;           
    --color-orange-hover: #1E3E62;             
    
    --white: #FFFFFF;
    --bg-light: #F4F9FD;                       
    
    --text-dark: #1F2937;                      
    --text-muted: #64748B;
    --border-light: #E5EBF2;                   
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Radios de curvatura */
    --radius-xl: 24px;
    --radius-lg: 24px;                          
    --radius-md: 14px;                          
    --radius-sm: 8px;
    
    /* Sombras optimizadas */
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
}

.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; 
    position: absolute; 
    top: -150px; 
    right: -150px;
    width: 400px; 
    height: 400px; 
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; 
    pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ce-breadcrumb-orange:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span.sf-highlight {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
}

.floating-orange-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 2px dashed rgba(255,255,255,0.4);
}

.floating-orange-badge i { font-size: 1.6rem; }
.floating-orange-badge div { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-orange {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}

.sf-intro__img-wrap img {
    width: 100%; 
    height: 320px; 
    object-fit: cover;
    border-radius: var(--radius-md); 
    display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    gap: 1.25rem;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
    border-left: 4px solid var(--color-orange);
    align-items: flex-start;
}

.sf-cover:hover {
    border-color: var(--color-orange);
    border-left-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-cover__icon {
    width: 42px; 
    height: 42px; 
    background: rgba(255, 85, 0, 0.06); 
    border-radius: var(--radius-sm);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    color: var(--color-orange); 
    font-size: 1.1rem;
}

.sf-cover strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--navy-light); margin-bottom: 6px; }
.sf-cover p { font-size: 0.9rem; margin: 0; }

.ce-options__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.ce-option-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--navy-light);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.ce-option-card:hover {
    border-top-color: var(--color-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.ce-option-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; 
    font-style: italic; 
    font-weight: 800;
    color: rgba(255, 85, 0, 0.08); 
    position: absolute;
    top: 1.5rem; 
    right: 2rem; 
    line-height: 1;
}

.ce-option-card__tag {
    display: inline-block; font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 0.05em; font-weight: 800; color: var(--color-orange); margin-bottom: 0.75rem;
}

.ce-option-card h3 { font-size: 1.35rem; color: var(--navy-light); margin-bottom: 12px; font-weight: 700; }

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    background: var(--white) !important;
    display: flex;
    gap: 1.25rem;
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--color-orange) !important; 
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}

.sf-schedule__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-light) !important;
}

.sf-schedule__num {
    font-size: 2.5rem; font-weight: 900; color: var(--color-orange); opacity: 0.12;
    position: absolute; bottom: 0.5rem; right: 1rem; line-height: 1; transition: var(--transition);
}

.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }

.ce-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}

.ce-btn--orange { 
    background-color: var(--color-orange); color: var(--white); box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}

.ce-btn--orange:hover { 
    background-color: var(--color-orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.ce-btn--white {
    background-color: var(--white); color: var(--navy-light); box-shadow: var(--shadow-sm);
}

.ce-btn--white:hover {
    background-color: var(--color-orange); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md);
}

.ce-btn--outline-navy { 
    background-color: transparent; color: var(--navy-light); border: 2px solid var(--navy-light); padding: 11px 24px;
}

.ce-btn--outline-navy:hover { background-color: var(--navy-light); color: var(--white); }

.ce-cta-clean {
    text-align: center; 
    padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); 
    color: var(--white);
    position: relative; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}

.ce-cta-clean::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    right: 0; 
    width: 250px; 
    height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}

.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
}

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

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-orange-badge { right: 20px; top: -15px; }
}

@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.1rem; }
    .ce-section-title { font-size: 1.8rem; }
}

/*Catering event*/
:root {
    --navy-light: #0B192C;                     
    --navy-light-rgb: 11, 25, 44;              
    
    --color-sky: #00D2FC;                     
    --color-sky-light: #E0F7FA;               
    
    --color-orange: #00B4D8;              
    --color-orange-rgb: 0, 180, 216;          
    --color-orange-hover: #1E3E62;             
    --white: #FFFFFF;
    --bg-light: #F4F9FD;                     
    --text-dark: #1F2937;                     
    --text-muted: #64748B;
    --border-light: #E5EBF2;                   
    
    /* Nuevas Fuentes integradas */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --radius-xl: 24px;
    --radius-lg: 24px;                       
    --radius-md: 14px;                        
    --radius-sm: 8px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 210, 252, 0.05), 0 2px 4px -1px rgba(11, 25, 44, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(11, 25, 44, 0.05), 0 8px 10px -6px rgba(11, 25, 44, 0.05);
    --shadow-lg: 0 20px 32px -7px rgba(11, 25, 44, 0.08), 0 12px 14px -8px rgba(11, 25, 44, 0.04);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body.page-subpage {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.ce-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

h1, h2, h3, h4, strong {
    color: var(--navy-light);
    letter-spacing: -0.02em;
}

em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-orange);
}

p { color: var(--text-muted); font-size: 0.95rem; }

.hero-split-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--color-orange);
    box-shadow: var(--shadow-lg);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-split-container::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.07), transparent);
    z-index: 1; pointer-events: none;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ce-breadcrumb-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ce-breadcrumb-orange:hover { 
    color: var(--navy-light);
    transform: translateX(-3px);
}

.ce-eyebrow-pill {
    background: rgba(255, 85, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-split-left h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.5rem);
    line-height: 1.15;
    font-weight: 900;
    color: var(--navy-light);
    margin-bottom: 1.5rem;
}

.hero-split-left h1 span.sf-highlight {
    color: var(--color-orange);
}

.hero-split-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-split-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-split-right {
    position: relative;
}

.hero-image-card {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.15);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
}

.hero-image-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(var(--navy-light-rgb), 0.25), transparent);
    pointer-events: none;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-orange-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--color-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 2px dashed rgba(255,255,255,0.4);
}
.floating-orange-badge i { font-size: 1.6rem; }
.floating-orange-badge div { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

.ce-section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.ce-tag-orange {
    background: rgba(255, 85, 0, 0.08);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.sf-intro__img-wrap {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}
.sf-intro__img-wrap img {
    width: 100%; height: 320px; object-fit: cover;
    border-radius: var(--radius-md); display: block;
}

.ce-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.sf-covers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-cover {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--color-orange);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex; 
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm); 
    transition: var(--transition);
}
.sf-cover:hover {
    border-color: var(--color-orange);
    border-left-color: var(--navy-light);
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-cover__icon {
    width: 38px; height: 38px; background: rgba(255, 85, 0, 0.06); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--color-orange); font-size: 0.95rem;
}
.sf-cover h3 { font-size: 1.05rem; margin-bottom: 0; font-weight: 700; color: var(--navy-light); }

.sf-why__box {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.sf-why__box .ce-section-title { font-size: 2rem; }
.sf-why__list { list-style: none; margin-top: 1.5rem; }
.sf-why__item-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
.sf-why__item-line i { color: var(--color-orange); margin-top: 5px; font-size: 0.9rem; }

.sf-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 6rem;
}

.sf-schedule__item { 
    background: var(--white);
    border: 1px solid var(--color-orange); 
    padding: 2.5rem 1.5rem; 
    border-radius: var(--radius-md); 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    position: relative; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
}
.sf-schedule__item:hover {
    border-color: var(--navy-light); 
    transform: scale(1.01) translateX(3px);
    box-shadow: var(--shadow-md);
}

.sf-schedule__num {
    font-size: 2.5rem; font-weight: 900; color: var(--color-orange); opacity: 0.12;
    position: absolute; bottom: 0.5rem; right: 1rem; line-height: 1; transition: var(--transition);
}
.sf-schedule__item:hover .sf-schedule__num { opacity: 0.4; transform: scale(1.1); }
.sf-schedule__body h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; color: var(--navy-light); }
.sf-schedule__body p { font-size: 0.85rem; position: relative; z-index: 2; color: var(--text-muted); }

.ce-btn {
    padding: 13px 26px; font-size: 0.9rem; font-weight: 600;
    text-decoration: none; border-radius: 8px; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer;
}
.ce-btn--orange { 
    background-color: var(--color-orange); color: var(--white); box-shadow: 0 5px 15px rgba(255, 85, 0, 0.25); 
}
.ce-btn--orange:hover { 
    background-color: var(--color-orange-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 85, 0, 0.35); 
}

.ce-btn--outline-navy { 
    background-color: transparent; color: var(--navy-light); border: 2px solid var(--navy-light); padding: 11px 24px;
}
.ce-btn--outline-navy:hover { background-color: var(--navy-light); color: var(--white); }

.ce-cta-clean {
    text-align: center; padding: 4.5rem 2rem;
    background: linear-gradient(180deg, var(--navy-light), #0b1e30);
    border-radius: var(--radius-xl); color: var(--white);
    position: relative; overflow: hidden;
    box-shadow: 0 15px 35px rgba(20, 53, 85, 0.2);
}
.ce-cta-clean::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 70%);
}
.ce-cta-clean h3 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.ce-cta-clean p { color: rgba(255, 255, 255, 0.75); max-width: 540px; margin: 0 auto 2.5rem auto; font-size: 0.95rem; }

.ce-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.ce-reveal.ce-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .ce-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-split-container { padding: 2.5rem 2rem; }
    .hero-image-card { height: 320px; }
    .floating-orange-badge { right: 20px; top: -15px; }
}
@media (max-width: 576px) {
    .hero-split-ctas { flex-direction: column; }
    .hero-split-left h1 { font-size: 2.1rem; }
    .ce-section-title { font-size: 1.8rem; }
}