:root {
    --color-black: #060606;
    --color-gray: #A5A5A1;
    --color-dark-gray: #686863;
    --color-divider: #E3E2DD;
    --color-button: #D1242B;
    --color-white: #FFFFFF;
    --color-background: #FAFAFA;
    --color-light-gray: #F4F4F4;
    --font-primary: 'Hanken Grotesk', sans-serif;
    --font-size-base: 16px;
    --font-size-large: 18px;
    --font-size-heading: 64px;
    --line-height-base: 1.5em;
    --line-height-heading: 1.125em;
    --line-height-subheading: 1.444em;
    --transition-speed: 0.3s;
    --container-width: 1440px;
    --padding-x: 32px;
}

.Vertical-Line1 {
    width: 1px;
    height: 50px;
    /* adjust as needed */
    background-color: #E3E2DE;
    margin: 0 1px;
    /* space around line */
}

.Vertical-Line {
    width: 1px;
    height: 88px;
    /* adjust as needed */
    background-color: #E3E2DE;
    margin: 0 1px;
    /* space around line */
}

/* Cross-browser vendor prefixes and fallbacks */

@media (max-width: 768px) {
    .Vertical-Line {
        display: none;
    }
    .Vertical-Line1 {
        display: none;
    }
}

@media (max-width: 540px) {
    body::before {
        display: none;
    }
}

/* body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(to right, #E3E2DE 1px, transparent 1px);
    background-size: calc(100vw / 8) 100%;
    pointer-events: none;
    z-index: 1000;
}


.no-grid {
    position: relative;
    z-index: 1001;
} */

/* Cross-browser vendor prefixes and fallbacks */

@supports not (display: flex) {
    .Top-Menu,
    .Social-Media,
    .Nav-Menu,
    .Main-Nav,
    .Contact-Item,
    .Nav-Links,
    .CTA-Button {
        display: inline-block;
        vertical-align: middle;
    }
}

@supports not (--color-black: #060606) {
    /* Fallback for browsers that don't support CSS variables */
    .Header {
        background-color: #FFFFFF;
    }
    .Contact-Item span,
    .Nav-Link {
        color: #060606;
    }
    .CTA-Button {
        background-color: #D1242B;
    }
    .CTA-Button span {
        color: #FFFFFF;
    }
}

/* Reset Styles */

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

.Header {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-black);
    background-color: var(--color-background);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Header Styles */

.Header {
    width: 100%;
    border-bottom: 1px solid var(--color-divider);
    background-color: var(--color-white);
}

/* Top Menu Styles */

.Top-Menu {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 0 var(--padding-x); */
    height: 56px;
    /* border-bottom: 1px solid var(--color-divider); */
    gap: 40px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.Social-Media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.Social-Icon {
    width: 24px;
    height: 24px;
    transition: opacity var(--transition-speed);
}

.Social-Icon:hover {
    opacity: 0.8;
}

.Divider-Vertical {
    height: 24px;
}

.Divider-Horizontal {
    width: 1px;
}

.Nav-Menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.Top-Nav-Menu {
    margin-left: auto;
}

.Contact-Item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.Contact-Item img {
    width: 20px;
    height: 20px;
}

.Contact-Item span {
    color: var(--color-black);
}

/* Main Navigation Styles */

.Main-Nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px var(--padding-x);
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    /* border-top: 1px solid var(--color-divider); */
}

.Logo {
    max-width: 150px;
    height: auto;
}

.Nav-Links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 767px;
}

.Nav-Link {
    color: var(--color-black);
    transition: color var(--transition-speed);
    font-weight: 400;
}

.Nav-Link:hover {
    color: var(--color-button);
}

/* CTA Button Styles */

.CTA-Button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    background-color: var(--color-button);
    width: 185px;
    transition: background-color var(--transition-speed);
}

.CTA-Button span {
    color: var(--color-white);
}

.CTA-Button:hover {
    background-color: #D1242B;
    ;
    /* Slightly darker shade for hover */
}

/* Animation and Transition Styles */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    -moz-transition: opacity 0.6s ease, -moz-transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
}

/* Sticky Header Styles */

.Header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.Header.sticky {
    position: fixed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--color-white);
}

.Header.header-hidden {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
}

/* Responsive Styles */

