/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial page load animations */
.initial-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.initial-fade-in-delay-1 { animation-delay: 0.1s; }
.initial-fade-in-delay-2 { animation-delay: 0.3s; }
.initial-fade-in-delay-3 { animation-delay: 0.5s; }
.initial-fade-in-delay-4 { animation-delay: 0.7s; }
.initial-fade-in-delay-5 { animation-delay: 0.9s; }
.initial-fade-in-delay-6 { animation-delay: 1.1s; }

:root {
    --bg-primary: #070707;
    --bg-secondary: #121212;
    --text-white: #ffffff;
    --text-gray: #acacac;
    --accent: #ff4e12;
    --border: #1f1f1f;
    --border-light: #2a2a2a;
}

body {
    font-family: 'Inter', Helvetica, sans-serif;
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
}

h1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 65px;
    color: #FFFFFF;
    margin: 16px 0 6px;
}
h1 span{
background: linear-gradient(180deg, #FFFFFF 61.98%, #525252 85.19%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

@media (max-width: 900px){
    h1 {
        font-size: 40px;
    line-height: 48px;
        margin: 16px 0 24px;
    }
}



.main-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    background: var(--bg-primary);
}

/* Prevent horizontal overflow caused by large absolutely-positioned decorations */
html, body {
    overflow-x: hidden;
}

.main-container {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Typography */
.text-white { color: var(--text-white); }
.text-gray { color: var(--text-gray); }
.text-accent { color: var(--accent); }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.underline { text-decoration: underline; }

section{
    border-bottom: 1px solid #1f1f1f;;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px 56px;
}

@media (min-width: 900px) {
    .hero-section {
        padding: 96px 40px;
    }
    section{
        padding-left: 40px;
        padding-right: 40px;
    }
}


.dot-grid-container {
    position: absolute;
    width: 150px;
    height: 150px;
    overflow: hidden;
    pointer-events: none;
    display: block;
}

@media (min-width: 900px) {
    .dot-grid-container {
        width: 280px;
        height: 280px;
    }
}

@media (min-width: 900px) {
    .dot-grid-container {
        width: 364px;
        height: 364px;
    }
}
.hero-block{
    display: flex;
    flex-direction: column-reverse;
}
.hero-content{
    text-align: center;
    margin: 24px auto 0;
}
.hero-actions{
    margin-top: 24px;
}
.hero-image {
    margin-top: 72px;
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 10;
}
@media (max-width: 900px){
    .hero-image{
        height: 200px;
        margin: 0;
    }
    .hero-actions{
        margin-top: 16px;
    }
}
.dot-grid-right {
    top: 260px;
    right: -60px;
    rotate: 180deg;
}

@media (min-width: 900px) {
    .dot-grid-right {
        top: 350px;
        right: -100px;
    }
}

@media (min-width: 900px) {
    .dot-grid-right {
        top: 420px;
        right: auto;
        left: 1148px;
    }
}

.dot-grid-left {
    top: -60px;
    left: -60px;
}

@media (min-width: 900px) {
    .dot-grid-left {
        top: -80px;
        left: -80px;
    }
}

@media (min-width: 900px) {
    .dot-grid-left {
        top: -98px;
        left: -48px;
    }
}


.dot-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.dot-grid-overlay {
    position: absolute;
    top: calc(50% - 182px);
    left: calc(50% - 182px);
    width: 364px;
    height: 364px;
    background: linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,1) 100%);
}

.dot {
    position: absolute;
    width: 2.56%;
    height: 2.56%;
    background: #1f1f1f;
    border-radius: 4.67px;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}





.badge-outline {
    background: #121212;
    border: none;
    position: relative;
}

