

.slider-sec {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-sec .slider-container {
    position: relative;
    width: 98vw;
    height: 98vh;
    margin-top: 0.7vh;
    border-radius: 12px;
    overflow: hidden;
}

.slider-sec .slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-sec .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

.slider-sec .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slider-sec .bg-img,
.slider-sec .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
}

.slider-sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.slider-sec .decor-line {
    position: absolute;
    width: 80px;
    height: 2px;
    background: rgba(255,255,255,0.12);
    z-index: 5;
}

.slider-sec .decor-v {
    height: 80px;
    width: 2px;
}

.slider-sec .tl {
    top: 40px;
    left: 40px;
}

.slider-sec .br {
    bottom: 40px;
    right: 40px;
}

.slider-sec .tr {
    top: 40px;
    right: 40px;
}

.slider-sec .bl {
    bottom: 40px;
    left: 40px;
}

.slider-sec .soft-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.slider-sec .content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
}

.slider-sec .text-wrap {
    max-width: 600px;
    pointer-events: auto;
}

.slider-sec .mono-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e8e8e8;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.2s;
}

.slider-sec .headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.3s;
}

.slider-sec .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.4s;
}

.slider-sec .cta-group {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.5s;
}

.slider-sec .active .mono-label,
.slider-sec .active .headline,
.slider-sec .active .description,
.slider-sec .active .cta-group {
    opacity: 1;
    transform: translateY(0);
}

.slider-sec .controls {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-sec .nav-dots {
    display: flex;
    gap: 12px;
}

.slider-sec .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-sec .dot.active {
    background: #ffffff;
    transform: scale(1.5);
}

.slider-sec .arrow-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    cursor: pointer;
    padding: 10px;
    opacity: 0.6;
    transition: 0.3s;
}

.slider-sec .arrow-btn:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .slider-sec .content {
        padding: 40px;
    }
    .slider-sec .controls {
        right: 40px;
        bottom: 40px;
    }
}


.about-sec {
    position: relative;
    
    padding: 80px 5%;
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
}

