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

body {
    background: #ffffff;
    font-family:
        "Optima", "Segoe UI", "Apple SD Gothic Neo", "Lucida Grande",
        "Lucida Sans Unicode", "Avenir", sans-serif;
    scroll-behavior: smooth;
    padding-top: 86px;
    overflow-x: hidden;
    font-weight: 400 !important;
}

body.nav-shrunk {
    padding-top: 62px;
}

p {
    font-weight: 400 !important;
}

/* ========= ULTRA SMOOTH SCROLL ANIMATIONS ========= */
@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes smoothFadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes smoothFadeRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes smoothScale {
    0% {
        opacity: 0;
        transform: scale(0.94);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes smoothGlide {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtlePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 31, 58, 0.1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(11, 31, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 31, 58, 0);
    }
}

/* Animation base classes - all start hidden */
.fade-up,
.fade-left,
.fade-right,
.scale-in,
.glide-in {
    opacity: 0;
    will-change: transform, opacity;
}

/* Animation when revealed */
.fade-up.revealed {
    animation: smoothFadeUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
.fade-left.revealed {
    animation: smoothFadeLeft 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
.fade-right.revealed {
    animation: smoothFadeRight 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
.scale-in.revealed {
    animation: smoothScale 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
.glide-in.revealed {
    animation: smoothGlide 0.7s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0s;
    animation-delay: 0.05s;
}
.delay-2 {
    transition-delay: 0s;
    animation-delay: 0.1s;
}
.delay-3 {
    transition-delay: 0s;
    animation-delay: 0.15s;
}
.delay-4 {
    transition-delay: 0s;
    animation-delay: 0.2s;
}
.delay-5 {
    transition-delay: 0s;
    animation-delay: 0.25s;
}
.delay-6 {
    transition-delay: 0s;
    animation-delay: 0.3s;
}

/* Parallax effect on background sections */
.hero-section,
.bg-section {
    transition: transform 0.2s ease-out;
    will-change: background-position;
}

/* Hover animations - super smooth */
.grid-card,
.product-card,
.nav-btn,
.cta-button {
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.grid-card:hover,
.product-card:hover {
    transform: translateY(-8px) scale(1.01);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.cta-button:hover,
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.12);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.icon-item {
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.icon-item:hover {
    transform: translateX(5px);
}

/* ========= ANIMATED STICKY TOP NAVIGATION ========= */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 60px;
    height: 86px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(11, 31, 58, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.top-nav.scrolled {
    height: 62px;
    padding: 0 60px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(11, 31, 58, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.nav-logo img {
    height: 90px;
    width: auto;
    display: block;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.top-nav.scrolled .nav-logo img {
    height: 100px;
}
.nav-logo:hover img {
    transform: scale(1.03);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 48px;
}
.nav-menu {
    display: flex;
    gap: 36px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #1a2c3e;
    text-transform: uppercase;
}
.nav-menu a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}
.nav-menu a:hover {
    color: #0e0e0e;
}
.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #17015e;
    transition: width 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.nav-menu a:hover::after {
    width: 100%;
}
.nav-btn {
    background-color: #0e0e0e;
    color: white;
    border: none;
    padding: 10px 26px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.nav-btn:hover {
    background-color: #112b48;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 31, 58, 0.2);
}
.top-nav.scrolled .nav-btn {
    padding: 6px 20px;
    font-size: 11px;
}

/* ========= FULL WIDE SECTIONS ========= */
.hero-section {
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: flex;
    align-items: center;
    min-height: 750px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 80px;
    color: #0e0e0e;
}

.hero-section .headline {
    font-size: 58px;
    font-family: "Canela" !important;
    font-weight: 400;
    line-height: 1.2;
    color: #0e0e0e;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-section .body-text {
    font-size: 18px;
    line-height: 1.6;
    color: #2e4156;
    margin-bottom: 40px;
}

.hero-section .cta-button {
    background-color: #2b0064;
    color: white;
    border: none;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 4px;
    width: fit-content;
    cursor: pointer;
    text-transform: uppercase;
}

.hero-section .icon-row {
    margin-top: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-section .icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.hero-section .icon-item svg {
    width: 30px;
    height: 30px;
    stroke: #5c6f82;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s ease;
}
.hero-section .icon-item:hover svg {
    stroke: #17015e;
}
.hero-section .icon-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #2e4156;
    text-transform: uppercase;
}

.gray-spacer {
    width: 100%;
    background: #f5f6f8;
    padding: 60px 0;
    text-align: center;
}
.gray-spacer p {
    font-size: 16px;
    color: #5d6f7f;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.bg-section {
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    display: flex;
    align-items: center;
    min-height: 650px;
}

.bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.bg-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 80px;
    color: #0e0e0e;
}

.bg-content .breadcrumb {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5d6f7f;
    margin-bottom: 20px;
    font-weight: 500;
}

.bg-content .section-title {
    font-size: 52px;
    font-weight: 400;
    color: #0e0e0e;
    margin-bottom: 20px;
}

.bg-content .section-subhead {
    font-size: 30px;
    font-weight: 500;
    color: #2e4156;
    margin-bottom: 28px;
    line-height: 1.3;
}

.bg-content .section-text {
    font-size: 18px;
    color: #3a4c5e;
    line-height: 1.7;
}

.section-spacer {
    height: 100px;
    background: transparent;
}

.main-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.wide-container {
    width: 100%;
    padding: 0 80px;
}

.full-width-gray {
    width: 100%;
    background: #f5f6f8;
}

.full-width-gray .wide-container {
    padding: 0 80px;
}

.partner-section {
    width: 100%;
    background: #f5f6f8;
    text-align: center;
    padding: 100px 80px;
}

.split-section {
    width: 100%;
    display: flex;
    gap: 100px;
    padding: 100px 80px;
    background: white;
}

.split-left-white {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right-image {
    flex: 1;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6f8;
    border-radius: 16px;
    overflow: hidden;
}

.split-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.split-right-image:hover img {
    transform: scale(1.03);
}

.centered-eyebrow {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5d6f7f;
    margin-bottom: 24px;
    font-weight: 600;
}
.large-statement {
    font-size: 52px;
    font-weight: 400 !important;
    color: #0e0e0e !important;
    margin-bottom: 24px;
    line-height: 1.2;
}
.supporting-text {
    max-width: 750px;
    margin: 0 auto 70px;
    font-size: 18px;
    color: #3a4c5e;
    line-height: 1.6;
}
.grid-5 {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.grid-card {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 36px 28px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.grid-card h4 {
    font-size: 20px;
    font-weight: 400 !important;
    margin-bottom: 14px;
    color: #0e0e0e;
}
.grid-card p {
    font-size: 15px;
    color: #4a5e72;
    line-height: 1.5;
}

.products-grid {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}
.product-card {
    flex: 1;
    background: #f5f6f8;
    padding: 36px 32px;
    border-radius: 16px;
}
.product-card h4 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #0e0e0e;
}
.product-card p {
    font-size: 15px;
    color: #4a5e72;
    line-height: 1.5;
}

.policy-split {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    padding: 100px 0;
}
.bullet-list {
    list-style: none;
}
.bullet-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    color: #3a4c5e;
    line-height: 1.5;
    cursor: pointer;
}
.bullet-list li:hover {
    transform: translateX(5px);
}
.bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0e0e0e;
    font-weight: 400;
    font-size: 20px;
}

.framework-split {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 100px;
}
.framework-left h3 {
    font-size: 36px;
    font-weight: 400 !important;
    margin-bottom: 24px;
    color: #0e0e0e;
}
.framework-left p {
    font-size: 18px;
    color: #3a4c5e;
    line-height: 1.6;
}
.framework-right p {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.3;
    color: #0e0e0e;
}

.execution-steps {
    display: flex;
    gap: 60px;
    padding: 80px 80px;
    flex-wrap: wrap;
    background: white;
}
.step-item {
    flex: 1;
    min-width: 280px;
}
.step-number {
    font-size: 42px;
    font-weight: 400;
    color: #0e0e0e;
    margin-bottom: 16px;
}
.step-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 14px;
}
.step-desc {
    font-size: 16px;
    color: #4a5e72;
    line-height: 1.5;
}

.centered-content {
    text-align: center;
    padding: 80px 80px;
    background: white;
}

.breadcrumb {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c49a6c;
    margin-bottom: 15px;
}

.final-quote {
    text-align: center;
    padding: 80px 80px;
    background: white;
}

.final-quote {
    padding-top: 30px !important;
    padding-bottom: 25px !important;
}

.final-quote p {
    font-size: 36px;
    color: #0e0e0e;
    line-height: 1.5;
    font-weight: 500;
}

footer {
    background-color: #0e0e0e;
    color: white;
    padding: 80px 0 40px;
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-col {
    flex: 1;
    min-width: 220px;
}
.footer-logo-img {
    margin-bottom: 20px;
}
.footer-logo-img img {
    height: 60px;
    width: auto;
    display: block;
}
.footer-sub {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #9aabbb;
}
.footer-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #cbd5e1;
    max-width: 280px;
    margin-top: 20px;
}
.footer-col h4 {
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-weight: 400;
}
.footer-col p,
.footer-col a {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 14px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}
.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}
.social-icons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}
.social-icons span {
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.social-icons span:hover {
    color: white;
    transform: translateY(-2px);
}
.bottom-bar {
    border-top: 1px solid #2a4058;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9aabbb;
}

.section-anchor {
    scroll-margin-top: 86px;
}

@media (max-width: 1400px) {
    .hero-content,
    .bg-content {
        padding: 80px 60px;
    }
    .hero-section .headline {
        font-size: 52px;
    }
    .bg-content .section-title {
        font-size: 46px;
    }
    .split-section {
        padding: 80px 60px;
        gap: 60px;
    }
    .wide-container {
        padding: 0 60px;
    }
    .full-width-gray .wide-container {
        padding: 0 60px;
    }
    .partner-section {
        padding: 80px 60px;
    }
    .footer-container {
        padding: 0 60px;
    }
    .execution-steps {
        padding: 60px 60px;
    }
    .centered-content {
        padding: 60px 60px;
    }
    .final-quote {
        padding: 60px 60px;
    }
    .gray-spacer {
        padding: 50px 0;
    }
    .section-spacer {
        height: 80px;
    }
}
@media (max-width: 1100px) {
    .hero-section,
    .bg-section {
        background-size: cover;
        background-position: center;
        min-height: 550px;
    }
    .hero-section::before,
    .bg-section::before {
        width: 100%;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.85) 100%
        );
    }
    .hero-content,
    .bg-content {
        padding: 60px 40px;
        max-width: 100%;
    }
    .hero-section .headline {
        font-size: 44px;
    }
    .bg-content .section-title {
        font-size: 40px;
    }
    .bg-content .section-subhead {
        font-size: 26px;
    }
    .split-section {
        flex-direction: column;
        gap: 60px;
        padding: 60px 40px;
    }
    .split-right-image {
        min-height: 350px;
        width: 100%;
    }
    .wide-container {
        padding: 0 40px;
    }
    .full-width-gray .wide-container {
        padding: 0 40px;
    }
    .partner-section {
        padding: 70px 40px;
    }
    .footer-container {
        padding: 0 40px;
    }
    .products-grid {
        flex-direction: column;
    }
    .execution-steps {
        flex-direction: column;
        padding: 50px 40px;
    }
    .centered-content {
        padding: 50px 40px;
    }
    .policy-split {
        flex-direction: column;
        gap: 50px;
    }
    .framework-split {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .top-nav {
        padding: 0 30px;
    }
    .large-statement {
        font-size: 44px;
    }
    .final-quote p {
        font-size: 30px;
    }
    .final-quote {
        padding: 50px 40px;
    }
    .gray-spacer {
        padding: 40px 0;
    }
    .section-spacer {
        height: 60px;
    }
    .nav-logo img {
        height: 40px;
    }
    .top-nav.scrolled .nav-logo img {
        height: 100px;
    }
    .footer-logo-img img {
        height: 40px;
    }
}
@media (max-width: 768px) {
    .top-nav {
        padding: 0 20px;
    }
    .nav-menu {
        gap: 10px;
        font-size: 9px;
    }
    .nav-right {
        gap: 12px;
    }
    .hero-content,
    .bg-content {
        padding: 50px 25px;
    }
    .hero-section .headline {
        font-size: 34px;
    }
    .bg-content .section-title {
        font-size: 34px;
    }
    .bg-content .section-subhead {
        font-size: 22px;
    }
    .large-statement {
        font-size: 36px;
    }
    .split-section {
        padding: 40px 20px;
        gap: 40px;
    }
    .wide-container {
        padding: 0 20px;
    }
    .full-width-gray .wide-container {
        padding: 0 20px;
    }
    .partner-section {
        padding: 50px 20px;
    }
    .footer-container {
        padding: 0 20px;
    }
    .split-right-image {
        min-height: 280px;
    }
    .execution-steps {
        padding: 40px 20px;
    }
    .centered-content {
        padding: 40px 20px;
    }
    .hero-section .icon-row {
        gap: 25px;
    }
    .grid-card {
        padding: 28px 20px;
    }
    .final-quote {
        padding: 40px 20px;
    }
    .final-quote p {
        font-size: 24px;
    }
    .gray-spacer {
        padding: 30px 0;
    }
    .gray-spacer p {
        font-size: 13px;
    }
    .section-spacer {
        height: 40px;
    }
    .nav-logo img {
        height: 10px;
    }
    .top-nav.scrolled .nav-logo img {
        height: 100px;
    }
    .footer-logo-img img {
        height: 35px;
    }
}