.badge-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 100px;
    background: linear-gradient(11deg, rgba(255,79,19,0) 0%, rgba(255,79,19,1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.badge-warning {
    background: rgba(255, 79, 19, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    width: 93px;
    height: 32px;
    padding: 0;
    line-height: 32px;
    text-align: center;
}

.badge-white {
    display: block;
    background: white;
    color: #070707;
    border-radius: 12px;
    width: 132px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
}


.badge-warning span {
    color: var(--accent);
}

.badge-white span {
    color: #070707;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.64px;
    line-height: 40px;
}

.hero-text {
    width: 70%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 24px;
    display: block;
    margin: auto;
}
@media (max-width: 900px){
    .hero-block{
        flex-direction: column;
    }
    .hero-text{
        width: 100%;
    }
}

.hero-actions {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 900px) {
    .hero-actions {
        gap: 24px;
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 20px;
    height: auto;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: 24px;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.btn-primary {
    padding: 0;
    display: block;
    width: 183px;
    height: 48px;
    line-height: 48px;
    background: var(--accent);
    color: var(--text-white);
    border: 1px solid rgba(255, 79, 19, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
    .hero-actions{
        margin-top: 32px;
        width: 100%;
    }
    .btn-primary {
        width: 100%;
    }
}

.btn-primary:hover {
    background: rgba(254, 96, 43, 0.9);
}

.price-container {
    display: inline-flex;
    align-items: flex-end;
    gap: 8px;
}

.price-current {
    font-weight: 600;
    color: var(--accent);
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 32px;
}

@media (min-width: 900px) {
    .price-current {
        font-size: 28px;
        letter-spacing: -0.56px;
        line-height: 40px;
    }
}

.price-old {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 33px;
    text-decoration: line-through;
}
/* 
.hero-image {
    margin-top: 32px;
    width: 100%;
    max-width: 343px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 10;
} */


/* General Section */
.general-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 16px;
    position: relative;;
}

.general-section .card{
border: 1px solid #1F1F1F;
}

@media (min-width: 900px) {
    .general-section {
        gap: 80px;
        padding: 100px 40px;
    }
    .general-section h2{
        display: block;
        margin: auto;
    }
}

.section-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    color: var(--text-gray);
    font-style: italic;
}

.note-icon {
    width: 32px;
    height: 32px;
}

.note-icon img {
    width: 32px;
    height: 32px;
}

.note-text {
    display: block;
    color: var(--text-gray);
}

/* Mobile: hide the original note (left) and show the mobile copy under the right column */
@media (max-width: 900px) {
    /* hide left/desktop note on mobile, show mobile copy */
    .section-note:not(.section-note-mobile) {
        display: none;
    }
    .section-note.section-note-mobile {
        display: flex;
        margin-top: 40px;
    }
}

/* Mobile layout for cards-row: stacked cards with image and bottom overlay */
@media (max-width: 900px) {
    .cards-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .cards-row .card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: transparent;
        border: 0;
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }

    .cards-row .card-image {
        height: 220px;
        background-size: cover;
        background-position: center;
        border-radius: 0;
    }

    .cards-row .card-content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 16px;
        background: linear-gradient(180deg, rgba(7,7,7,0) 0%, rgba(7,7,7,0.85) 100%);
        border-top: 0;
        color: var(--text-white);
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .center-arrow{
        text-align: center;
    }
    .center-arrow h3{
        margin: 0 auto !important;
        text-align: center !important;
    }
    .cards-row .card-content h3 {
        color: var(--text-white);
        font-size: 18px;
        margin: 0;
    }

    .cards-row .card-content p {
        color: var(--text-gray);
        margin: 0;
        font-size: 14px;
    }
}

@media (min-width: 900px) {
    .section-note.section-note-mobile {
        display: none;
    }
}

.section-title{
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin: 0;
    padding: 0px;

font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 24px;
line-height: 32px;
text-align: center;
letter-spacing: -0.02em;

}

@media (min-width: 900px) {
    .section-title {
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 40px;
    }
}

.cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;

}

.newsletter-section  .card{
    border: 1px solid #1F1F1F;
    height: 168px;
}
.newsletter-section .card-text{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

@media (min-width: 900px) {
    .cards-grid {
        flex-direction: row;
        gap: 16px;
    }
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 0;
    position: relative;
    background: var(--bg-secondary);
    transition: 0.5s;
    border: 1px solid #1F1F1F;
}

.card:hover {
    transition: 0.5s;
    border-color:#ff571f56 !important;
}

.card:hover .card-number {
    transition: 0.5s;
    color: #ff571faa;
}



.card-image {
    position: relative;
    width: 100%;
    height: 176px;
    background-size: cover;
    background-position: 50% 50%;
}

@media (min-width: 900px) {
    .card-image {
        height: 224px;
    }
}

.card-image img,
.card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-video {
    display: block;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--bg-secondary);
    position: relative;
}

.card-content h3 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.card-content p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

/* Title Text Section */
.title-text-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 16px;
    position: relative;
    z-index: 24;
}

@media (max-width: 900px) {
    .title-text-section h2{

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    }
    .title-text-section .section-right {
        margin-top: 40px;
    }
}

@media (min-width: 900px) {
    .title-text-section {
        gap: 80px;
        padding: 100px 40px;
    }
    .title-text-section .section-right{
        flex-grow: unset;
        min-width: 800px
    }
}

.section-layout {
    display: flex;
    flex-direction: column;
    gap: 131px;
    width: 100%;
}
@media (max-width: 900px) {
    .section-layout {
        gap: 0;
    }
}

@media (min-width: 900px) {
    .section-layout {
        flex-direction: row;
        justify-content: space-between;
    }
}

.section-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
}

@media (min-width: 900px) {
    .section-left {
        width: 557px;
        justify-content: space-between;
    }
    .content-wrapper-section .section-left{
        justify-content: unset !important;
        
    }
}

.section-left h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 30px;
}

@media (min-width: 900px) {
    .section-left h2 {
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 40px;
    }
}

.section-note {
    width: 100%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

@media (min-width: 900px) {
    .section-note {
        width: 443px;
        margin-top: 0;
    }
}

.section-right {
    display: flex;
    flex-direction: column;
    gap: 16px;

}

@media (min-width: 900px) {
    .section-right {
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.card-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.card-bloger{
    display: flex;
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
}

.card-bloger .card{
    width: 47%;
    justify-content: space-around;
    margin: 10px;
    height: 200px;
border: 1px solid #1F1F1F;


}
.card-bloger .card:last-child{
    width: 100%;
}
@media (max-width: 900px){
    .card-bloger .card{
        width: 100%;
    }
}

@media (min-width: 900px) {
    .card-grid {
        flex-wrap: wrap;
        flex-direction: row;
    }
}


.card-number {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 500;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    margin-bottom: 130px;
    transition: color 0.3s ease;
}

.card-text {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    position: absolute;
    bottom: 25px;
}

.card-bloger .card-text {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    position: absolute;
    bottom: 10px;
}



/* Main Section Wrapper */
.main-section-wrapper {
    width: 100%;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 16px;
    width: 100%;
    position: relative;
    z-index: 23;
}

@media (min-width: 900px) {
    .section-content {
        gap: 80px;
        padding: 100px 40px;
    }
}

.section-header-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.section-header-image{
    width: 100%;
    height: 330px;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 20px;
}
/* Hide section header image on desktop (computer) */
@media (min-width: 900px) {
    .section-header-image {
        display: none !important;
    }
}

@media (min-width: 900px) {
    .section-header-layout {
        flex-direction: row;
    }
}

.section-header-layout h2 {
    width: 100%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 30px;
}

@media (min-width: 900px) {
    .section-header-layout h2 {
        width: 672px;
        font-size: 32px;
        letter-spacing: -0.64px;
        line-height: 40px;
    }
}

.section-description {
    flex: 1;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 163.5px);
    gap: 16px;
    width: 100%;
    max-width: 1360px;
}

@media (min-width: 900px) {
    .image-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 440px;
    }
}

.grid-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: 50% 50%;
}