.about-sec .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-sec .content-area {
    animation: aboutFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-sec .eyebrow {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    color: #0a0a0a;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-sec .eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: #FFD700;
}

.about-sec .main-heading {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    color: #0a0a0a;
}

.about-sec .main-heading .outline-text {
    display: block;
}

.about-sec .body-text {
    font-size: 17px;
    line-height: 1.7;
    max-width: 520px;
    color: rgba(10, 10, 10, 0.65);
    margin-bottom: 36px;
}

.about-sec .features-list {
    margin-bottom: 28px;
}

.about-sec .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.about-sec .feature-icon {
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.about-sec .feature-icon i {
    font-size: 10px;
    color: #0a0a0a;
}

.about-sec .feature-text {
    font-size: 14.5px;
    color: #444444;
    line-height: 1.5;
}

.about-sec .stats-minimal {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 28px;
}

.about-sec .btn {
    margin-top: 12px;
}

.about-sec .stat-mini {
    display: flex;
    align-items: baseline;
    gap: 6px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-sec .stat-mini.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-sec .stat-mini:nth-child(1) { transition-delay: 0s; }
.about-sec .stat-mini:nth-child(2) { transition-delay: 0.15s; }
.about-sec .stat-mini:nth-child(3) { transition-delay: 0.3s; }
.about-sec .stat-mini:nth-child(4) { transition-delay: 0.45s; }

.about-sec .stat-mini-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    display: inline-block;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 1s ease, transform 1s ease;
}

.about-sec .stat-mini-number.counting {
    color: #FFD700;
    animation: statPulse 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes statPulse {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.about-sec .stat-mini-label {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about-sec .visual-wrapper {
    position: relative;
    height: 600px;
}

.about-sec .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    border-radius: 2px;
    transition: filter 0.6s ease, transform 0.1s ease;
}

.about-sec .visual-wrapper:hover .main-image {
    filter: grayscale(0.2);
}

.about-sec .parallax-box {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    height: 240px;
    background: #FFD700;
    z-index: -1;
}

.about-sec .floating-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #000000;
    color: #ffffff;
    padding: 28px 32px;
    border-radius: 2px;
    z-index: 3;
    max-width: 190px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.about-sec .badge-label {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: #FFD700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.about-sec .badge-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
}

.about-sec .threed-visual {
    position: absolute;
    top: 180px;
    left: 35%;
    width: 450px;
    height: 450px;
    transform: rotate(10deg);
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: rotate3D 5s infinite alternate ease-in-out;
}

@keyframes rotate3D {
    from {
        transform: rotate(10deg);
    }
    to {
        transform: rotate(5deg);
    }
}

.about-sec .threed-visual canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

@keyframes aboutFadeUp {
    from { 
        opacity: 0; 
        transform: translateY(40px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@media (max-width: 1200px) {
    .about-sec {
        padding: 100px 60px;
    }
    .about-sec .container {
        gap: 70px;
    }
}

@media (max-width: 1024px) {
    .about-sec .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-sec .visual-wrapper {
        height: 400px;
        order: -1;
    }
    .about-sec .parallax-box {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -20px;
    }
}

@media (max-width: 640px) {
    .about-sec .floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-sec .stats-minimal {
        flex-direction: column;
        gap: 16px;
    }
    .about-sec .main-heading {
        font-size: 40px;
    }
}


.threed-visual-section {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 80px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100vw;
    background: transparent;
}

.threed-visual-section .threed-horizontal-viewer {
    width: 100%;
    height: 100%;
}

.threed-visual-section .threed-horizontal-viewer canvas {
    width: 100% !important;
    height: 100% !important;
}


.whywe-sec {
    width: 100%;
    position: relative;
    height: auto;
}

.whywe-sec .boxes {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

.whywe-sec .boxes .box {
    position: relative;
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.whywe-sec .box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.whywe-sec .boxes .box:hover .box-bg {
    transform: scale(1.01);
    filter: grayscale(0.3);
}

.whywe-sec .box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.whywe-sec .boxes .box:hover .box-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.85) 100%);
}

.whywe-sec .box-content {
    position: absolute;
    z-index: 2;
    color: #ffffff;
    max-width: 75%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    display: flex;
    flex-direction: column;
}

.whywe-sec .box-content.top-left {
    top: 40px;
    left: 40px;
    align-items: flex-start;
}

.whywe-sec .box-content.top-right {
    top: 40px;
    right: 40px;
    text-align: right;
    
    align-items: flex-end;
}

.whywe-sec .box-content.bottom-left {
    bottom: 40px;
    left: 40px;
    align-items: flex-start;
}

.whywe-sec .box-content.bottom-right {
    bottom: 40px;
    right: 40px;
    text-align: right;
    
    align-items: flex-end;
}

.whywe-sec .box-number {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    z-index: 1;
}

.whywe-sec .box-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    margin-top: 10px;
    max-width: 560px;
}

.whywe-sec .box-content.top-right .box-title-wrapper,
.whywe-sec .box-content.bottom-right .box-title-wrapper {
    flex-direction: row-reverse;
}

.whywe-sec .box-title {
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 14px 0;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
}

.whywe-sec .box-desc {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 20px;
    font-weight: 400;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.whywe-sec .boxes .box:hover .box-desc {
    opacity: 1;
    max-height: 300px;
}

.whywe-sec .box-icon {
    width: 52px;
    height: 52px;
    background: #FFD700;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whywe-sec .box-icon::before {
    content: attr(data-number);
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #0a0a0a;
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whywe-sec .boxes .box:hover .box-icon::before {
    opacity: 1;
    transform: scale(1);
}

.whywe-sec .boxes .box:hover .box-icon {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.whywe-sec .box-content.top-right .box-icon,
.whywe-sec .box-content.bottom-right .box-icon {
    margin-left: 0;
}


.whywe-sec .centerbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #ffffff;
    text-align: center;
    width: 200px;
    height: 200px;
    background: var(--bg-color);
    border-radius: 10px;
    border: 10px solid var(--bg-color);

    display: flex;
    justify-content: center;
    align-items: center;
}

.whywe-sec .centerbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 18s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(85deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(275deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    
}

@media (max-width: 1024px) {
    .whywe-sec .boxes .box {
        height: 400px;
    }
    .whywe-sec .box-content {
        max-width: 240px;
    }
    .whywe-sec .box-content.top-left,
    .whywe-sec .box-content.top-right,
    .whywe-sec .box-content.bottom-left,
    .whywe-sec .box-content.bottom-right {
        top: 30px;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .whywe-sec .boxes .box {
        height: 350px;
    }
    .whywe-sec .box-desc {
        opacity: 1;
        transform: translateY(0);
    }
}


.product-intro-sec {
    position: relative;
    padding: 60px 5%;
    overflow: hidden;
    height: auto;
    
    background: #fafafa;
    margin: 0px 20px;
}

.product-intro-sec .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;

}

.product-intro-sec .product-visual {
    position: relative;
}

.product-intro-sec .visual-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.product-intro-sec .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-intro-sec .visual-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #0a0a0a;
    color: #ffffff;
    padding: 20px 26px;
    border-radius: 2px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.product-intro-sec .badge-label {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    color: #FFD700;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-intro-sec .badge-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.product-intro-sec .product-content {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-intro-sec .eyebrow {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #0a0a0a;
    margin-bottom: 5px;
    opacity: 0.6;
}

.product-intro-sec .section-title {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.product-intro-sec .section-title .outline-text {
    text-transform: uppercase;
    font-weight: 900;
}

.product-intro-sec .content-block {
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.product-intro-sec .content-block:hover {
    transform: translateX(4px);
}

.product-intro-sec .block-dot {
    position: absolute;
    left: 2px;
    top: 7px;
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.product-intro-sec .content-block:hover .block-dot {
    transform: scale(1.2);
}

.product-intro-sec .block-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.75);
}

.product-intro-sec .btn {
    margin-top: 15px;
}


.insights-sec {
    position: relative;
    padding: 70px 5%;
    background: #fafafa;
    margin: 20px;
    overflow: hidden;
}

.insights-sec .container {
    max-width: 1400px;
    margin: 0 auto;
}

.insights-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.insights-sec .eyebrow {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #0a0a0a;
    margin-bottom: 10px;
    opacity: 0.6;
}

.insights-sec .section-title {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin: 0 0 14px 0;
}

.insights-sec .section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.65);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.resource-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    padding: 28px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.resource-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.resource-icon {
    width: 46px;
    height: 46px;
    background: #FFD700;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}

.resource-tag {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    color: rgba(10, 10, 10, 0.7);
}

.resource-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.resource-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.65);
    margin: 0;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 6px 0 0 0;
    list-style: none;
}

.resource-list li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: rgba(10, 10, 10, 0.7);
}

.resource-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 2px;
    background: #FFD700;
}

.resource-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
    transition: color 0.3s ease, gap 0.3s ease;
}

.resource-link:hover {
    color: #FFD700;
    gap: 12px;
}

.resource-pill {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 10px;
    border-radius: 2px;
    background: rgba(255, 215, 0, 0.15);
    color: #0a0a0a;
}

.insights-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0%, rgba(255, 215, 0, 0.4) 50%, rgba(0, 0, 0, 0.06) 100%);
    margin: 50px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.approach-visual {
    position: relative;
    height: 420px;
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.approach-visual:hover img {
    transform: scale(1.01);
    filter: grayscale(0);
}

.visual-tag {
    position: absolute;
    bottom: -45px;
    right: 70%;
    background: #0a0a0a;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 2px;
    width: 180px;
}

.tag-label {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    color: #FFD700;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tag-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.approach-header {
    margin-bottom: 26px;
}

.approach-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.approach-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    padding: 22px 24px;
    min-height: 180px;
}

.approach-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.7);
    margin: 0;
}

.education-sec {
    position: relative;
    padding: 80px 5%;
    background: #ffffff;
    margin: 20px;
    overflow: hidden;
}

.education-sec .container {
    max-width: 1400px;
    margin: 0 auto;
}

.education-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: start;
}