@media screen and (max-width: 1200px) {
    .Nav-Links {
        width: auto;
        margin: 0 6px;
        gap: 16px;
    }
    .Main-Nav {
        flex-wrap: wrap;
        /* gap: 16px; */
        /* justify-content: center; */
    }
    .Divider-Horizontal {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .Nav-Menu {
        gap: 4px;
    }
    .Divider-Vertical {
        display: none;
    }
    .Contact-Item {
        margin: 4px 8px;
        justify-content: flex-start;
    }
    .Main-Nav {
        /* padding: 5px var(--padding-x); */
        /* flex-direction: column; */
        /* gap: 24px; */
    }
    .Logo {
        max-width: 130px;
    }
    .Nav-Links {
        /* gap: 24px; */
        /* margin: 0 6px; */
    }
    .CTA-Button {
        width: 100%;
        max-width: 150px;
        margin: 8px 0;
    }
}

@media screen and (max-width: 768px) {
    .Top-Menu {
        /* padding: 12px 16px; */
        display: none;
    }
    .Hero-Info {
        /* display: Inline; */
        flex-direction: column;
    }
    .Social-Media {
        width: 100%;
        justify-content: center;
        margin-bottom: 8px;
    }
    .Top-Nav-Menu {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .Contact-Item {
        width: 100%;
        justify-content: flex-start;
    }
    .Main-Nav {
        padding: 16px;
        align-items: start;
        justify-content: inherit;
    }
    /* Mobile Navigation Styles */
    .Nav-Links {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        align-items: flex-start;
        text-align: center;
        display: none;
        /* Hidden by default on mobile, shown via JavaScript */
        padding: 20px 0;
        margin-top: 15px;
        background-color: var(--color-white);
        border-top: 1px solid var(--color-divider);
    }
    .Nav-Links.active {
        display: flex;
    }
    .Nav-Link {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--color-divider);
        font-size: 18px;
    }
    /* Hamburger Menu Styles */
    .Mobile-Menu-Toggle {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 24px;
        position: relative;
        margin: 8px 0;
    }
    .Mobile-Menu-Toggle span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--color-black);
        border-radius: 3px;
        transition: all var(--transition-speed);
    }
    .CTA-Button {
        display: none;
    }
}

.Mobile-Menu-Toggle span:nth-child(1) {
    top: 0;
}

.Mobile-Menu-Toggle span:nth-child(2) {
    top: 10px;
}

.Mobile-Menu-Toggle span:nth-child(3) {
    top: 20px;
}

.Mobile-Menu-Toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    top: 10px;
}

.Mobile-Menu-Toggle.active span:nth-child(2) {
    opacity: 0;
}

.Mobile-Menu-Toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    top: 10px;
}

.Mobile-Menu-Toggle {
    display: none;
}

@media screen and (max-width: 1000px) {
    .Mobile-Menu-Toggle {
        display: block;
        width: 30px;
        height: 25px;
        position: absolute;
        top: 40px;
        right: 20px;
        z-index: 1000;
    }
    .Hero-Info {
        flex-direction: column;
    }
    .Logo {
        /* align-items: start; */
        /* position: relative;
        right:12px ; */
        /* padding-top: 60px; */
        /* Make space for the toggle button */
    }
    /* Make sure nav links are hidden by default on mobile */
    .Nav-Links {
        display: none;
        width: 100%;
    }
    .Nav-Links.active {
        display: flex;
    }
}

.home-sec8-footer-section {
    background-color: #F4F4F4;
    padding: 80px 104px 40px;
    overflow: hidden;
}