/* Mobile: use column layout for masonry-like stacked images */
@media (max-width: 900px) {
    .image-grid {
        display: block;
        column-count: 2;
        column-gap: 16px;
        max-width: none;
    }

    .grid-item {
        display: inline-block;
        width: 100%;
        margin: 0 0 10px;
        height: auto;
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        border-radius: 16px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }

    /* Per-item heights to mimic the example layout */
    .grid-item.item-1 { height: 360px; }
    .grid-item.item-2 { height: 170px; }
    .grid-item.item-3 { height: 170px; margin: 0;}
    .grid-item.item-4 { height: 170px; display: none; }
    .grid-item.item-5 { height: 170px; }
    .grid-item.item-6 { height: 170px; }
    .grid-item.item-7 { height: 360px; margin: 0;}

}
@media (min-width: 900px) {


    .item-1 { grid-row: 1 / 3; grid-column: 1 / 3; }
    .item-2 { grid-row: 1 / 3; grid-column: 3 / 4; }
    .item-3 { grid-row: 1 / 2; grid-column: 4 / 5; }
    .item-4 { grid-row: 1 / 2; grid-column: 6 / 7; display: block;}
    .item-5 { grid-row: 1 / 3; grid-column: 5 / 6; }
    .item-6 { grid-row: 2 / 3; grid-column: 4 / 5; }
    .item-7 { grid-row: 2 / 3; grid-column: 6 / 7; }
    .image-grid {
        height: 400px;
        margin: auto;
    }
}

@media (min-width: 1600px) {
    .image-grid {
        height: 500px;
    }
}

.section-bg-ellipse {
    position: absolute;
    top: -393px;
    left: calc(50% - 971px);
    width: 1942px;
    height: 971px;
    z-index: 0;
    pointer-events: none;
    display: none;
}

@media (min-width: 900px) {
    .section-bg-ellipse {
        display: block;
    }
}

/* Content Wrapper Section */
.content-wrapper-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 16px 64px;
    position: relative;
    z-index: 22;
}
.content-wrapper-section .section-left{
    gap: 8px;
}

@media (min-width: 900px) {
    .content-wrapper-section {
        gap: 80px;
        padding: 100px 20px;
    }
    .content-wrapper-section .section-left{
        gap: 0;
        justify-content: unset !important;
    }
    .content-wrapper-section .section-left h2{
        margin-bottom: 40px;
    }
    .content-wrapper-section .section-layout {
        flex-direction: row;
        
        justify-content: space-between;
        padding: 0 40px;
    }
}
@media (max-width: 900px) {
    .content-wrapper-section .section-right-image{
        margin-top: 40px;
    }
}

.section-label {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    white-space: nowrap;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.content-text p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.section-right-image {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    background-size: cover;
    background-position: 50% 50%;
}

@media (min-width: 900px) {
    .section-right-image {
        width: 672px;
        height: 400px;
    }
}

/* Main Content Section */
.main-content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 100px 60px;
    position: relative;
    z-index: 20;
}

.main-image {
    width: 100%;
    height: 720px;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.content-layout {
    display: flex;
    align-items: flex-start;
    gap: 131px;
    width: 100%;
}

.content-column {
    display: flex;
    flex-direction: column;
    width: 557px;
    gap: 40px;
}

/* Mobile adjustments for main-content-section to match design */


.content-column p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.content-column h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;

}
@media (max-width: 900px) {
    .main-content-section {
        padding: 64px 16px;
        align-items: flex-start;
        gap: 24px;
    }

    .main-image {
        height: auto;
        max-height: 320px;
        border-radius: 12px;
        margin: 0 auto 20px;
    }

    .content-layout {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        
    }

    .content-column {
        width: 100%;
        gap: 16px;
    }

    .content-column p {
        font-size: 16px;
        color: var(--text-gray);
        line-height: 24px;
    }

    .content-column h2 {
        font-size: 20px;
        line-height: 28px;
        color: var(--text-white);
        margin-top: 8px;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.02em;

        
    }
}
/* Component Node Section */
.component-node-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 20px;
    position: relative;
    z-index: 18;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.section-header-center h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 32px;
    text-align: center;
    letter-spacing: -0.64px;
    line-height: 40px;
}
@media (max-width: 900px) {
    .section-header-center h2 {

        font-family: 'Inter';
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        letter-spacing: -0.02em;

    }
}