.education-content .eyebrow {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #0a0a0a;
    margin-bottom: 10px;
    opacity: 0.6;
}

.education-content .section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.education-content .section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.65);
    margin-bottom: 28px;
    max-width: 620px;
}

.education-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.education-tag {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px;
    border-radius: 2px;
    background: rgba(255, 215, 0, 0.18);
    color: #0a0a0a;
}

.education-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.education-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.point-icon {
    width: 32px;
    height: 32px;
    background: #FFD700;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    flex-shrink: 0;
}

.point-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.point-title {
    font-size: 14px;
    font-weight: 700;
    color: #0a0a0a;
}

.point-desc {
    font-size: 13.5px;
    color: rgba(10, 10, 10, 0.7);
}

.education-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.education-panel {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.panel-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    padding: 20px;
    background: #fbfbfb;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-card.panel-dark {
    background: #111111;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.panel-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(10, 10, 10, 0.7);
    font-weight: 700;
}

.panel-card.panel-dark .panel-title {
    color: rgba(255, 255, 255, 0.7);
}

.panel-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.panel-date {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: #0a0a0a;
    background: #FFD700;
    padding: 6px 10px;
    border-radius: 2px;
    min-width: 80px;
    text-align: center;
}

.panel-text {
    font-size: 13.5px;
    color: rgba(10, 10, 10, 0.75);
    line-height: 1.5;
}

