@font-face {
    font-family: 'Anita Semi-Square';
    src: url('fonts/AnitaSemiSquare-Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BrownStd';
    src: url('fonts/BrownStd-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

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

:root {
    --primary-bg: #0A0A0A;
    --text-light: #D8E5EA;
    --text-white: #FFFFFF;
    --accent-orange: #ED8B00;
    --gradient-start: rgba(10, 10, 10, 1);
    --gradient-end: rgba(10, 10, 10, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: var(--text-light);
    overflow-x: hidden;
}

/* Typography */
.headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

.body-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-light);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    opacity: 0.9;
}

/* Smooth Scrolling Container */
.scroll-container {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 0px;
    padding-right: 0px;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-video-container {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper [data-bynder-widget="video-item"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    pointer-events: none;
    z-index: 2;
}

.hero-title {
    font-family: 'BrownStd', 'Montserrat', 'Helvetica', sans-serif;
    font-weight: 300;
    font-size: clamp(4rem, 8vw, 8rem);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ED8B00, #D8E5EA);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    margin-bottom: 2rem;
    color: #D8E5EA;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #D8E5EA;
    line-height: 1.8;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Button Styling */
.cta-group {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 40px;
    background: #ED8B00;
    color: #27251F;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: 2px solid #ED8B00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.cta-button:hover {
    background: transparent;
    color: #ED8B00;
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(237, 139, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #D8E5EA;
    border: 2px solid #D8E5EA;
}

.cta-secondary:hover {
    background: #D8E5EA;
    color: #27251F;
    box-shadow: 0 15px 45px rgba(216, 229, 234, 0.3);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
        min-width: 180px;
        width: 100%;
        max-width: 300px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
}

/* Cinematic Reveal Section */
.cinematic-section {
    min-height: 300vh;
    position: relative;
    background: #000;
}

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

.reveal-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.reveal-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(100px);
}

.reveal-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    color: #cccccc;
}

.reveal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

/* Interactive 3D Model Section */
.model-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1915 100%);
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.model-container {
    max-width: 1400px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.model-viewer {
    width: 100%;
    height: 600px;
    margin: 0 auto 40px;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.model-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
    color: #D8E5EA;
}

.model-loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(216, 229, 234, 0.2);
    border-radius: 2px;
    margin-top: 10px;
}

.model-loading-progress {
    width: 0%;
    height: 100%;
    background: #ED8B00;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.model-error {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ED8B00;
    z-index: 4;
    background: rgba(10, 10, 10, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.model-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #D8E5EA;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.model-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ruggedness Section Styles */
.ruggedness-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.ruggedness-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ruggedness-text {
    text-align: center;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transform: translateY(30px);
    opacity: 0;
}

.ruggedness-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 40px;
    color: #D8E5EA;
    line-height: 1.2;
}

.ruggedness-text p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: #D8E5EA;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.ruggedness-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    opacity: 0;
}

@media (max-width: 768px) {
    .ruggedness-section {
        padding-top: 0px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .ruggedness-content {
        gap: 30px;
    }

    .ruggedness-text {
        padding: 30px 15px;
    }

    .ruggedness-text h2 {
        font-size: clamp(2rem, 5vw, 4rem);
        margin-bottom: 40px;
        line-height: 1.2;
    }

    .ruggedness-text p {
        font-size: clamp(1.125rem, 2vw, 1.5rem);
        color: #D8E5EA;
        opacity: 0.9;
        line-height: 1.6;
        max-width: 900px;
        margin: 0 auto;
    }

    .ruggedness-video {
        border-radius: 10px;
    }
}

.rugged-video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Before/After Section Styles */
.comparison-section {
    min-height: 100vh;
    background: #000000;
    padding: 40px 40px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comparison-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.comparison-side {
    background: rgba(216, 229, 234, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.comparison-before {
    filter: grayscale(100%) brightness(0.8);
}

.comparison-after {
    filter: brightness(1.5);
}

.comparison-header {
    text-align: center;
    margin-bottom: 40px;
}

.comparison-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.comparison-items {
    display: grid;
    gap: 30px;
}

.comparison-item {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(216, 229, 234, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
    background: rgba(216, 229, 234, 0.08);
}

.before-text,
.after-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.before-text {
    color: rgba(216, 229, 234, 0.7);
}

.after-text {
    color: var(--text-light);
}

.comparison-divider {
    position: relative;
    width: 2px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.divider-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-orange), transparent);
}

.divider-arrow {
    width: 60px;
    height: 60px;
    background: rgba(237, 139, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--accent-orange);
    font-size: 24px;
    z-index: 3;
}

.comparison-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 40px 20px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-divider {
        width: 100%;
        height: 2px;
        margin: 20px 0;
    }

    .divider-line {
        width: 100%;
        height: 2px;
    }

    .divider-arrow {
        transform: rotate(90deg);
    }
}

/* Application Carousel */
.carousel-section {
    min-height: 100vh;
    background: #000000;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #D8E5EA;
    margin-bottom: 60px;
    transform: translateY(30px);
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* Application Carousel Styles */
.carousel-item {
    flex: 0 0 400px;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
    border: 1px solid rgba(216, 229, 234, 0.1);
    border-radius: 20px;
    padding: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.carousel-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.carousel-content h3 {
    font-size: 1.8rem;
    color: #D8E5EA;
    margin-bottom: 20px;
    font-weight: 300;
}

.carousel-content p {
    font-size: 1.1rem;
    color: #D8E5EA;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.carousel-content .cta-button {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 300px;
        min-height: 500px;
    }

    .carousel-image {
        height: 200px;
    }

    .carousel-content {
        min-height: 300px;
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(216, 229, 234, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ED8B00;
    transform: scale(1.2);
}

/* Demo Video Section */
.demo-section {
    min-height: 100vh;
    background: #000000;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.demo-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.demo-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #D8E5EA;
    margin-bottom: 30px;
    transform: translateY(30px);
}

.demo-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #D8E5EA;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.demo-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.video-container [data-bynder-widget="video-item"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(237, 139, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #D8E5EA;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 20px;
    }

    .demo-video-wrapper {
        margin-bottom: 40px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button::before {
        border-width: 12px 0 12px 20px;
        margin-left: 4px;
    }
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
    transform: translateY(30px);
}

.demo-feature {
    background: rgba(216, 229, 234, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    transform: translateY(-5px);
    background: rgba(216, 229, 234, 0.08);
}

.demo-feature h3 {
    font-size: 1.4rem;
    color: #ED8B00;
    margin-bottom: 15px;
    font-weight: 300;
}

.demo-feature p {
    font-size: 1rem;
    color: #D8E5EA;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .carousel-section,
    .demo-section {
        padding: 60px 20px;
    }

    .carousel-item {
        flex: 0 0 300px;
        height: 400px;
        padding: 30px;
    }

    .demo-video-wrapper {
        margin-bottom: 40px;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .demo-features {
        grid-template-columns: 1fr;
    }
}

/* Trust Section */
.trust-section {
    padding: 40px 40px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.trust-title {
    font-size: clamp(3rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 40px;
    color: #D8E5EA;
    transform: translateY(30px);
}

.trust-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    text-align: center;
    color: #D8E5EA;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.trust-item {
    background: rgba(216, 229, 234, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    transform: translateY(30px);
}

.trust-item:hover {
    transform: translateY(-10px);
    background: rgba(216, 229, 234, 0.08);
}

.trust-item h3 {
    color: #ED8B00;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.trust-item p {
    color: #D8E5EA;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Alignment Section */
.alignment-section {
    padding: 40px 40px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.alignment-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.alignment-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #D8E5EA;
    margin-bottom: 40px;
    transform: translateY(30px);
}

.code-display {
    font-family: 'Montserrat', 'Helvetica', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.5rem;
    margin: 60px 0;
    color: #ED8B00;
    position: relative;
    display: inline-block;
    padding: 20px 40px;
    background: rgba(237, 139, 0, 0.1);
    border-radius: 10px;
}

.code-display::before,
.code-display::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ED8B00;
    opacity: 0.5;
}

.code-display::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.code-display::after {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.alignment-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #D8E5EA;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
}

.alignment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    transform: translateY(30px);
}

.alignment-item {
    background: rgba(216, 229, 234, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.alignment-item:hover {
    transform: translateY(-5px);
    background: rgba(216, 229, 234, 0.08);
}

.alignment-item h4 {
    color: #ED8B00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.alignment-item p {
    color: #D8E5EA;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    background: #000000;
    padding: 60px 20px;
    text-align: center;
}

.final-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-title {
    margin-bottom: 40px;
}

.final-description {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 50px;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 40px 20px;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .final-title {
        margin-bottom: 40px;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-text {
    font-family: 'BrownStd', 'Montserrat', 'Helvetica', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D8E5EA;
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #D8E5EA33;
    z-index: 1000;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF, #ED8B00);
    width: 0%;
    transition: width 0.1s ease;
}

/* Feature Sections */
.section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 40px;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(60px);
}

.feature-content {
    opacity: 0;
    transform: translateX(-50px);
}

.feature-visual {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-content h2 {
    font-family: 'Montserrat', 'Helvetica', sans-serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    color: #D8E5EA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.feature-content p {
    font-family: 'Montserrat', 'Helvetica', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 40px;
    color: #D8E5EA;
    line-height: 1.8;
    opacity: 0.9;
}

.feature-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ED8B00, #0A0A0A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #D8E5EA;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

@media (max-width: 768px) {
    .section {
        padding: 0px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .feature-visual {
        order: 1;
    }

    .feature-content {
        order: 2;
        text-align: center;
    }
}

/* Application Carousel Section */
.applications-section {
    min-height: 100vh;
    background: #000000;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.applications-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.applications-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #D8E5EA;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.applications-carousel {
    position: relative;
    margin: 0 -20px;
    padding: 20px 0;
}

.applications-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 40px;
    padding: 20px;
}

.application-slide {
    flex: 0 0 calc(33.333% - 27px);
    min-width: calc(33.333% - 27px);
    background: rgba(216, 229, 234, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.application-slide:hover {
    transform: translateY(-10px);
    background: rgba(216, 229, 234, 0.08);
}

.application-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-slide:hover .application-image {
    transform: scale(1.05);
}

.application-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.application-content h3 {
    color: #D8E5EA;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.application-content p {
    color: #D8E5EA;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.application-cta {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-orange);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 400;
    border: none;
    position: relative;
    overflow: hidden;
}

.application-cta:hover {
    background: #ff9a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 139, 0, 0.4);
}

.application-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.application-cta:hover::before {
    left: 100%;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(216, 229, 234, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(216, 229, 234, 0.2);
    transform: scale(1.1);
}

.carousel-button svg {
    width: 24px;
    height: 24px;
    fill: #D8E5EA;
}

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Video Styles */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    pointer-events: none;
}

.hero-video-container,
.ruggedness-video {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

.hero-video,
.rugged-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure consistent video styling between sections */
.hero-video-container,
.ruggedness-video {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {

    .hero-video-container,
    .ruggedness-video {
        border-radius: 10px;
        margin: 20px auto;
    }
}

/* Update video container styles for Bynder compatibility */
.hero-video-container,
.ruggedness-video {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    pointer-events: none;
    z-index: 1;
}

/* Ensure Bynder iframe is responsive */
[data-bynder-widget="video-item"] {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
}

[data-bynder-widget="video-item"] iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {

    .hero-video-container,
    .ruggedness-video {
        border-radius: 10px;
    }
}

/* Global section visibility fixes */
section {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.demo-section,
.trust-section,
.alignment-section,
.final-cta-section {
    min-height: 50vh;
    background: #000000;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.demo-container,
.trust-container,
.alignment-container,
.final-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Demo Features visibility fix */
.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.demo-feature {
    background: rgba(216, 229, 234, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Trust section visibility fix */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

/* Alignment section visibility fix */
.alignment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Final CTA visibility fix */
.final-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    .demo-section,
    .trust-section,
    .alignment-section,
    .final-cta-section {
        padding-top: 0px;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.demo-cta {
    text-align: center;
    margin-top: 60px;
}

.demo-cta .cta-button {
    min-width: 250px;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.trust-text a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.trust-text a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.trust-text:last-child {
    margin-bottom: 0;
}

.alignment-section {
    background: #000000 !important;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.alignment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.alignment-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.alignment-content {
    margin-top: 60px;
}

.alignment-text {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 40px;
    transform: translateY(30px);
}

.code-sequence {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    font-family: 'Courier New', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
}

.code-character {
    font-family: 'Anita Semi-Square', sans-serif;
    width: 60px;
    height: 80px;
    background: rgba(237, 139, 0, 0.1);
    border: 2px solid rgba(237, 139, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ED8B00;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    padding-left: 0.1em;
}

.code-character::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #ED8B00;
    border-radius: 50%;
    opacity: 0.5;
}

.alignment-cta {
    margin-top: 60px;
}

.cta-subtext {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .alignment-section {
        padding: 80px 20px;
    }

    .code-sequence {
        gap: 10px;
    }

    .code-character {
        width: 40px;
        height: 60px;
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
}

.industries-showcase {
    padding: 40px 0;
    background: #000000;
    overflow: hidden;
    position: relative;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.industries-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #D8E5EA;
    opacity: 0;
    transform: translateY(30px);
}

.industries-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 -40px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
}

.slider-slide {
    flex: 0 0 calc(33.333% - 27px);
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.slider-slide.active {
    opacity: 1;
}

.industry-card {
    background: rgba(216, 229, 234, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-image-container {
    position: relative;
    padding-top: 66.67%;
    /* 3:2 aspect ratio */
    overflow: hidden;
}

.industry-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image {
    transform: scale(1.05);
}

.industry-title {
    padding: 24px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(216, 229, 234, 0.2);
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(216, 229, 234, 0.1);
    border-color: rgba(216, 229, 234, 0.3);
    transform: scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-progress {
    margin-top: 40px;
    height: 2px;
    background: rgba(216, 229, 234, 0.1);
    position: relative;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-orange);
    transition: width 0.5s ease;
    width: 20%;
}

@media (max-width: 1200px) {
    .slider-slide {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .industries-showcase {
        padding: 20px 0;
    }

    .industries-container {
        padding: 0 20px;
    }

    .industries-slider {
        margin: 0 -20px;
        gap: 20px;
    }

    .slider-slide {
        flex: 0 0 calc(100% - 40px);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .industry-title {
        padding: 20px;
        font-size: 1.2rem;
    }
}

/* Remove all gradient overlays and ensure consistent background */
.hero::before,
.section::before,
.trust-section::before,
.alignment-section::before {
    display: none;
    /* Remove gradient overlays completely */
}

.hero,
.section,
.demo-section,
.trust-section,
.alignment-section,
.industries-showcase,
.ruggedness-section,
.comparison-section,
.final-cta-section,
.applications-section {
    background: #000000 !important;
    /* Force solid black background */
    background-image: none !important;
    /* Remove any background images */
}

/* Remove specific gradients */
.alignment-section {
    background: #000000 !important;
    background-image: none !important;
}

.final-cta-section {
    background: #000000 !important;
    background-image: none !important;
}

/* Remove any remaining gradient backgrounds */
[class*="section"] {
    background: #000000 !important;
    background-image: none !important;
}

/* Ensure overlay consistency */
.overlay,
.gradient-overlay {
    background: rgba(10, 10, 10, 0.4);
    background-image: none !important;
}

/* Clarity Section */
.clarity-section {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.clarity-content {
    max-width: 1000px;
    margin: 0 auto;
}

.clarity-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: 40px;
    transform: translateY(30px);
}

.clarity-styled-c {
    display: inline-block;
    background-color: #1d1b19;
    /* Dark grey from image */
    color: #FFFFFF;
    /* White 'C' */
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    padding-left: 0.3em;
    padding-right: 0.1em;
    border-radius: 0.15em;
    /* More rounded corners */
    /* Layered box-shadows for orange, white, orange borders and glow */
    box-shadow:
        0 0 0 1px #ED8B00,
        /* Innermost orange border (2px) */
        0 0 0 1.5px #FFFFFF,
        /* Thin white border (2px beyond previous, total 4px spread) */
        0 0 0 3px #ED8B00,
        /* Outer orange border (2px beyond previous, total 6px spread) */
        0 0 20px 8px #ed8b00;
    /* Main orange glow/shadow */
    font-family: 'Anita Semi-Square', sans-serif;
    /* Attempting to match font */
    font-weight: normal;
    font-size: 1em;
    /* Slightly larger C to fill the box */
    line-height: 1;
    vertical-align: middle;
    margin-right: 0.1em;
    margin-bottom: 0.2em;
}

.clarity-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .clarity-section {
        padding: 20px 20px;
    }
}

/* Feature CTA Section */
.feature-cta-section {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feature-cta-section {
        padding: 0px 20px;
    }
}

/* Smart Design Section */
.smart-design-section {
    padding: 40px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.smart-design-content {
    max-width: 1200px;
    margin: 0 auto;
}

.smart-design-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-light);
    margin-bottom: 40px;
}

.smart-design-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 60px;
}

.smart-design-visual {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    aspect-ratio: 16/9;
    background: rgba(216, 229, 234, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.smart-design-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .smart-design-section {
        padding: 80px 20px;
    }
}

/* Comparison description styles */
.comparison-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Industries description styles */
.industries-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

@media (max-width: 1920px) {
    .hero-video-container {
        max-width: 80vw;
    }
}

@media (max-width: 1440px) {
    .hero-video-container {
        max-width: 85vw;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-video-container {
        max-width: 95vw;
        border-radius: 10px;
    }
}

/* Play button styles */
.hero-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(237, 139, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(237, 139, 0, 1);
    box-shadow: 0 0 30px rgba(237, 139, 0, 0.3);
}

.hero-play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 35px;
    border-color: transparent transparent transparent #FFFFFF;
    margin-left: 8px;
}

.hero-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-play-button {
        width: 80px;
        height: 80px;
    }

    .hero-play-button::before {
        border-width: 15px 0 15px 25px;
        margin-left: 6px;
    }
}

/* Final description styles update */
.final-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 50px;
}

.final-description p {
    margin-bottom: 30px;
}

.final-description p:last-child {
    margin-bottom: 0;
}

.cypher-360-container {
    max-width: 100%;
    margin-top: 40px;
    margin-bottom: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.cypher-360-gif {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

#subscribe {
    scroll-margin-top: 10px;
}

#f {
    scroll-margin-top: 35vh;
}

/* Section heading styles */
.carousel-title,
.demo-title,
.trust-title,
.alignment-title,
.final-title,
.clarity-title,
.smart-design-title,
.comparison-title,
.industries-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Ensure section containers are visible */
.carousel-section,
.demo-section,
.trust-section,
.alignment-section,
.final-cta-section {
    position: relative;
    z-index: 1;
    background: #000000;
    overflow: visible;
}

/* Container visibility */
.carousel-container,
.demo-container,
.trust-container,
.alignment-container,
.final-container {
    position: relative;
    z-index: 2;
}

.industries-showcase {
    padding: 40px 0;
    background: #000000;
    overflow: hidden;
    position: relative;
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.industries-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #D8E5EA;
    opacity: 0;
    transform: translateY(30px);
}

.industries-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 -40px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
}

.slider-slide {
    flex: 0 0 calc(33.333% - 27px);
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.slider-slide.active {
    opacity: 1;
}

.industry-card {
    background: rgba(216, 229, 234, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-image-container {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.industry-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-image {
    transform: scale(1.05);
}

.industry-title {
    padding: 24px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(216, 229, 234, 0.2);
    border-radius: 50%;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.slider-arrow:hover {
    background: rgba(216, 229, 234, 0.1);
    border-color: rgba(216, 229, 234, 0.3);
    transform: scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.slider-progress {
    margin-top: 40px;
    height: 2px;
    background: rgba(216, 229, 234, 0.1);
    position: relative;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-orange);
    transition: width 0.5s ease;
    width: 20%;
}

@media (max-width: 1200px) {
    .slider-slide {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 1024px) {
    .slider-slide {
        flex: 0 0 calc(50% - 20px);
    }
    
    .slider-container {
        overflow: hidden;
        width: 100%;
        padding: 0 20px;
    }
    
    .slider-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .industries-showcase {
        padding: 20px 0;
    }

    .industries-container {
        padding: 0 20px;
    }

    .industries-slider {
        margin: 0 -20px;
        gap: 20px;
    }

    .slider-container {
        overflow: hidden;
        width: 100%;
        padding: 0 20px;
    }

    .slider-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 20px;
        width: calc(100% + 20px);
    }

    .slider-slide {
        flex: 0 0 100%;
        min-width: 100%;
        opacity: 0.4;
        transition: opacity 0.5s ease;
    }

    .slider-slide.active {
        opacity: 1;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .industry-title {
        padding: 20px;
        font-size: 1.2rem;
    }
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-text {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.trust-text a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.trust-text a:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.trust-text:last-child {
    margin-bottom: 0;
}

.cypher-gif-container {
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}
.cypher-gif {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.final-cta-section {
    background: #000000;
    padding: 60px 60px;
    text-align: center;
}

.final-container {
    max-width: 800px;
    margin: 0 auto;
}

.final-title {
    margin-bottom: 40px;
}

.final-description {
    margin-bottom: 50px;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding-top: 80px;
        padding-bottom: 140px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}