.section-header-center p {
    width: 100%;
    max-width: 902px;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.cards-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.cards-row .card {
    flex: 1;
    flex-grow: 1;
}

/* Featured Items Section */
.featured-items-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 60px;
    position: relative;
    z-index: 16;
}
.featured-items-section .bullet-list{
    margin-bottom: 16px;
}
@media (max-width: 700px) {
    .featured-items-section {
        padding: 40px 16px;
        gap: 40px;
    }
    .featured-items-section .section-layout{
        gap: 24px;
    }
}
@media (min-width: 900px) {
    .featured-items-section .section-left{
        gap: 0;
        justify-content: unset;
    }
    .featured-items-section h2{
        margin-bottom: 168px;
    }
}
.bonus-badge {
    font-family: 'Inter', Helvetica, sans-serif;

    display: block;
    background: var(--accent);
    border-radius: 12px;
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.02em;
    width: 130px;
    height: 40px;
    text-align: center;
    margin-bottom: 8px;

    
}

.bonus-badge span {

    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.64px;
    white-space: nowrap;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-block p, .content-block-mobile p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}
.content-block-mobile {
    display: none;
}

@media (max-width: 900px) {
    .content-block-mobile {
        display: block;
        margin-top: 40px;
    }
    .featured-items-section .content-block ul, .featured-items-section .content-block p {
        display: none;
    }
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bullet-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.bullet {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 100px;
    margin-top: 10px;
    flex-shrink: 0;
}

.bullet-list li span:last-child {
    flex: 1;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.course-items {
    display: flex;
    flex-direction: column;
    max-width: 902px;
    flex: 1;
    flex-grow: 1;
}

.course-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.course-item:not(:first-child) {
    padding-top: 16px;
    border-top: 1px solid var(--border);

}

.course-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.course-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.course-number {
    width: 32px;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 500;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.course-title {
    width: 509px;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 32px;
}

.course-icon-btn {
    width: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.course-icon,
.accordion-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.course-icon::before,
.course-icon::after,
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--text-white);
    border-radius: 3px;
    box-shadow: 0 6px 18px rgba(255,255,255,0.04), 0 0 10px rgba(255,255,255,0.02) inset;
    transition: transform 0.32s cubic-bezier(0.2,0.8,0.2,1), opacity 0.2s cubic-bezier(0.2,0.8,0.2,1);
}

/* horizontal line */
.course-icon::before,
.accordion-icon::before {
    width: 14px;
    height: 1px;
    transform: translate(-50%, -50%) scaleX(1);
}

/* vertical line */
.course-icon::after,
.accordion-icon::after {
    width: 1px;
    height: 14px;
    transform: translate(-50%, -50%) scaleY(1);
}

/* active state: vertical line disappears smoothly */
.course-item.open .course-icon::after,
.accordion-item.open .accordion-icon::after,
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    transform: translate(-50%, -50%) scaleY(0.08);
    opacity: 0;
}

/* subtle glow when active */
.course-item.open .course-icon::before,
.accordion-item.open .accordion-icon::before,
.accordion-trigger[aria-expanded="true"] .accordion-icon::before {
    box-shadow: 0 8px 22px rgba(255,255,255,0.06);
}

.course-content {
    /* transitionable collapse instead of display toggle */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    gap: 80px;
    padding-left: 116px;
    padding-right: 0;
    padding-top: 16px;
    padding-bottom: 0;
    width: 100%;
    transition: max-height 320ms ease, opacity 280ms ease, transform 280ms ease;
}

.course-content.open {
    max-height: 1400px; /* fallback; JS will set exact height when available */
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 10px;
}

.course-content p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.course-gif {
    width: 100%;
    margin-top: 15px;

    border-radius: 20px;
    object-fit: cover;
    background-position: 50% 50%;
}

/* Video with custom play button */
.video-container {
    position: relative;
    width: 100%;
    margin-top: 15px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.video-container:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: #FF7A47;
}

.video-container.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 901px) {
    .course-content img,
    .course-content video {
        max-width: 200px;
    }
}

/* Responsive fixes for course-items on small screens */
@media (max-width: 900px) {
    .course-items {
        max-width: 100%;
        
    }

    .course-item {
        gap: 12px;
    }

    .course-header {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .course-number {
        width: auto;
        min-width: 36px;
        font-size: 14px;
    }

    .course-title {
        width: auto;
        font-size: 18px;
        line-height: 22px;
        flex: 1 1 auto;
        white-space: normal;
    }

    .course-icon-btn {
        width: auto;
        margin-left: 8px;
        flex-shrink: 0;
    }

    .course-content {
        /* transitionable collapse instead of display toggle */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        gap: 16px;
        padding-left: 0;
        padding-top: 12px;
        flex-direction: column;
        transition: max-height 320ms ease, opacity 280ms ease, transform 280ms ease;
    }

    .course-content.open {
        max-height: 1000px; /* fallback; JS will set exact height when available */
        opacity: 1;
        transform: translateY(0);
    }

    .course-gif {
        width: 100%;

        border-radius: 12px;
    }

    .course-content p {
        font-size: 15px;
        color: var(--text-gray);
    }
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 40px;
    position: relative;
    z-index: 14;
}
@media (max-width: 700px) {
    .testimonials-section {
        padding: 64px 16px 80px;
        gap: 40px;

    }
}
.testimonials-visual {
    position: relative;
    width: 100%;
    height: 632px;
    background-size: 100% 100%;
}

.testimonials-bg {
    top: calc(50% - 316px);
    left: calc(50% - 336px);
    width: 672px;
    height: 632px;
}

.testimonials-hover {
    position: absolute;
    top: calc(50% - 316px);
    left: calc(50% - 336px);
    width: 672px;
    height: 632px;
}


.testimonials-item {
    display: block;
    position: relative;
        background-color: #121212;
    border-radius: 15px;
    margin: 16px 0;
    width: 100%;
    height: 200px;
    border: 1px solid #1F1F1F;

}

.testimonials-item h3 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 24px;
    text-align: left;
    letter-spacing: -0.48px;
    line-height: 32px;
    padding: 10px 10px 0;

}