.panel-card.panel-dark .panel-text {
    color: rgba(255, 255, 255, 0.75);
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.panel-tags span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 2px;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.education-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.education-side .video-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.video-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.video-card:hover .video-cover img {
    transform: scale(1.01);
    filter: grayscale(0);
}

.video-play {
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background: #FFD700;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.video-body {
    padding: 24px 26px 18px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.05);
    color: #0a0a0a;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    width: fit-content;
}

.video-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.video-meta {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: rgba(10, 10, 10, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-footer {
    padding: 0 26px 22px 26px;
    display: flex;
    justify-content: flex-start;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
    transition: color 0.3s ease, gap 0.3s ease;
}

.video-link:hover {
    color: #FFD700;
    gap: 12px;
}

.webinar-card {
    background: #111111;
    color: #ffffff;
    border-radius: 2px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.webinar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.webinar-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.webinar-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 2px;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
}

.webinar-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.webinar-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.webinar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.webinar-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.webinar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.webinar-actions .btn.btn-primary {
    background: #FFD700;
    color: #0a0a0a;
    max-height: 40px;
    padding: 10px 28px;
}

.webinar-actions .btn.btn-primary:hover {
    color: #0a0a0a;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}

.webinar-actions .btn.btn-primary::before {
    background: rgba(255, 255, 255, 0.5);
}

.webinar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFD700;
    text-decoration: none;
}


/* FAQ Section */
.faq-sec {
    position: relative;
    padding: 60px 5%;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    margin: 20px 20px 50px 20px;
    overflow: hidden;
    height: auto;
}

.faq-sec .container {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-sec .faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-sec .eyebrow {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #0a0a0a;
    margin-bottom: 16px;
    opacity: 0.6;
}

.faq-sec .section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0a0a0a;
}

.faq-sec .faq-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 80px;
    align-items: start;
}

.faq-sec .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-sec .faq-item {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-sec .faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-sec .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    cursor: pointer;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-sec .faq-question:hover {
    background: #fafafa;
}

.faq-sec .faq-question-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-sec .faq-question-number {
    width: 44px;
    height: 44px;
    background: #FFD700;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-sec .faq-item.active .faq-question-number {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.faq-sec .faq-question-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #0a0a0a;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-sec .faq-item.active .faq-question-title {
    color: #0a0a0a;
}

.faq-sec .faq-question i {
    color: rgba(10, 10, 10, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.faq-sec .faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #FFD700;
}

.faq-sec .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 32px;
}

.faq-sec .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 32px 32px 96px;
}

.faq-sec .faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 14px;
}