.home-sec8-footer-container {
    /* max-width: 1312px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden;
}

.home-sec8-footer-header {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.home-sec8-footer-main-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 152px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #E3E2DD;
    margin: 0;
    white-space: nowrap;
    display: inline-block;
    animation: marquee 30s linear infinite;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateY(-50%) translateX(100vw);
    }
    100% {
        transform: translateY(-50%) translateX(-100%);
    }
}

.home-sec8-footer-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.home-sec8-footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 200px;
}

.home-sec8-footer-column:first-child {
    width: 230px;
}

.home-sec8-footer-column:nth-child(2) {
    width: 144px;
}

.home-sec8-footer-column.newsletter {
    width: 270px;
    height: 128px;
}

.home-sec8-footer-column-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.33;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #060606;
    margin: 0;
}

.home-sec8-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-sec8-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-sec8-contact-icon {
    width: 16px;
    height: 16px;
    fill: #E3E2DD;
}

.home-sec8-contact-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #060606;
}

.home-sec8-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-sec8-footer-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #060606;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-sec8-footer-link:hover {
    color: #D1242B;
}

.home-sec8-newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E3E2DD;
    padding: 24px 0;
    gap: 8px;
}

.home-sec8-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #686863;
}

.home-sec8-newsletter-input::placeholder {
    color: #686863;
}

.home-sec8-newsletter-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.3s ease;
}

.home-sec8-newsletter-btn:hover {
    opacity: 0.7;
}

.home-sec8-newsletter-arrow {
    width: 16px;
    height: 16px;
    stroke: #060606;
    stroke-width: 1;
}

.home-sec8-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.home-sec8-footer-logo-container {
    display: flex;
    justify-content: center;
    margin: 0 auto 40px;
}

.home-sec8-footer-logo-img {
    height: 150px;
    width: auto;
    border-radius: 4px;
}

.home-sec8-footer-copyright {
    width: 100%;
    text-align: center;
}

.home-sec8-footer-copyright p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

/* Mobile Footer Design */

@media (max-width: 768px) {
    .home-sec8-footer-section {
        padding: 40px 20px 24px;
        overflow: hidden;
    }
    .home-sec8-footer-container {
        gap: 40px;
        overflow: hidden;
    }
    .home-sec8-footer-header {
        height: 120px;
    }
    .home-sec8-footer-main-title {
        font-size: 64px;
        line-height: 1.1;
        animation-duration: 20s;
    }
    .home-sec8-footer-logo-container {
        margin: 0 auto 32px;
    }
    .home-sec8-footer-logo-img {
        height: 80px;
    }
    .home-sec8-footer-content {
        flex-direction: column;
        gap: 32px;
        max-width: 100%;
    }
    .home-sec8-footer-column,
    .home-sec8-footer-column:first-child,
    .home-sec8-footer-column:nth-child(2),
    .home-sec8-footer-column.newsletter {
        width: 100%;
        height: auto;
    }
    .home-sec8-footer-bottom {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .home-sec8-footer-section {
        padding: 32px 16px 20px;
    }
    .home-sec8-footer-container {
        gap: 32px;
    }
    .home-sec8-footer-header {
        height: 80px;
    }
    .home-sec8-footer-main-title {
        font-size: 48px;
        line-height: 1.1;
        animation-duration: 15s;
    }
    .home-sec8-footer-logo-container {
        margin: 0 auto 24px;
    }
    .home-sec8-footer-logo-img {
        height: 60px;
    }
    .home-sec8-footer-column-title {
        font-size: 20px;
    }
    .home-sec8-contact-text,
    .home-sec8-footer-link {
        font-size: 14px;
    }
    .home-sec8-newsletter-input {
        font-size: 14px;
    }
    .home-sec8-footer-copyright p {
        font-size: 14px;
    }
}

/* Large Screen Optimization */

@media (min-width: 1400px) {
    .home-sec8-footer-main-title {
        font-size: 180px;
        animation-duration: 40s;
    }
    .home-sec8-footer-logo-img {
        height: 180px;
    }
}

@media (min-width: 1200px) {
    .home-sec8-footer-content {
        max-width: 1000px;
        gap: 80px;
    }
}

/* Reset and Base Styles */

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    background-color: #0f0f0f;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.main-container {
    font-family: var(--font-primary);
    background: #0f0f0f;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* CSS Variables */

:root {
    --nbx-red: #ff2e2e;
    --nbx-dark: #0f0f0f;
    --nbx-gray: #1a1a1a;
    --nbx-light-gray: #cccccc;
}

/* Enhanced Animation System */

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(-50%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(-50%);
        opacity: 0;
    }
}

@keyframes text-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes floating-decorative {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes typewriter {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

/* Utility Classes */

.gradient-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, var(--nbx-dark), var(--nbx-gray), #2a2a2a, var(--nbx-dark));
    background-size: 400% 400%;
    animation: gradient-shift 8s ease-in-out infinite;
}

.parallax-bg {
    /* Keep image fixed without parallax movement */
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: none !important;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Simple hover without animations */

.premium-hover {
    transition: none;
}

.premium-hover:hover {
    /* No hover animations */
}

/* Card stability classes */

.card-stable {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto;
    margin-right: auto;
}

.glow-button {
    position: relative;
    overflow: hidden;
}

/* Only apply floating animation to decorative elements */

.floating-decorative {
    animation: floating-decorative 4s ease-in-out infinite;
}

.luxury-border {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, hsla(0, 100%, 59%, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, hsla(0, 100%, 59%, 0.05) 0%, transparent 50%);
}

/* Enhanced scroll animation system */

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays */

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

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

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

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

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

/* Hero Section */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    opacity: 0.4;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: hsla(0, 100%, 59%, 0.3);
    animation: particle-float 4s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    animation: slide-up 0.8s ease-out forwards;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    animation: hero-title-reveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes hero-title-reveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.text-highlight {
    color: var(--nbx-red);
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nbx-red);
    opacity: 0.5;
    border-radius: 2px;
    animation: fade-in 0.6s ease-out forwards;
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 22px);
    margin-bottom: 3rem;
    color: #d1d5db;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0;
    animation: fade-in-up 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: scale-in 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}

/* Clean minimal border design for all buttons */

.btn-primary,
.btn-secondary {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    border-radius: 6px;
}

.btn-primary {
    background: var(--nbx-red);
    color: white;
}

.btn-primary:hover {
    /* background: #d41c1c; */
    background: #D1242B;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
}

/* Floating icons - keep floating animation for decorative elements */

.floating-icon {
    position: absolute;
    color: var(--nbx-red);
    opacity: 0.2;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.icon-1 {
    top: -5rem;
    left: -5rem;
    font-size: 4rem;
    animation-delay: 0s;
}

.icon-2 {
    top: -2.5rem;
    right: -5rem;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.icon-3 {
    bottom: -5rem;
    left: -2.5rem;
    font-size: 3rem;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fade-in 1s ease 1s both;
}

/* Replace mouse with vertical line indicator like Case Studies */

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(6px);
    }
}

/* How It Works Section */

.how-it-works-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--nbx-gray), var(--nbx-dark), #000000);
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 46, 46, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 46, 46, 0.05) 0%, transparent 50%);
    opacity: 0.3;
}

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

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--nbx-red);
}