.testimonials-item p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 16px;
    text-align: left;
    letter-spacing: -0.32px;
    line-height: 24px;
    margin-top: 20px;
    padding: 0 16px 16px;
    position: absolute;
    bottom: 0;
    color: #FFFFFF;

}

.testimonials-number-bg {
    position: static;
    z-index: 0;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 700;
    color: var(--border);
    font-size: 144px;
    text-align: left;
    letter-spacing: -1.6px;
    line-height: 120px;
    white-space: nowrap;
    position: absolute;
    left: -7px;
    top: -5px;
}
.testimonials-steps-mobile {
    display: none;
}



/* Phone: hide decorative testimonials background and show a steps-like block */
@media (max-width: 767px) {
    .testimonials-bg {
        display: none !important;
    }

    .testimonials-steps-mobile {
        display: block;
        width: 100%;
        position: relative;
        z-index: 1;
        max-width: 100%;
        margin: 0 auto;
        margin-top: 40px;
    }
}



.testimonial-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 296px;
    gap: 8px;
}

.testimonial-number {
    position: absolute;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 500;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    width: 296px;
}

.testimonial-text {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.item-1 {
    top: 136px;
    left: 360px;
}

.item-1 .testimonial-number {
    top: 16px;
    left: 0;
}

.item-2 {
    top: 328px;
    left: 16px;
}

.item-2 .testimonial-number {
    top: 232px;
    left: 0;
}

.item-3 {
    top: 544px;
    left: 360px;
}

.item-3 .testimonial-number {
    top: 448px;
    left: 0;
}

/* About Us Section */
.about-us-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 100px 40px;
    position: relative;
    z-index: 12;
    color: var(--text-gray);
}

.about-us-section .section-layout {
    justify-content: space-between;
}

.about-us-section .section-right {
    display: inline-flex;
    flex-direction: column;
}

.about-us-section .section-right h3 {
    width: 200px;
    display: block;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 32px;
}

.about-us-section .section-right .card:last-child h3 {
    text-align: center;
}
@media (max-width: 900px) {
    .about-us-section{
    padding: 64px 20px;

    }
    .about-us-section .section-right h3 {
        font-size: 16px;
        line-height: 24px;
        margin-top: 40px;
    }
}

@media (min-width: 900px) {
    .about-us-section .section-right h3 {
        width: 100%;
    }
    .about-us-section .section-left{
        gap: 280px;
    }
    /* .about-us-section .section-right{
        width: 50%;
    } */
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    max-width: 680px;
}

.features-grid .card {
    width: 100%;
    height: 200px;
}

@media (min-width: 900px) {
    .features-grid .card {
        width: 328px;
    }
    .features-grid{
        height: 416px;
    }
}

.features-grid .card-content {
    height: 100%;
    justify-content: space-between;
    font-size: 12px;
}

.features-grid .card-content h3{
    font-size: 15px;
}

.features-grid .card-content img {
    flex-shrink: 0;
    width: 40px;
}

.features-grid .card:last-child:hover{
    position: relative;
    transition: 0.5s;
    box-sizing: content-box;
    transform: scale(1.04);
    transform-origin: center;
    background-color:#1f1f1f;

}

.features-grid .card {
    overflow: hidden;
}

.arrow-icon img{
    width: 50px;
    height: 50px;
}

.arrow-icon {
    width: 64px;
    color: var(--text-white);
    font-size: 64px;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin:  auto;
    line-height: 10px
}

.features-grid .card-content {
    justify-content: space-around;
}

/* Services Section */
.services-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding: 64px 16px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 11;
}
.step-item:last-child {
    margin-bottom: 0;
}

.services-section .section-header-center {
    z-index: 2;
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .steps-row {
        max-width: 85%;
        margin: auto;
    }
    .services-section{
        padding: 100px 40px;
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    width: 405px;
    align-items: center;
    gap: 20px;
    position: relative;
    
}
@media (max-width: 900px) {
    .step-item {
        width: 100%;
        margin-bottom: 55px;
    }
}

.step-item h3 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 24px;
    text-align: center;
    letter-spacing: -0.48px;
    line-height: 28px;
}

.step-item p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 24px;
}

.step-number-bg {
    position: absolute;
    top: calc(50% - 64px);
    left: calc(50% - 18px);
    z-index: -1;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--border);
    font-size: 80px;
    text-align: center;
    letter-spacing: -1.6px;
    line-height: 89px;
    white-space: nowrap;
}

.step-item:nth-child(2) .step-number-bg {
    left: calc(50% - 24px);
}

.step-item:nth-child(3) .step-number-bg {
    left: calc(50% - 26px);
}

.section-image {
    width: 100%;
    height: 720px;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.section-image-wrap {
    position: relative;
    width: 100%;
    display: block;
}

.section-image-wrap .section-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--accent);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(255,78,18,0.18), 0 2px 6px rgba(0,0,0,0.3);
    cursor: pointer;
}

.play-btn .play-icon {
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;

}

/* Soft focus on hover */
.play-btn:hover { transform: translate(-50%, -50%) scale(1.04); transform-origin: center; }