.faq-sec .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-sec .faq-visual-sticky {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-sec .faq-hero-visual {
    position: relative;
    height: 650px;
    background: #0a0a0a;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.faq-sec .faq-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 75%, 85% 100%, 0 100%);
}

.faq-sec .faq-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) brightness(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-sec .faq-hero-visual:hover .faq-hero-image img {
    transform: scale(1.01);
    filter: grayscale(0%) brightness(1);
}

.faq-sec .faq-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.faq-sec .faq-hero-content {
    max-width: 100%;
}

.faq-sec .faq-eyebrow {
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: #FFD700;
    border-radius: 2px;
}

.faq-sec .faq-hero-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.faq-sec .faq-hero-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.faq-sec .faq-hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-sec .faq-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-sec .faq-hero-stat .stat-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.faq-sec .faq-hero-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-sec .faq-hero-content .btn {
    min-width: 220px;
}

.faq-sec .faq-clip-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.faq-sec .faq-hero-visual:hover .faq-clip-accent {
    opacity: 1;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@media (max-width: 1200px) {
    .product-intro-sec .container {
        gap: 60px;
    }
    
    .faq-sec .faq-content {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .product-intro-sec .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .product-intro-sec .visual-container {
        height: 500px;
    }
    
    .resource-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-visual {
        height: 360px;
    }

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

    .video-cover {
        height: 280px;
    }
    
    .faq-sec .faq-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .faq-sec .faq-visual-sticky {
        position: static;
    }
    
    .faq-sec .faq-hero-visual {
        height: 550px;
    }
    
    .faq-sec .faq-hero-overlay {
        padding: 40px 32px;
    }
    
    .faq-sec .faq-hero-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 800px) {
    .faq-sec .faq-content {
        gap: 40px;
    }
    
    .faq-sec .faq-hero-visual {
        height: 500px;
    }
    
    .faq-sec .faq-hero-stats {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .faq-sec .faq-hero-visual {
        height: 450px;
    }
    
    .faq-sec .faq-hero-overlay {
        padding: 32px 24px;
    }
    
    .faq-sec .faq-hero-content h3 {
        font-size: 24px;
    }
    
    .faq-sec .faq-hero-content p {
        font-size: 14px;
    }
    
    .faq-sec .faq-hero-stat .stat-value {
        font-size: 24px;
    }
    
    .faq-sec .faq-hero-stats {
        gap: 20px;
        padding: 16px 0;
    }
    
    .faq-sec .faq-hero-content .btn {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-intro-sec {
        padding: 80px 5%;
    }
    .product-intro-sec .visual-container {
        height: 400px;
    }
    .product-intro-sec .content-block {
        padding-left: 54px;
    }
    .product-intro-sec .block-number {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .faq-sec {
        padding: 80px 5%;
    }
    
    .faq-sec .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-sec .faq-question {
        padding: 22px 24px;
    }
    
    .faq-sec .faq-question-left {
        gap: 14px;
    }
    
    .faq-sec .faq-question-number {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .faq-sec .faq-question-title {
        font-size: 15px;
    }
    
    .faq-sec .faq-item.active .faq-answer {
        padding: 0 24px 24px 76px;
    }
    
    .faq-sec .faq-answer p {
        font-size: 14px;
    }
    
    .faq-sec .faq-hero-visual {
        height: 480px;
    }
    
    .faq-sec .faq-hero-overlay {
        padding: 36px 28px;
    }
    
    .faq-sec .faq-hero-content h3 {
        font-size: 26px;
    }
    
    .faq-sec .faq-eyebrow {
        font-size: 10px;
    }
    
    .insights-sec {
        padding: 60px 5%;
    }
    
    .resource-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-visual {
        height: 320px;
    }
    
    .approach-columns {
        grid-template-columns: 1fr;
    }

    .education-sec {
        padding: 60px 5%;
    }

    .video-cover {
        height: 260px;
    }

    .education-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .webinar-info {
        grid-template-columns: 1fr;
    }

    .education-panel {
        grid-template-columns: 1fr;
    }
}

.headerBanner {
    position: relative;
    height: 60vh;
    margin: 0 70px;
    margin-top: 12vh;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.headerBanner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.headerBanner .banner-media {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.headerBanner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 2;
}

.headerBanner-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    width: 100%;
    padding: 40px 0 40px 80px;
    text-align: left;
}

.headerBanner .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 40px;
    font-size: 13px;
    font-weight: 500;
}

.headerBanner .breadcrumb a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.headerBanner .breadcrumb a:hover {
    color: #FFD700;
}

.headerBanner .breadcrumb i {
    color: rgba(10, 10, 10, 0.4);
}

.headerBanner .breadcrumb span {
    color: #0a0a0a;
    font-weight: 600;
}

.headerBanner .banner-main {
    margin-bottom: 0;
}

.headerBanner .banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.headerBanner .eyebrow-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 215, 0, 0.6);
}

.headerBanner .eyebrow-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #FFD700;
    text-transform: uppercase;
}

.headerBanner .banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.headerBanner .banner-title .outline-text {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    text-stroke: 1.5px #ffffff;
}

.headerBanner .banner-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
}

.headerBanner .banner-decor {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 4;
    pointer-events: none;
}

.headerBanner .banner-decor::before,
.headerBanner .banner-decor::after {
    content: '';
    position: absolute;
    background: #ffffff;
}

.headerBanner .banner-decor::before {
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
}

.headerBanner .banner-decor::after {
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
}

.headerBanner .banner-decor.tl {
    top: 10px;
    left: 10px;
}

.headerBanner .banner-decor.tr {
    top: 10px;
    right: 10px;
}

.headerBanner .banner-decor.tr::before {
    left: auto;
    right: 0;
}

.headerBanner .banner-decor.bl {
    bottom: 10px;
    left: 10px;
}

.headerBanner .banner-decor.bl::after {
    top: auto;
    bottom: 0;
}

.headerBanner .banner-decor.br {
    bottom: 10px;
    right: 10px;
}

.headerBanner .banner-decor.br::before {
    left: auto;
    right: 0;
}

.headerBanner .banner-decor.br::after {
    top: auto;
    bottom: 0;
}

.headerBanner .bannerBoxes {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: radial-gradient(circle at right center, rgba(255, 215, 0, 0.2) 0%, transparent 80%);
    z-index: 2;
}

.headerBanner .bannerBoxes .box {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    animation: floatBox 10s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerBanner .bannerBoxes .box i {
    font-size: 42px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 215, 0, 0.5);
    text-stroke: 1.5px rgba(255, 215, 0, 0.5);
}

.headerBanner .bannerBoxes .box:nth-child(1) {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.headerBanner .bannerBoxes .box:nth-child(2) {
    top: 40%;
    left: 40%;
    animation-delay: 2s;
}

.headerBanner .bannerBoxes .box:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatBox {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-4px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.contact-sec {
    position: relative;
    padding: 70px 5%;
    background: #fafafa;
    margin: 20px;
    overflow: hidden;
}

.contact-sec .container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    max-width: 720px;
    margin-bottom: 50px;
}

.contact-sec .eyebrow {
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #0a0a0a;
    margin-bottom: 12px;
    opacity: 0.6;
}

.contact-sec .section-title {
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.contact-sec .section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(10, 10, 10, 0.65);
    max-width: 640px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
}

.form-field input,
.form-field textarea {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.contact-form .btn {
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
    padding: 30px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: #FFD700;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    flex-shrink: 0;
}

.info-text {
    font-size: 14.5px;
    color: rgba(10, 10, 10, 0.7);
    line-height: 1.5;
}

.contact-map {
    height: 220px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .headerBanner {
        height: 70vh;
        margin: 0 20px;
        margin-top: 10vh;
        border-radius: 3px;
    }
    
    .headerBanner-content {
        padding: 30px 20px;
    }
    
    .headerBanner .banner-title {
        font-size: 36px;
    }
    
    .headerBanner .banner-description {
        font-size: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 28px;
    }
}