.section-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #d1d5db;
    max-width: 64rem;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

.steps-content {
    margin-bottom: 4rem;
}

.steps-title {
    font-family: var(--font-primary);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.steps-description {
    text-align: center;
    color: #9ca3af;
    max-width: 64rem;
    margin: 0 auto 4rem;
    font-size: 16px;
    line-height: 1.7;
}

.brand-highlight {
    color: var(--nbx-red);
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Angular geometric border design for step cards */

.step-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    transform: translateY(0);
    justify-self: center;
    width: 100%;
    max-width: 350px;
    min-height: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.6), rgba(255, 46, 46, 0.2), rgba(145, 34, 34, 0.3));
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
    z-index: -1;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--nbx-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2.8vw, 32px);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.step-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-arrow {
    color: var(--nbx-red);
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Services Section */

.services-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-bg-services {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a, var(--nbx-dark), #0a0a0a);
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2.6vw, 22px);
    color: #d1d5db;
    max-width: 56rem;
    margin: 0 auto 2rem;
    font-weight: 600;
    line-height: 1.7;
}

.options-header {
    text-align: center;
    margin-bottom: 3rem;
}

.options-title {
    font-family: var(--font-primary);
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.title-divider {
    width: 4rem;
    height: 0.25rem;
    background: var(--nbx-red);
    margin: 0 auto;
    border-radius: 0.125rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* Angular geometric border design for option cards */

.option-card {
    padding: 2.5rem;
    position: relative;
    transform: translateY(0);
    justify-self: center;
    width: 100%;
    max-width: 400px;
    height: 100%;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    clip-path: polygon(25px 0%, 100% 0%, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0% 100%, 0% 25px);
}

.option-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.4), rgba(206, 60, 60, 0.1), rgba(247, 45, 45, 0.2));
    clip-path: polygon(25px 0%, 100% 0%, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0% 100%, 0% 25px);
    z-index: -1;
}

/* Traditional option styling */

.option-card.traditional-option {
    /* Uses default card styling */
}

/* DIY option styling */

.option-card.diy-option {
    /* Uses default card styling */
}

/* Cash option (recommended) styling with enhanced angular design */

.option-card.cash-option {
    background: rgba(255, 46, 46, 0.08);
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
}

.option-card.cash-option::before {
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.8), rgba(255, 46, 46, 0.4), rgba(161, 31, 31, 0.3));
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
}

/* Clean minimal border design for recommended badge */

.recommended-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--nbx-red), #d41c1c);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(255, 46, 46, 0.4);
}

.option-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.option-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Icon color schemes */

.traditional-icon {
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.2), rgba(255, 46, 46, 0.08));
    color: var(--nbx-red);
}

.diy-icon {
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.2), rgba(255, 46, 46, 0.08));
    color: var(--nbx-red);
}

.cash-icon {
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.3), rgba(255, 46, 46, 0.1));
    color: var(--nbx-red);
}

.option-title-section {
    flex: 1;
}

.option-title {
    font-family: var(--font-primary);
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.option-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
}

.option-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    min-height: 80px;
}

/* Option details section */