.section-image-wrap {
    position: relative;
    overflow: hidden;
}

/* Mobile adjustments to match example */
@media (max-width: 767px) {
    .section-image-wrap .section-image { max-height: 240px; border-radius: 12px; }
    .play-btn { width: 56px; height: 56px; }
    .play-btn .play-icon { border-left-width: 10px; border-top-width: 7px; border-bottom-width: 7px; }
}

/* Blog Section */
.blog-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding: 64px 16px;
    position: relative;
    z-index: 10;
    color: var(--text-gray);
}
@media (min-width: 900px) {
    .blog-section {
        padding: 100px 40px;
    }
}
.blog-section .section-layout {
    z-index: 1;
}

.blog-section .section-right {
    flex: 1;
    max-width: 100%;
    margin-top: 40px;

}

.blog-section .section-right img {
    width: 100%;
    height: auto;
}

@media (min-width: 900px) {
    .blog-section .section-left {
        justify-content: space-between;
    }
    .blog-section .section-right{
        flex: 1;
        max-width: 60%;
    }
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding: 64px 16px;
    position: relative;
    z-index: 7;
}

@media (min-width: 900px) {
    .gallery-section {
        padding: 100px 40px;
        height: 664px;
    }
}

.gallery-section .section-layout {
    justify-content: space-between;
}

.gallery-card {
    flex: 1;
    flex-grow: 1;
    height: 400px;
    background: white;
    overflow: hidden;
    border-radius: 20px;
    border: 0;
}

.gallery-bg {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
}

.gallery-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.blur-1 {
    top: -132px;
    left: 287px;
    width: 472px;
    height: 471px;
    background: #01fafe;
    border-radius: 236px / 235.5px;
}

.blur-2 {
    top: -248px;
    left: -122px;
    width: 531px;
    height: 531px;
    background: #9900ff;
    border-radius: 265.5px;
}

.blur-3 {
    top: 147px;
    left: -137px;
    width: 473px;
    height: 473px;
    background: #d5e52d;
    border-radius: 236.5px;
}

.blur-4 {
    top: 187px;
    left: 241px;
    width: 568px;
    height: 569px;
    background: #ee4651;
    border-radius: 284px / 284.5px;
}

.gallery-bg img {
    position: absolute;
    top: calc(50% - 120px);
    left: calc(50% - 120px);
    width: 240px;
    height: 240px;
    object-fit: cover;
}

/* Contact Us Section */
.contact-us-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 100px 40px;
    width: 100%;
    background: var(--bg-secondary);
}

.contact-us-section h2 {
    display: block;
    align-items: center;;
    width: 100%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.64px;
    line-height: 40px;
}
@media (max-width: 700px) {
    .contact-us-section h2 {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        max-width: 672px
    }
    .contact-us-section{
        padding: 64px 16px;
    }
}

.separator {
    width: 100%;
    height: 1px;
    background: var(--border-light);
}

/* FAQ Section */
.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 100px 40px;
    position: relative;
    z-index: 5;
}

.faq-section h2 {
    max-width: 902px;
    width: 100%;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.64px;
    line-height: 40px;
    z-index: 1;
}

@media (max-width: 700px) {
    .faq-section h2 {
        font-size: 24px;
        line-height: 32px;

    }
    .faq-section{
        padding: 64px 16px;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
    max-width: 902px;
    width: 100%;
    z-index: 0;
}

.accordion-item {
    border-top: 1px solid var(--border);
    padding-top: 26px;
}

.accordion-trigger {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-trigger:hover {
    text-decoration: none;
}

.accordion-trigger h3 {
    flex: 1;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: -0.48px;
    line-height: 24px;
}

.accordion-icon {
    width: 16px;
    height: 16px;
    color: var(--text-gray);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon,
.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    /* transitionable collapse instead of display toggle */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    padding-top: 16px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    transition: max-height 320ms ease, opacity 280ms ease, transform 280ms ease;
}

.accordion-content.open {
    max-height: 800px; /* fallback; JS may set exact height */
    opacity: 1;
    transform: translateY(0);
}

.accordion-content p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
}

/* Newsletter Section */
.newsletter-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 40px;
    position: relative;
    z-index: 3;
}

@media (max-width: 700px) {
    .newsletter-section h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .newsletter-section{
    padding: 64px 16px;

    }
}

.newsletter-section .section-header-center {
    z-index: 1;
}


.newsletter-section .cards-row {
    z-index: 0;
}

.newsletter-section .card {
    height: 168px;
    justify-content: space-between;
}

.blur-text {
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(8px);
    opacity: 0.5;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-white);
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 32px;
    white-space: nowrap;
    pointer-events: none;
}

.normal-text {
    position: relative;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: -0.48px;
}

/* Title Image Section */
.title-image-section {
    width: 100%;
    background: white;
    border-radius: 32px;
    padding: 16px;
    z-index: 2;
}

.title-image-section .section-layout {
    display: flex;
    gap: 0;
}

@media (min-width: 900px) {
    .title-image-section .section-layout {
        gap: 131px;
    }
    .title-image-section{
        padding: 40px;
        font-weight: 700;
        font-family: 'Inter', Helvetica, sans-serif;
    }
}



.title-image-section .section-left {
    justify-content: space-between;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.title-image-section h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: #070707;
    font-size: 32px;
    letter-spacing: -0.48px;
    line-height: 40px;
    margin: 0 0 16px 0;
}
@media (min-width: 900px) {
    .title-image-section .section-left{
        gap: 0;
        justify-content: unset;
    }
    .title-image-section h2{
        margin-bottom: 40px;
    }
    .cta-section{
        margin-top: 232px;
    }
}

.bullet-list-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px 0;
}

.bullet-list-large li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bullet-list-large .fa-check {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.bullet-list-large li span:last-child {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 500;
    color: #070707;
    font-size: 24px;
    letter-spacing: -0.32px;
    line-height: 32px;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.title-image-section .btn-primary {
    background: var(--accent);
    color: var(--text-white);
    border: 1px solid rgba(255, 79, 19, 0.3);
    backdrop-filter: blur(10px);
    width: auto;
    padding: 0 24px;
    white-space: nowrap;
}

.title-image-section .price-current {
    color: var(--accent);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.56px;
    line-height: 40px;
}

.title-image-section .price-old {
    color: #acacac;
    font-size: 16px;
    text-decoration: line-through;
}

.title-image-section .section-right {
    width: 100%;
    /* height: 480px; */
    gap: 15px;
}

.title-image-section .section-right img {
    width: 49%;
    height: 242px;
    object-fit: cover;
    border-radius: 20px;
}
.title-image-section .section-right{
    width: 54%;
}
.section-right{
    display: flex;
    justify-content: space-between;
}
.title-image-section .section-right img:first-child{
    width: 100%;
}

@media (max-width: 900px) {
    .title-image-section {
        border-radius: 32px;
        width: 92%;
        margin: auto;
    }
    .title-image-section .section-layout {
        flex-direction: column-reverse;
    }
    .title-image-section img{
        display: none;
    }
    .title-image-section .section-right img:first-child{
        height: 200px;
        border-radius: 32px;
        display: block;
        width: 100%;
    }
    .title-image-section .section-right{
        width: 100%;
        height: auto;
    }
    .title-image-section .section-left{
        display: none;
    }


}
/* Product Showcase Section */
.product-showcase-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 100px 40px 100px 40%;
}

.product-showcase-section h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 700;
    color: var(--text-white);
    font-size: 32px;
    letter-spacing: -0.31px;
    line-height: 40px;
}

.product-showcase-section .content-block {
    max-width: 557px;
}

.product-showcase-section .content-block p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.05px;
    line-height: 24px;
}
@media (max-width: 900px) {
    .product-showcase-section {
        width: 100%;
    padding: 64px 16px;
        margin-left: 0;
    }
}
/* Showcase Wrapper Section */
.showcase-wrapper-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 64px 16px;
    width: 100%;
    background: linear-gradient(180deg, rgba(8,8,8,1) 0%, rgba(18,18,18,1) 100%);
}

@media (min-width: 900px) {
    .showcase-wrapper-section {
        padding-left: 155px;
    }
}

.showcase-wrapper-section h2 {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 700;
    color: var(--text-white);
    font-size: 32px;
    letter-spacing: -0.31px;
    line-height: 40px;
}

.showcase-wrapper-section .content-block {
    width: 100%;
    max-width: 557px;
}

.showcase-wrapper-section .content-block p {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.05px;
    line-height: 24px;
}

.showcase-wrapper-section a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s;
}

.showcase-wrapper-section a:hover {
    color: #ff6a3d;
}

.davinchi{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.davinchi video{
    width: 50%;
    display: block;
    border-radius: 15px;
}
.davinchi .right{
    width: 42%;

}

.davinchi h2{
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}
@media (max-width: 900px) {
    .davinchi {
        flex-direction: column-reverse;
    }
    .davinchi video, .davinchi .right {
        width: 100%;
    }
    .davinchi video {
        max-height: none;
        margin-top: 40px;
    }
    .davinchi h2{
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }
}
.section-left-mobile{
    display: none;
}
@media (max-width: 900px) {
    .section-left-mobile{
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 24px auto 0;
        width: 100%;
        max-width: 360px;
        padding: 0 16px;
    }

    .section-left-mobile-card {
        background: #ffffff;
        border-radius: 20px;
        width: 100%;
        text-align: center;
    }

    .slm-title {
        font-family: 'Inter', Helvetica, sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 32px;
        color: #070707;
        margin: 0 0 8px 0;
        letter-spacing: -0.48px;
    }

    .slm-sub {
        font-family: 'Inter', Helvetica, sans-serif;
        font-weight: 400;
        margin: 0 0 24px 0;
        letter-spacing: -0.28px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        letter-spacing: -0.02em;
        color: #6E6E6E;

    }

    .slm-price {
        font-family: 'Inter', Helvetica, sans-serif;
        font-weight: 700;
        font-size: 40px;
        line-height: 48px;
        margin: 16px 0 20px 0;
        color: #070707;
        letter-spacing: -0.8px;
    }

    .slm-currency {
        font-size: 36px;
    }

    .slm-price-unit {
        font-size: 18px;
        margin-left: 4px;
    }

    .slm-bullets {
        list-style: none;
        padding: 0;
        margin: 20px 0 24px 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: left;
    }

    .slm-bullets li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #070707;
        font-family: 'Inter', Helvetica, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
    }

    .slm-bullets .fa-check {
        color: var(--accent);
        font-size: 18px;
        flex-shrink: 0;
    }

    .slm-check {
        color: var(--accent);
        font-weight: 700;
        font-size: 18px;
        flex-shrink: 0;
    }

    .slm-cta {
        width: 100%;
        padding: 14px 24px;
        margin: 8px 0 20px 0;
        border-radius: 100px;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
    }

    .slm-small {
        font-family: 'Inter', Helvetica, sans-serif;
        font-weight: 400;
        color: #acacac;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: -0.24px;
        margin: 0;
    }
}