.option-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-details {
    background: rgba(255, 46, 46, 0.05);
    border: 1px solid rgba(255, 46, 46, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.detail-item i {
    width: 1.2rem;
    text-align: center;
}

/* Color classes for icons */

.text-orange {
    color: #ffffff;
}

.text-blue {
    color: #ffffff;
}

.text-nbx {
    color: var(--nbx-red);
}

.text-green {
    color: #ffffff;
}

.text-red {
    color: #ef4444;
}

/* Pros and cons section */

.option-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pros,
.cons {
    padding: 1rem;
    border-radius: 0;
}

.pros {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cons {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pros h5,
.cons h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros ul,
.cons ul {
    list-style: none;
    padding: 0;
}

.pros li,
.cons li {
    font-size: 0.8rem;
    color: #d1d5db;
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
}

.pros li::before {
    content: '•';
    color: #22c55e;
    position: absolute;
    left: 0;
}

.cons li::before {
    content: '•';
    color: #ef4444;
    position: absolute;
    left: 0;
}

/* Benefits section for recommended option */

.option-benefits {
    margin-bottom: 1.5rem;
}

.option-benefits h5 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #e5e7eb;
}

.benefit-item i {
    color: var(--nbx-red);
    font-size: 0.75rem;
    width: 1rem;
}

/* Call-to-action section */

.option-cta {
    margin-top: auto;
    align-self: stretch;
}

.cta-text {
    text-align: center;
    color: var(--nbx-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Clean minimal border design for cash offer button */

.btn-get-offer {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--nbx-red), #d41c1c);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
}

.btn-get-offer:hover {
    background: linear-gradient(135deg, #d41c1c, var(--nbx-red));
    border-color: rgba(255, 255, 255, 0.5);
}

/* Clean minimal border design for trust section button */

.btn-trust {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-trust:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Section */

.trust-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-bg-trust {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--nbx-dark), #1a1a1a, var(--nbx-gray));
}

/* Angular geometric border design for trust content */

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    position: relative;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.03);
    border: none;
    clip-path: polygon(40px 0%, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0% 100%, 0% 40px);
}

.trust-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 46, 46, 0.4), rgba(206, 60, 60, 0.1), rgba(247, 45, 45, 0.2));
    clip-path: polygon(40px 0%, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0% 100%, 0% 40px);
    z-index: -1;
}

.trust-icon {
    width: 4rem;
    height: 4rem;
    background: var(--nbx-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.trust-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--nbx-red);
    margin-bottom: 2rem;
}

.trust-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 46, 46, 0.2);
    color: var(--nbx-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 800;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #9ca3af;
    font-size: clamp(12px, 1.2vw, 14px);
}

/* Enhanced Responsive Design System */

/* Extra Small Devices (phones) */

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: none;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .option-card {
        padding: 1.5rem;
        min-height: auto;
    }
    .option-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .option-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
        margin: 0 auto;
    }
    .recommended-badge {
        top: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
    .trust-content {
        padding: 2rem 1.5rem;
    }
}

/* Small Devices (tablets) */

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: stretch;
    }
    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }
    .step-card {
        min-height: 250px;
    }
    .option-card {
        padding: 2rem;
        max-width: 100%;
        min-height: 450px;
    }
    .option-header {
        gap: 1rem;
    }
    .option-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    .option-title {
        font-size: 1.25rem;
    }
    .option-pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .recommended-badge {
        top: -0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-item {
        justify-content: flex-start;
    }
    .floating-icon {
        display: none;
    }
    .step-card,
    .option-card,
    .trust-content {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    /* Tablet specific animations */
    .scroll-animate {
        transform: translateY(30px);
        transition-duration: 1s;
    }
}

/* Medium Devices (small laptops) */

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 1.5rem;
    }
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .option-card {
        max-width: 350px;
    }
}

/* Large Devices (desktops) */

@media (min-width: 1025px) {
    .hero-buttons {
        flex-direction: row;
        gap: 2rem;
    }
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Extra Large Devices (large desktops) */

@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    .hero-title {
        font-size: 60px;
    }
    .section-title {
        font-size: px;
    }
    .option-card {
        max-width: 420px;
        padding: 3rem;
    }
    .trust-content {
        padding: 4rem;
    }
}

/* Ultra Wide Screens */

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    .options-grid {
        gap: 3rem;
    }
    .option-card {
        max-width: 450px;
    }
}

@media (min-width: 769px) {
    .hero-buttons {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Focus states for accessibility */

button:focus-visible {
    outline: 2px solid var(--nbx-red);
    outline-offset: 2px;
}

/* Simple transitions without complex animations */

.step-card,
.option-card,
.trust-content {
    transition: none;
}

/* Override any unwanted transforms */

.premium-hover:not(:hover) {
    transform: translateY(0) scale(1) !important;
}