/* Footer Section */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 64px 16px 32px;
    width: 100%;
    background: transparent;
    background-image: linear-gradient(180deg, rgba(8,8,8,1) 0%, rgba(18,18,18,1) 90%);
}

@media (min-width: 901px) {
    .footer-section {
        padding: 100px 60px;
        align-items: center;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 343px;
    gap: 32px;
}

@media (min-width: 901px) {
    .footer-content {
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-circle {
    position: relative;
    width: 16px;
    height: 16px;
    background: rgba(172, 172, 172, 0.5);
    border-radius: 100px;
    overflow: hidden;
}

.footer-logo-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--text-gray);
    border-radius: 100px;
}

.footer-title {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 24px;
    white-space: nowrap;
}

@media (min-width: 901px) {
    .footer-title {
        font-size: 18px;
        letter-spacing: -0.36px;
        line-height: 28px;
    }
}

.footer-description {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 16px;
}

@media (min-width: 901px) {
    .footer-description {
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 20px;
    }
}

.footer-nav {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

@media (min-width: 901px) {
    .footer-nav {
        gap: 40px;
    }
}

.footer-link {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 500;
    color: var(--text-gray);
    font-size: 12px;
    letter-spacing: -0.24px;
    line-height: 16px;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s;
}

@media (min-width: 901px) {
    .footer-link {
        font-size: 14px;
        letter-spacing: -0.28px;
        line-height: 20px;
    }
}

.footer-link:hover {
    color: var(--text-white);
}

/* Footer legal lines */
.footer-legal {
    width: 100%;
    margin-top: 28px;
    padding-top: 4px;
}

.footer-legal-divider {
    height: 1px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 31px;
    width: 100%;
}

.footer-legal-line {
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 22px;
    margin: 4px 0;
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 16px;
color: #ACACAC;
}

@media (min-width: 901px) {
    .footer-legal {
        margin-top: 40px;
        padding-top: 28px;
    }
    .footer-legal-line {
        font-size: 15px;
    }
}

/* 1. Register the angle variable so CSS knows how to animate it as a number */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.glow-btn {
    --border-width: 1px;
    --glow-color: var(--accent);
    --bg-color: var(--bg-secondary);
    
    position: relative;
    display: inline-flex;
    background: var(--bg-color);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    z-index: 1;
    border-radius: 25px;
    font-family: 'Inter', Helvetica, sans-serif;
    font-weight: 400;
    color: var(--text-white);
    font-size: 16px;
    letter-spacing: -0.32px;
    line-height: 32px;
    height: 32px;
    width: 137px;
    white-space: nowrap;
    border-radius: 25px;
    text-align: center;
}
.glow-btn p{
    width: 100%;
}

/* The Border Layer */
.glow-btn::before {
  content: '';
  position: absolute;
  inset: calc(var(--border-width) * -1); /* Expands outside button */
  padding: 1px;
  border-radius: inherit;
  /* Conic gradient that uses the animated --angle */
  background: conic-gradient(from var(--angle), transparent, var(--glow-color), transparent 25%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-light 4s linear infinite;

}


/* The Blurred Glow Layer */
.glow-btn::after {
  content: '';
  position: absolute;
  inset: -5px; /* How far the glow bleeds out */
  background: conic-gradient(from var(--angle), transparent, var(--glow-color), transparent 25%);
  border-radius: inherit;
  filter: blur(20px); /* Adjust for "more blur" */
  opacity: 0.6;
  z-index: -1;
  animation: rotate-light 4s linear infinite;
    border-radius: 25px;

}

@keyframes rotate-light {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}

.block-1, .block-2{
    display: flex;
    position: relative;
    width: 150%;
    overflow: hidden;
    flex-wrap: nowrap;
}
.block-1 img, .block-2 img{
    width: auto;
    height: 200px;
    margin-right: 10px;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 20px;
}
.block-2{
    right: -10%;
}

@media (max-width: 900px) {
    .block-1{
        display: block;
        position: static;
        width: 100%;
    }
    .block-1 img{
        height: auto;
        width: 100%;
        margin-right: 0;
    }
    .block-2{
        display: none;
    }
}

.fixed{
    position: fixed;
    bottom: 0;
    z-index: 1000;
    width: 100%;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    


    left: 50%;
  transform: translate(-50%, 120%);
  opacity: 0;
    transition: 
    transform 0.45s ease,
    opacity 0.45s ease;
}
.fixed.active {
  transform: translate(-50%, 0);
  opacity: 1;
}
.fixed span{
    display: block;
    width: 90%;
    margin: 10px auto;
    text-align: center;
    font-family: 'Inter', Helvetica, sans-serif;
    background-color: var(--accent);
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    height: 60px;
    line-height: 60px;
    font-size: 19px;
    font-weight: 600;

}
@media (min-width: 600px) {
    .fixed{
        display: none;
    }
}


.wh-b {

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;

    color: #FFFFFF;
}

.btn-sys{
    padding: 0;
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    background: var(--accent);
    color: var(--text-white);
    border: 1px solid rgba(255, 79, 19, 0.3);
    backdrop-filter: blur(10px);
    padding: 0;
}
.mobile {
    display: none;
}

@media (max-width: 900px) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}

/*  */