/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gothic A1', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS - KEYFRAMES
   ============================================ */

/* Node and Network Animations */
@keyframes nodePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

@keyframes lineFlow {
    0% {
        stroke-dashoffset: 100;
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
}

/* Float Animations */
@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -20px) rotate(2deg);
    }

    66% {
        transform: translate(-20px, 15px) rotate(-2deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-25px, 30px) rotate(-3deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -25px);
    }
}

/* Opacity Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

/* Movement Animations */
@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(1080px);
    }
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(40px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   NETWORK CONNECTIONS
   ============================================ */
.network-connections circle {
    animation: nodePulse 2s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

/* Wave effect across groups */
.network-connections g:nth-child(1),
.network-connections g:nth-child(1) circle,
.network-connections g:nth-child(1) line {
    animation-delay: 0s;
}

.network-connections g:nth-child(2),
.network-connections g:nth-child(2) circle,
.network-connections g:nth-child(2) line {
    animation-delay: 0.4s;
}

.network-connections g:nth-child(3),
.network-connections g:nth-child(3) circle,
.network-connections g:nth-child(3) line {
    animation-delay: 0.8s;
}

.network-connections g:nth-child(4),
.network-connections g:nth-child(4) circle,
.network-connections g:nth-child(4) line {
    animation-delay: 1.2s;
}

.network-connections g:nth-child(5),
.network-connections g:nth-child(5) circle,
.network-connections g:nth-child(5) line {
    animation-delay: 1.6s;
}


/* HOME PAGE */
/* ============================================
   home-hero SECTION
   ============================================ */
.home-hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #0a0e27;
    overflow: hidden;
    padding: 40px 20px 0 20px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Shape Animations */
.shape-1 {
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    animation: float3 18s ease-in-out infinite;
}

.shape-4 {
    animation: float1 22s ease-in-out infinite reverse;
}

.line-glow {
    animation: glow 4s ease-in-out infinite;
}

.circle-pulse {
    animation: pulse 6s ease-in-out infinite;
}

.scanline {
    animation: scanline 8s linear infinite;
}

.slide-line {
    animation: slideRight 5s ease-in-out infinite;
}

/* home-hero Content */
.home-hero-content {
    color: white;
    max-width: 1400px;
    width: 100%;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 10;
    padding-top: 80px;
    margin: auto 0px auto 0px;
}

h1 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(48px, 4.5vw, 92px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    text-transform: none;
    text-align: center;
    width: 100%;
    padding-top: 50px;
}

.tagline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
    opacity: 0.95;
    position: relative;
    display: block;
    text-align: left;
    width: 60%;
}

.tagline-content {
    width: 60%;
    text-align: right;
    margin-left: auto;
}

.rules-cta {
    border-top: 1px solid #FA7F31;
    padding: 20px 10px 20px 10px;
}

.cta-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    right: 0;
}

.cta-link::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.cta-link:hover {
    color: rgba(255, 255, 255, 1);
}

.cta-link:hover::after {
    margin-left: 12px;
}


/* Add some content above and below for scroll testing */
.scroll-spacer {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

/* ============================================
           ENHANCED EXPLOSIVE NUMBERS
           ============================================ */

.explosive-stats {
    background: #0a0e27;
    padding: 60px 20px 100px 20px;
    position: relative;
    overflow: hidden;
}

.explosive-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(250, 127, 49, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(12, 219, 243, 0.15) 0%, transparent 50%);
}

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

.explosive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    align-items: center;
}

.explosive-stat {
    position: relative;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.explosive-stat.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.explosive-stat:nth-child(1) {
    transition-delay: 0.4s;
}

.explosive-stat:nth-child(2) {
    transition-delay: 0.6s;
}

.explosive-stat:nth-child(3) {
    transition-delay: 0.8s;
}

.explosive-stat:nth-child(4) {
    transition-delay: 1.0s;
}

.explosive-number {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 8vw, 68px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #fa7f31;
    transition: transform 0.3s ease-out;
}



@keyframes strokeGrow {
    0% {
        -webkit-text-stroke-width: 0px;
    }

    60% {
        -webkit-text-stroke-width: 4px;
    }

    100% {
        -webkit-text-stroke-width: 2px;
    }
}

/* Font outline effect with transparent fill 
        .explosive-stat:nth-child(1) .explosive-number {
            -webkit-text-stroke: 2px #FA7F31;
            text-stroke: 2px #FA7F31;
        }

        .explosive-stat:nth-child(2) .explosive-number {
            -webkit-text-stroke: 2px #FA7F31;
            text-stroke: 2px #0CDBF3;
        }

        .explosive-stat:nth-child(3) .explosive-number {
            -webkit-text-stroke: 2px #FA7F31;
            text-stroke: 2px #FA7F31;
        }

        .explosive-stat:nth-child(4) .explosive-number {
            -webkit-text-stroke: 2px #FA7F31;
            text-stroke: 2px #0CDBF3;
        } */

.explosive-label {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    transition: transform 0.5s ease-out;
}



/* Responsive Styles */
@media (max-width: 968px) {
    .explosive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .explosive-stats {
        padding: 40px 20px;
    }
}

@media (max-width: 568px) {
    .explosive-number {
        font-size: clamp(70px, 15vw, 100px);
    }

    .explosive-label {
        font-size: clamp(13px, 3.5vw, 18px);
    }
}






/* ============================================
   RETAIL SECTIONS
   ============================================ */
.retail-sections {
    display: flex;
    width: 100%;
}

.retail-section {
    width: 50%;
    min-height: 40vh;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.retail-section.getting-into::before {
    background-image: url('https://images.unsplash.com/photo-1604719312566-8912e9227c6a?w=1200&q=80');
}

.retail-section.scaling::before {
    background-image: url('/img/retail-growth-chart.jpg');
}

.retail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.retail-sections a,
.retail-section a,
.section-content {
    text-decoration: none;
}

.retail-section:hover::before {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.section-overlay a {
    width: 80%;
}

.section-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 3;
    text-align: center;
}

.retail-section:hover .section-content {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-5px);
}

.section-content h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    border-bottom: solid 1px #FA7F31;
}

.section-content p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    background-color: #FA7F31;
    padding: 10px 20px 10px 20px;
    width: 60%;
    margin: 0px auto;
}

.section-content p::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

/* ============================================
   LOGO GRID SECTION
   ============================================ */
.logo-grid-section {
    background: #fffff;
    padding: 100px 20px;
    position: relative;
}

.logo-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.logo-headline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: #0a0e27;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.logo-headline.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-subheadline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: #0a0e27;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
    border-top: solid 1px #FA7F31;
    padding-top: 15px;
}

.logo-subheadline.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.logo-grid-item {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.logo-grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-grid-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(250, 127, 49, 0.4);
    transform: translateY(-5px);
}

.logo-grid-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1.0;
    transition: all 0.3s ease;
}

.logo-grid-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #0a0e27;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

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

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

/* About-specific hex animations */
.hex-rotate-about {
    animation: rotateHex 40s linear infinite;
    transform-origin: center;
}

.hex-rotate-reverse-about {
    animation: rotateHex 35s linear infinite reverse;
    transform-origin: center;
}

.hex-pulse-about {
    animation: hexPulseAbout 6s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-headline h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    color: #002E6D;
    letter-spacing: -0.02em;
    margin: 0;
}

.about-headline .highlight {
    color: #FA7F31;
    font-style: italic;
}

/*.about-body {
    position: relative;
    padding-left: 40px;
}*/

.accent-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FA7F31, #002E6D);
    border-radius: 2px;
}

.about-body p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 400;
    line-height: 1.7;
    color: #1a1f3a;
    margin: 0;
}

.challengerstagline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(28px, 2.0vw, 42px);
    font-weight: 700;
    color: #002E6D;
    font-style: italic;
    margin: 40px 0 0 0;
    letter-spacing: -0.01em;
    text-align: right;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}

.challengerstagline.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.challengerswelcomebutton {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 500;
    color: #FA7F31;
    letter-spacing: -0.01em;
    text-align: right;
    display: block;
    text-decoration: none;
}

.challengerswelcomebutton::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

/* Scroll-triggered animation states */
.about-headline {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-body {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
    position: relative;
    padding-left: 40px;
}

.about-headline.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.about-body.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: #0a0e27;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

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

.testimonials-headline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.3;
    color: white;
    text-align: center;
    margin: 0 auto 80px auto;
    max-width: 900px;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimonials-headline.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 35px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card:nth-child(1) {
    transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s, all 0.4s ease;
}

.testimonial-card:nth-child(2) {
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s, all 0.4s ease;
}

.testimonial-card:nth-child(3) {
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s, all 0.4s ease;
}

.testimonial-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 127, 49, 0.4);
    transform: translateY(-8px);
}

.quote-mark {
    font-family: 'Gothic A1', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #FA7F31;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.author-name {
    font-family: 'Gothic A1', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 5px 0;
}

.author-company {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FA7F31;
    font-style: italic;
    margin: 0;
}

/* ============================================
   RESPONSIVE - MOBILE & TABLET
   ============================================ */

/* home-hero Mobile */
@media (max-width: 768px) {
    .home-hero {
        min-height: 50vh;
        padding: 30px 15px 0 15px;
    }

    h1 {
        margin: 0 auto 40px auto;
        font-size: clamp(40px, 13vw, 60px);
        width: 90%;
    }

    .home-hero-content {
        padding-top: 40px;
    }

    .tagline {
        width: 90%;
    }

}

/* Retail Sections Mobile */
@media (max-width: 768px) {
    .retail-sections {
        flex-direction: column;
    }

    .retail-section {
        width: 100%;
        min-height: 30vh;
    }

    .retail-sections {
        padding: 0 !important;
    }

    .section-overlay a {
        width: 95%;
    }

    .section-content {
        padding: 20px 20px;
    }

    .section-content p {
        width: 80%;
    }

}

@media (max-width: 568px) {
    .retail-section {
        min-height: 35vh;
    }
}

/* Logo Grid Tablet */
@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 25px;
    }

    .logo-grid-item {
        padding: 25px;
        min-height: 100px;
    }
}

/* Logo Grid Mobile */
@media (max-width: 768px) {
    .logo-subheadline.is-visible {
        margin-bottom: 20px;
    }

    .logo-grid-section {
        padding: 60px 15px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px !important;
    }

    .logo-grid-item {
        padding: 10px 15px;
        min-height: 90px;
    }

    .logo-grid-item img {
        max-height: 70px;
    }
}

/* About Section Responsive */
@media (max-width: 968px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-body {
        padding-left: 30px;
    }

    .about-headline h2 {
        font-size: clamp(36px, 8vw, 56px);
    }
}

@media (max-width: 568px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-body {
        padding-left: 20px;
    }

    .accent-line {
        width: 3px;
    }
}

/* Testimonials Responsive */
@media (max-width: 968px) {
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-headline {
        margin-bottom: 10px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    .testimonial-card {
        padding: 35px 30px;
    }
}

@media (max-width: 568px) {
    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .quote-mark {
        font-size: 60px;
    }
}


/*27 Rules for Retail page */


/* Hero Section */
.hero-rfr {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0e27;
    overflow: hidden;
    padding: 120px 20px 80px 20px;
}

.hero-rfr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateHex {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes hexPulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes lineDash {
    0% {
        stroke-dashoffset: 100;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.line-animate {
    stroke-dasharray: 100;
    animation: lineDash 8s linear infinite;
}

.hero-rfr-content {
    color: white;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.kicker {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FA7F31;
    margin-bottom: 20px;
    margin-top: 15px;
}

.hero-rfr-content h2 {
    font-size: clamp(48px, 7vw, 84px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
}

.subtitle {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 500;
}

.hero-rfr-content h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
    opacity: 0.9;
}

/* Combined Intro & Testimonials Section */
.intro-testimonials-section {
    background: #f8f9fa;
    padding: 80px 20px 100px 20px;
    position: relative;
    overflow: hidden;
}

.intro-testimonials-bg {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.rfr-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rfr-intro-text {
    text-align: left;
}

.rfr-intro-container p {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.8;
    color: #1a1f3a;
    margin-bottom: 20px;
}

.rfr-intro-container p:last-of-type {
    margin-bottom: 0;
    text-align: right;
}

.intro-attribution {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 600;
    color: #0a0e27;
    margin-top: 30px;
    font-style: italic;
}

.rfr-intro-image {
    width: 70%;
    height: 100%;
    min-height: 300px;
    margin-bottom: auto;
    margin-top: auto;
    transform: translateY(-40px);
}

.rfr-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 20px 40px rgba(10, 14, 39, 0.25));
}

/* Testimonials Container */
.rfr-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rfr-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.rfr-testimonials-header h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #0a0e27;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #FA7F31;
    padding-bottom: 20px;
}

.rfr-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rfr-testimonial-card {
    background: white;
    border: 1px solid rgba(10, 14, 39, 0.08);
    border-radius: 12px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(10, 14, 39, 0.04);
}

.rfr-testimonial-card:hover {
    border-color: rgba(250, 127, 49, 0.3);
    box-shadow: 0 12px 24px rgba(10, 14, 39, 0.08);
    transform: translateY(-4px);
}

.rfr-quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    opacity: 0.15;
}

.rfr-quote-icon svg {
    width: 100%;
    height: 100%;
    stroke: #FA7F31;
}

.rfr-testimonial-text {
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.7;
    color: #1a1f3a;
    margin-bottom: 30px;
    flex-grow: 1;
    font-weight: 400;
}

.rfr-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(10, 14, 39, 0.08);
}

.rfr-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(250, 127, 49, 0.2);
    background: linear-gradient(135deg, #FA7F31 0%, #0CDBF3 100%);
}

.rfr-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rfr-author-info {
    flex-grow: 1;
}

.rfr-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.rfr-author-title {
    font-size: 14px;
    font-weight: 400;
    color: #FA7F31;
    letter-spacing: 0.02em;
}

/* Rules Sections */
.rules-sections {
    background: #0a0e27;
    padding: 20px 20px 60px 20px;
    position: relative;
    overflow: hidden;
}

.rules-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.rules-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rules-open {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #FA7F31;
    margin-bottom: 40px;
}

.rules-open h3 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Tabs Navigation */
.rfr-tabs-nav {
    display: flex;
    gap: 15px;
    margin: 0px auto 15px auto;
    align-items: flex-end;
    width: 1100px;
}

.rfr-tab-button {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.rfr-tab-button:last-child {
    margin-right: 0;
}

.rfr-tab-button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(250, 127, 49, 0.3);
}

.rfr-tab-part-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FA7F31;
    margin-bottom: 8px;
}

.rfr-tab-button.active {
    background: rgba(250, 127, 49, 0.1);
    border-color: rgba(250, 127, 49, 0.5);
    padding: 30px 25px;
}

.rfr-tab-part-title {
    display: block;
    font-size: clamp(16px, 1.5vw, 24px);
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.rfr-tab-rule-count {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
}

/* Tab Panels */
.rfr-tab-panel {
    display: none;
}

.rfr-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Rule Accordion Styles */
.rule-accordion {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.rule-accordion:hover {
    border-color: rgba(250, 127, 49, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.rule-accordion.active {
    border-color: rgba(250, 127, 49, 0.5);
    background: rgba(250, 127, 49, 0.05);
}

.rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rule-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.rule-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.rule-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FA7F31;
    min-width: 65px;
}

.rule-title {
    font-size: clamp(16px, 1.3vw, 20px);
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.rule-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.rule-accordion.active .rule-toggle {
    border-color: #FA7F31;
    background: rgba(250, 127, 49, 0.2);
    transform: rotate(180deg);
}

.rule-toggle svg {
    width: 16px;
    height: 16px;
    stroke: white;
    transition: all 0.3s ease;
}

.rule-accordion.active .rule-toggle svg {
    stroke: #FA7F31;
}

/* Rule Content */
.rule-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.rule-accordion.active .rule-content {
    max-height: 1000px;
}

.rule-description-container {
    padding: 0 25px 25px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-left: 85px;
}

.rule-description {
    font-size: clamp(15px, 1.1vw, 17px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

/* Closing CTA Section */
.rules-closing {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 1.0);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rules-closing h3 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.rules-closing p {
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.rules-closing .cta-text {
    margin-top: 30px;
    font-weight: 700;
    color: white;
}

.inline-link {
    color: #FA7F31;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.inline-link:hover {
    border-bottom-color: #FA7F31;
}

/* Rules Closing CTA Button */
.rules-cta-button {
    display: inline-block;
    background: #FA7F31;
    color: #ffffff;
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 600;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: 20px;
}

.rules-cta-button:hover {
    transform: translateY(-2px);
    background: #e66d1f;
    box-shadow: 0 4px 16px rgba(250, 127, 49, 0.3);
}

/* ========================================
   RESPONSIVE STYLES - CONSOLIDATED
   ======================================== */

/* Tablet and below (968px) */
@media (max-width: 968px) {
    .hero-rfr {
        min-height: 50vh;
        padding: 100px 20px 60px 20px;
    }

    .intro-testimonials-section {
        padding: 60px 20px 80px 20px;
    }

    .rfr-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0px 10px;
        margin-bottom: 80px;
    }

    .rfr-intro-image {
        min-height: 400px;
        margin: 0 auto;
        padding-top: 20px;
    }

    .rfr-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rfr-testimonials-header {
        margin-bottom: 50px;
    }

    .rfr-testimonial-card {
        padding: 30px;
    }

    .rules-sections {
        padding: 20px 20px;
    }

    .rfr-tabs-nav {
        flex-direction: row;
        gap: 10px;
        border-bottom: none;
        width: 100%;
        align-items: stretch;
    }

    .rfr-tab-button {
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-right: 0;
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.03);
        display: flex;
        flex-direction: column;
        justify-content: start;
        min-height: 100px;
    }

    .rfr-tab-button.active {
        background: rgba(250, 127, 49, 0.1);
        border-color: rgba(250, 127, 49, 0.5);
        padding: 15px 20px;
    }

    .rfr-tab-part-title {
        padding-bottom: 10px;
    }

    .rfr-tab-rule-count {
        margin-top: auto;
    }

    .rule-header {
        padding: 18px 20px;
    }

    .rule-description-container {
        margin-left: 0;
        padding: 0 20px 20px 20px;
    }
}

/* Mobile (568px and below) */
@media (max-width: 568px) {
    .hero-rfr {
        padding: 80px 15px 40px 15px;
        min-height: 45vh;
    }

    .intro-testimonials-section {
        padding: 40px 15px 60px 15px;
    }

    .rfr-intro-container {
        margin-bottom: 60px;
    }

    .rfr-intro-image {
        min-height: 300px;
        margin: 0 auto;
    }

    .rfr-testimonials-header {
        margin-bottom: 40px;
    }

    .rfr-testimonial-card {
        padding: 25px;
    }

    .rfr-author-image {
        width: 50px;
        height: 50px;
    }

    .rfr-quote-icon {
        width: 35px;
        height: 35px;
    }

    .rules-sections {
        padding: 20px 15px;
    }

    .rfr-tab-button {
        padding: 15px 20px;
    }

    .rfr-rule-header {
        padding: 15px;
        position: relative;
        padding-right: 45px;
    }

    .rule-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rule-toggle {
        position: absolute;
        right: 15px;
        top: 30px;
        transform: translateY(-50%);
    }

    .rule-accordion.active .rule-toggle {
        transform: translateY(-50%) rotate(180deg);
    }

    .rule-description-container {
        padding: 0 15px 20px 15px;
    }

    .rules-cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Scaling and Getting into retail page */


/* Hero Section with Tech Background */
.retailhero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0e27;
    overflow: hidden;
    padding: 120px 20px 80px 20px;
    z-index: 1;
}

.retailhero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

/*
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        */
@keyframes rotateHex {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes hexPulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(40px);
    }
}


.hero-content {
    color: white;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Content Section */
.content-section {
    background: #f8f9fa;
    padding: 100px 20px;
    position: relative;
}

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

.content-text {
    position: relative;
}

.content-text h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    color: #0a0e27;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.content-text p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: #1a1f3a;
    margin-bottom: 20px;
}

.content-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .retailhero {
        min-height: 40vh;
        padding: 100px 20px 60px 20px;
    }

    .content-section {
        padding: 80px 20px;
    }

    .content-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 568px) {
    .retailhero {
        padding: 80px 15px 40px 15px;
    }

    .content-section {
        padding: 20px 15px;
    }

    .content-container {
        gap: 40px;
    }

    .content-image {
        display: none;
    }
}

/* Retail Acceleration System Intro Section */
.acceleration-system-intro {
    background: #0a0e27;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.tabs-container h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
}

.intro-text {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.brand-list {
    list-style: none;
    padding-left: 25px;
    margin-bottom: 35px;
}

.brand-list li {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.brand-list li::before {
    content: '•';
    color: #FA7F31;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.transformation-text {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 10px;
}

.system-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-align: center;
    margin-top: 40px;
}

.system-success {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-align: center;
}

/* Tabs Section */
.tabs-section {
    background: #0a0e27;
    padding: 100px 20px 100px 20px;
}

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

/* Tabs System - Desktop Layout */
.tabs-system {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mobile Accordion Item Container */
.tab-accordion-item {
    display: contents;
    /* On desktop, behaves as if it doesn't exist */
}

/* Hide mobile panels on desktop */
.tab-accordion-item .tab-panel {
    display: none;
}

.tab-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid transparent;
    padding: 20px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gothic A1', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #FA7F31;
}

.tab-button.active {
    background: rgba(250, 127, 49, 0.1);
    border-left-color: #FA7F31;
    border-color: rgba(250, 127, 49, 0.3);
}

.step-number {
    font-size: 12px;
    font-weight: 700;
    color: #FA7F31;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.step-title {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

.tabs-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h4 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

.tab-panel p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.2vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}

.tab-panel ul {
    list-style: none;
    padding-left: 25px;
    margin: 15px 0 20px 0;
}

.tab-panel ul li {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.2vw, 17px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.tab-panel ul li::before {
    content: '•';
    color: #FA7F31;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.outcome {
    background: rgba(250, 127, 49, 0.1);
    border-left: 3px solid #FA7F31;
    padding: 20px;
    margin-top: 25px;
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(15px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* MOBILE ACCORDION LAYOUT */
@media (max-width: 768px) {
    .acceleration-system-intro {
        padding: 60px 20px;
    }

    .tabs-section {
        padding: 60px 20px;
    }

    /* Switch to accordion layout on mobile */
    .tabs-system {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* Hide the desktop tabs-content container */
    .tabs-content {
        display: none !important;
    }

    /* Show accordion items as block elements */
    .tab-accordion-item {
        display: block;
        margin-bottom: 12px;
    }

    /* Make buttons full width in accordion */
    .tabs-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .tab-accordion-item {
        width: 100%;
    }

    .tab-button {
        width: 100%;
        min-width: auto;
        border-radius: 8px 8px 0 0;
        margin-bottom: 0;
    }

    .tab-button.active {
        border-radius: 8px 8px 0 0;
    }

    /* Show panel directly below its button on mobile */
    .tab-accordion-item .tab-panel {
        display: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        border-radius: 0 0 8px 8px;
        padding: 25px 20px;
        margin-bottom: 0;
        animation: slideDown 0.3s ease-out;
    }

    .tab-accordion-item .tab-panel.active {
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

        to {
            opacity: 1;
            max-height: 2000px;
            padding-top: 25px;
            padding-bottom: 25px;
        }
    }

    .tab-panel {
        min-height: auto;
    }
}

/* Why This System Works Section */
.why-it-works-section {
    background: #ffffff;
    padding: 100px 20px;
    position: relative;
    background-image:
        linear-gradient(rgba(200, 200, 200, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 200, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

.why-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-it-works-text {
    position: relative;
}

.why-it-works-text h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    color: #0a0e27;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.why-it-works-text p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: #1a1f3a;
    margin-bottom: 10px;
}

.failure-list,
.success-list {
    list-style: none;
    padding-left: 25px;
    margin: 10px 0 30px 0px;
}

.failure-list li,
.success-list li {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: #1a1f3a;
    line-height: 1.7;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.failure-list li::before {
    content: '•';
    color: #FA7F31;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.success-list li::before {
    content: '•';
    color: #FA7F31;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.why-it-works-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.why-it-works-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .why-it-works-section {
        padding: 80px 20px;
    }

    .why-it-works-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-it-works-image {
        min-height: 300px;
        order: -1;
    }
}

@media (max-width: 568px) {
    .why-it-works-section {
        padding: 60px 15px;
    }

    .why-it-works-container {
        gap: 40px;
    }
}

/* Why This System Works - CTA Section */
.why-it-works-cta-wrapper {
    max-width: 900px;
    margin: 80px auto 0 auto;
    text-align: center;
    padding: 0 20px;
}

.why-it-works-subheading {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.why-it-works-cta {
    display: inline-block;
    background: #FA7F31;
    color: #ffffff;
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 600;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.why-it-works-cta:hover {
    transform: translateY(-2px);
    background: #e66d1f;
    box-shadow: 0 4px 16px rgba(250, 127, 49, 0.3);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .why-it-works-cta-wrapper {
        margin-top: 60px;
    }
}

@media (max-width: 568px) {
    .why-it-works-cta-wrapper {
        margin-top: 40px;
    }

    .why-it-works-cta {
        padding: 14px 32px;
        font-size: 16px;
    }
}






/* Success Stories Tabs Section */
.success-stories-tabs-section {
    background: #0a0e27;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    /*background-image: 
        linear-gradient(rgba(200, 200, 200, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 200, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;*/
}

.success-stories-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.success-stories-tabs-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.success-stories-tabs-header h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.success-stories-tabs-header p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: #ffffff;
    line-height: 1.7;
}

/* Tabs System */
.success-stories-tabs-system {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-top: 60px;
}

.success-stories-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-story-tab-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gothic A1', sans-serif;
    display: flex;
    align-items: center;
    gap: 16px;
    /*border-radius: 12px;*/
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.success-story-tab-button:hover {
    background: background: rgba(255, 255, 255, 0.08);
    border-color: #FA7F31;
    transform: scale(1.02);
}

.success-story-tab-button.active {
    background: linear-gradient(135deg, rgba(250, 127, 49, 0.1) 0%, rgba(255, 149, 87, 0.1) 100%);
    border-color: rgba(250, 127, 49, 0.3);

}

.success-story-tab-button.active,
.success-story-tab-button.active .brand-tagline {
    color: #ffffff;
}


.success-story-tab-button.active .tab-icon {
    color: #ffffff;
}

.tab-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #FA7F31;
    transition: color 0.3s ease;
}

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

.brand-name {
    font-size: clamp(16px, 1.5vw, 22px);
    font-weight: 700;
    color: #FA7F31;
    line-height: 1.3;
}

.brand-tagline {
    font-size: clamp(12px, 1vw, 13px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    opacity: 0.75;
}

.success-stories-tabs-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 4px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/*
.story-header-bar {
    height: 6px;
    background: linear-gradient(90deg, #FA7F31 0%, #ff9557 100%);
}
*/
.success-story-tab-panel {
    display: none;
    animation: fadeInStory 0.5s ease-in;
}

.success-story-tab-panel.active {
    display: block;
}

@keyframes fadeInStory {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.story-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: start;
    padding: 50px;
}

.story-details h4 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.3;
}

.achievement-brand-name {
    font-weight: 700;
    color: #FA7F31;
    line-height: 1.3;
}

.story-achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(250, 127, 49, 0.1);
    padding: 16px;
    /*border-radius: 6px;*/
    transition: background 0.3s ease;
    border: 1px solid rgba(250, 127, 49, 0.3);
}

/*
.achievement-item:hover {
    background: #fff5ef;
    border:1px solid #ff9a5d;
}
*/
.achievement-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: green;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-item p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(15px, 1.2vw, 17px);
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.story-product-image {
    position: sticky;
    top: 20px;
}

.image-frame {
    width: 300px;
    height: 300px;
    overflow: hidden;
    /*  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    /*border: 1px solid #cccccc; */
    padding: 10px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .success-stories-tabs-section {
        padding: 80px 20px;
    }

    .success-stories-tabs-system {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-stories-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
    }

    .success-story-tab-button {
        min-width: 220px;
        padding: 16px;
    }

    .story-content-layout {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 35px 25px;
    }

    .story-product-image {
        position: relative;
        top: 0;
    }

    .image-frame {
        width: 100%;
        height: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 568px) {
    .success-stories-tabs-section {
        padding: 60px 15px;
    }

    .success-stories-tabs-header {
        margin-bottom: 40px;
    }

    .story-content-layout {
        padding: 25px 20px;
    }

    .image-frame {
        height: 240px;
    }

    .achievement-item {
        padding: 14px;
    }
}

/* Company Statement Section
.company-statement-section {
    background: #0a0e27;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
*/

.statement-bg {
    width: 100%;
    height: 100%;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.float-shape {
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.glow-orb {
    animation: pulseGlow 6s ease-in-out infinite;
}


/* Podcast Section */
.podcast-section {
    background: #0a0e27;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.podcast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.podcast-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(250, 127, 49, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(250, 127, 49, 0.05) 0%, transparent 40%);
    z-index: 0;
}

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

.podcast-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side: Podcast Info */
.podcast-info {
    position: sticky;
    top: 100px;
}

.podcast-logo {
    width: 100%;
    max-width: 250px;
    /*margin-bottom: 30px;*/
    margin: 0 auto 30px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

.podcast-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.podcast-info h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 3.5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.podcast-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.podcast-cta {
    display: block;
    align-items: center;
    width: 85%;
    margin: 0 auto;
    text-align: center;
    gap: 10px;
    background: #FA7F31;
    color: #ffffff;
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    /*border-radius: 8px;*/
    text-decoration: none;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 16px rgba(250, 127, 49, 0.3);*/
}

.podcast-cta:hover {
    transform: translateY(-2px);
}

.podcast-cta svg {
    transition: transform 0.3s ease;
}

.podcast-cta:hover svg {
    transform: translateX(4px);
}

/* Right Side: Episodes */
.podcast-episodes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto 0 auto 0;
}

.episode-card {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.episode-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 127, 49, 0.5);
    transform: translateX(8px);
    /* box-shadow: 0 4px 20px rgba(250, 127, 49, 0.2);*/
}

.episode-thumbnail {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 127, 49, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay svg {
    width: 20px;
    height: 20px;
}

.episode-card:hover .play-overlay {
    opacity: 1;
}

.episode-info {
    flex: 1;
    min-width: 0;
}

.episode-meta {
    font-family: 'Gothic A1', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #FA7F31;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.episode-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-listen {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.episode-card:hover .episode-listen {
    background: #FA7F31;
    color: #ffffff;
}

.episode-listen svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.episode-card:hover .episode-listen svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .podcast-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .podcast-info {
        position: relative;
        top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .podcast-logo {
        max-width: 300px;
    }
}

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

    .episode-card {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }

    .episode-thumbnail {
        width: 50px;
        height: 50px;
    }

    .episode-listen {
        grid-column: 2;
        justify-self: start;
        margin-top: 8px;
        font-size: 11px;
        padding: 5px 10px;
    }

    .play-overlay svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 568px) {
    .podcast-section {
        padding: 60px 15px;
    }

    .podcast-content {
        gap: 40px;
    }

    .episode-card {
        grid-template-columns: 45px 1fr;
        gap: 8px;
        padding: 8px;
    }

    .episode-thumbnail {
        width: 45px;
        height: 45px;
    }

    .podcast-logo {
        max-width: 250px;
    }
}


/* Whitepapers Section */
.whitepapers-section {
    background: #0a0e27;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.whitepapers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.whitepapers-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.whitepapers-header h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.whitepapers-header p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Carousel */
.whitepapers-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

.whitepapers-carousel {
    flex: 1;
    overflow: hidden;
    /* border-radius: 12px;*/
}

.whitepapers-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.whitepaper-card {
    min-width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.whitepaper-card:hover {
    /*transform: translateY(-8px);*/
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 127, 49, 0.5);
    /*box-shadow: 0 8px 32px rgba(250, 127, 49, 0.3);*/
}

.whitepaper-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

.whitepaper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.whitepaper-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.whitepaper-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.whitepaper-synopsis {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(14px, 1.1vw, 15px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.whitepaper-link {
    margin-top: auto;
    display: block;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FA7F31 0%, #ff9557 100%);
    color: #ffffff;
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    /*border-radius: 6px;*/
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.whitepaper-link:hover {
    transform: translateY(-2px);
    /*box-shadow: 0 4px 16px rgba(250, 127, 49, 0.4);*/
}

.whitepaper-link svg {
    transition: transform 0.3s ease;
    display: none;
}

.whitepaper-link:hover svg {
    transform: translateY(2px);
}

/* Carousel Navigation */
.carousel-nav {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: #FA7F31;
    border-color: #FA7F31;
    transform: scale(1.1);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #FA7F31;
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .whitepaper-card {
        min-width: calc(50% - 15px);
    }
}

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

    .whitepaper-card {
        min-width: 100%;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .whitepaper-image {
        height: 180px;
    }

    .whitepaper-content {
        padding: 20px;
    }
}

@media (max-width: 568px) {
    .whitepapers-section {
        padding: 60px 15px;
    }

    .whitepapers-header {
        margin-bottom: 40px;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .whitepaper-image {
        height: 160px;
    }
}

/* Privacy Policy */

/*.privacy-content Section */
.privacy-content-section {
    background: #ffffff;
    padding: 150px 20px 80px 20px;
    min-height: 100vh;
}

.privacy-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content-container h1 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #002E6D;
    margin: 0 0 10px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.last-updated {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0 0 40px 0;
    font-style: italic;
}

.privacy-content-container h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #002E6D;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.privacy-content-container h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    color: #002E6D;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.privacy-content-container p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: #1a1f3a;
    margin: 0 0 20px 0;
}

.privacy-content-container strong {
    font-weight: 700;
    color: #002E6D;
}

.privacy-content-container a {
    color: #FA7F31;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(250, 127, 49, 0.3);
}

.privacy-content-container a:hover {
    color: #e06622;
    border-bottom-color: #e06622;
}

.privacy-content-container ul {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.75;
    color: #1a1f3a;
    margin: 0 0 20px 0;
    padding-left: 30px;
}

.privacy-content-container ul li {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .privacy-content-section {
        padding: 140px 20px 60px 20px;
    }
}

@media (max-width: 568px) {
    .privacy-content-section {
        padding: 120px 15px 40px 15px;
    }
}

/* ===================================
   NAVIGATION STYLES WITH CSS HAMBURGER TO X ANIMATION
   =================================== */

/* Nav styles */
.nav__wrapper .nav {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(22, 22, 22, 0.9);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px 50px;
    transition: border-color .2s, transform .2s;
    display: flex !important;
    position: relative;
    z-index: 1000 !important;
}

.nav__wrapper .nav .nav__link-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    color: #fff;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex !important;
}

.nav__wrapper .nav .nav__link {
    color: #fff;
    margin-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: text-shadow .2s, color .2s;
    display: block;
}

.nav__wrapper .nav .nav__link:hover {
    color: #FA7F31;
}

.nav__wrapper .nav a.nav__link.contactbutton {
    text-align: center;
    padding: 10px 25px 10px 25px;
    background-color: #FA7F31;
    transition: transform 0.3s ease-in-out;
}

.nav__wrapper .nav a.nav__link.contactbutton:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.nav__wrapper {
    z-index: 9999 !important;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.nav__wrapper .nav .nav__logo {
    width: 275px;
}

/* CSS-Based Hamburger Icon */
.nav__wrapper .nav .nav__burger {
    width: 30px;
    height: 22px;
    cursor: pointer;
    display: block !important;
    visibility: visible !important;
    position: relative;
}

.nav__wrapper .nav .burger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__wrapper .nav .burger-line-top {
    top: 0;
}

.nav__wrapper .nav .burger-line-bottom {
    bottom: 0;
}

/* When menu is OPEN - transform to X */
.nav__wrapper .nav .w-dropdown.w--open .burger-line-top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav__wrapper .nav .w-dropdown.w--open .burger-line-bottom {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav__wrapper .nav .nav__mobile-dropdown {
    display: none;
    position: relative;
}

.nav__wrapper .nav .nav__toggle {
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

.nav__wrapper .nav .nav__mobile-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10000;
}

.nav__wrapper .nav .nav__mobile-link {
    display: block;
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__wrapper .nav .nav__mobile-link:last-child {
    border-bottom: none;
}

.nav__wrapper .nav .nav__mobile-link:hover {
    background: rgba(250, 127, 49, 0.1);
    color: #FA7F31;
}

/* Show mobile menu when open */
.nav__wrapper .nav .w-dropdown.w--open .nav__mobile-list {
    display: block !important;
}

/* CRITICAL: Mobile menu visibility - STRONGER RULES WITH HIGHER SPECIFICITY */
@media screen and (max-width: 768px) {
    .nav__wrapper .nav .nav__link-wrapper {
        display: none !important;
    }

    .nav__wrapper .nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .nav__wrapper .nav>* {
        flex-shrink: 0 !important;
    }

    .nav__wrapper .nav .nav__mobile-dropdown {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 2 !important;
        margin-left: auto !important;
        position: relative !important;
    }

    .nav__wrapper .nav .nav__burger {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav__wrapper .nav .nav__toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav__wrapper .nav .nav__logo {
        width: 200px;
        flex-shrink: 0 !important;
        order: 1 !important;
    }
}

@media screen and (max-width: 480px) {
    .nav__wrapper .nav .nav__logo {
        width: 180px;
    }

    .nav__wrapper .nav {
        padding: 12px 15px;
    }
}

/* ===================================
   FOOTER STYLES - Scientific/Tech Theme
   =================================== */

/* Footer Base */
.site-footer {
    position: relative;
    background: #0a0e27;
    padding: 80px 20px 40px 20px;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

/* Footer Background SVG */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Node Animations */
@keyframes footerNodePulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

@keyframes footerNodePulseDelayed {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.4);
    }
}

@keyframes footerGlow {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes footerHexRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-node-pulse {
    animation: footerNodePulse 3s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.footer-node-pulse-delayed {
    animation: footerNodePulseDelayed 3s ease-in-out infinite 1.5s;
    transform-origin: center;
    transform-box: fill-box;
}

.footer-node-glow {
    animation: footerGlow 4s ease-in-out infinite;
}

.footer-hex-rotate {
    animation: footerHexRotate 30s linear infinite;
    transform-origin: center;
}

.footer-hex-rotate-reverse {
    animation: footerHexRotate 25s linear infinite reverse;
    transform-origin: center;
}

/* Footer Container */
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 10;
}

/* Footer Columns */
.footer-column {
    color: white;
}

.footer-column h4 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FA7F31;
    margin-bottom: 5px;
}

/* Address Column */
.footer-address {
    text-align: left;
}

.footer-address address {
    font-family: 'Gothic A1', sans-serif;
    font-size: 15px;
    font-style: normal;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

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

.footer-contact-info a {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #FA7F31;
}

/* Brand/Center Column */
.footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    max-width: 280px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    opacity: 0.95;
}

.footer-motto {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    color: #FA7F31;
    max-width: 400px;
    margin-bottom: 30px;
    border-top: 1px solid #FA7F31;
    padding-top: 0.5em;
}

.footer-copyright {
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 25px;

    width: 100%;
    max-width: 400px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
}


/* Links Column */
.footer-links {
    text-align: right;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: #FA7F31;
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #FA7F31;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Responsive Design - Tablet */
@media (max-width: 968px) {
    .site-footer {
        padding: 60px 20px 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 40px 30px;
    }

    /* Address - top left */
    .footer-address {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }

    /* Links - top right */
    .footer-links {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    /* Brand/Logo - bottom, spans both columns, centered */
    .footer-brand {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        max-width: 240px;
    }

    .footer-nav a::after {
        right: 0;
        left: auto;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 568px) {
    .site-footer {
        padding: 50px 15px 30px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px 20px;
    }

    /* Address - top left */
    .footer-address {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
    }

    /* Links - top right */
    .footer-links {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    /* Brand/Logo - bottom, spans both columns, centered */
    .footer-brand {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column h4 {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .footer-address address {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-contact-info a {
        font-size: 12px;
    }

    .footer-logo {
        max-width: 180px;
        /*margin-bottom: 15px;*/
    }

    .footer-motto {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 300px;
    }

    .footer-copyright {
        font-size: 11px;
        padding-top: 15px;
        border-top: none;
    }

    .footer-nav {
        gap: 10px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-nav a::after {
        right: 0;
        left: auto;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .footer-container {
        gap: 25px 15px;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer-address address {
        font-size: 12px;
    }

    .footer-nav a {
        font-size: 13px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-motto {
        font-size: 13px;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */

.scientific-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0e27;
    overflow: hidden;
    padding: 120px 20px 80px 20px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.contact-hero .animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

.contact-hero-content h1 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    padding-top: 0;
}

.hero-tagline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

/* Contact Main Section */
#contact-main {
    background: white;
    padding: 40px 20px;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

/* Company Info Column - Left Side */
.contact-info-column {
    top: 120px;
}

.company-details h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.info-intro {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: #1a1f3a;
    margin-bottom: 50px;
}

.contact-methods {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-methods li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 46, 109, 0.1);
    align-items: center;
}

.contact-methods li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 127, 49, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-methods li:hover .contact-icon {
    background: rgba(250, 127, 49, 0.2);
    transform: translateY(-2px);
}

.contact-detail {
    flex: 1;
}

.contact-detail .label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FA7F31;
    display: block;
    margin-bottom: 8px;
    display: none;
}

.contact-detail a {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 500;
    color: #002E6D;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-detail a:hover {
    color: #FA7F31;
}

.contact-detail address {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 400;
    color: #002E6D;
    font-style: normal;
    line-height: 1.6;
}

/* Contact Form Column - Right Side */
.contact-form-column {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

#contact-form-wrapper h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Form Styles */
#contact-form {
    width: 100%;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    border: 2px solid rgba(0, 46, 109, 0.15);
    border-radius: 8px;
    background: white;
    color: #1a1f3a;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 31, 58, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #FA7F31;
    box-shadow: 0 0 0 4px rgba(250, 127, 49, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23002E6D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

/* Honeypot - hidden spam prevention */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Submit Button */
.submit-btn {
    width: 80%;
    margin: 0 auto;
    display: block;
    font-family: 'Gothic A1', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FA7F31 0%, #ff6b1a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(250, 127, 49, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff6b1a 0%, #FA7F31 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 127, 49, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert Message */
.alert-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    margin-top: 20px;
}

.alert-message.show {
    display: flex;
}

.alert-message svg {
    flex-shrink: 0;
}

.alert-message p {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #c0392b;
    margin: 0;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 30px;
}

.success-message svg {
    margin-bottom: 30px;
}

.success-message h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #002E6D;
    margin-bottom: 15px;
}

.success-message p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    color: #1a1f3a;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE
   ============================================ */

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

    .contact-info-column {
        position: static;
    }

    .contact-form-column {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding: 100px 20px 60px 20px;
    }

    #contact-main {
        padding: 60px 20px;
    }

    .contact-container {
        gap: 50px;
    }

    .contact-form-column {
        padding: 35px 25px;
    }

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

    .contact-methods li {
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 15px 50px 15px;
    }

    #contact-main {
        padding: 50px 15px;
    }

    .contact-form-column {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ============================================
   RADIO BUTTON STYLES - ADD TO YOUR CONTACT.CSS
   ============================================ */

.inquiry-label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #002E6D;
    display: block;
    margin-bottom: 15px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-group.error {
    border: 2px solid #e74c3c;
    padding: 15px;
    border-radius: 8px;
    background: rgba(231, 76, 60, 0.05);
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid rgba(0, 46, 109, 0.15);
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #FA7F31;
    background: rgba(250, 127, 49, 0.05);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 12px;
    cursor: pointer;
    accent-color: #FA7F31;
}

.radio-option span {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1f3a;
    flex: 1;
}

.radio-option input[type="radio"]:checked+span {
    font-weight: 600;
    color: #002E6D;
}

#other-reason-container input {
    width: 100%;
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 16px 20px;
    border: 2px solid rgba(0, 46, 109, 0.15);
    border-radius: 8px;
    background: white;
    color: #1a1f3a;
    transition: all 0.3s ease;
    outline: none;
}

#other-reason-container input:focus {
    border-color: #FA7F31;
    box-shadow: 0 0 0 4px rgba(250, 127, 49, 0.1);
}

#other-reason-container input.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

/* Mobile responsive for radio buttons */
@media (max-width: 768px) {
    .radio-option {
        padding: 10px 14px;
    }

    .radio-option span {
        font-size: 15px;
    }
}

/* Case Studies */

/* Main Hero Section */
main.alt1 {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    padding: 100px 20px 80px 20px;
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

main.alt1 .container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Text Content */
.hero-left {
    margin: 0px auto;
}

/* Right Column - Image */
.hero-right {
    /* This contains the floating image */
}

/* Prehead Label */
.prehead {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FA7F31;
    margin-bottom: 15px;
}

/* Big Title */
h1.big {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 30px 0;
    text-align: left;
    padding-top: 10px;
}

/* Media Tags */
ul.tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

ul.tags li {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

ul.tags li:first-child {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    margin-right: 8px;
}

ul.tags li a {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(250, 127, 49, 0.15);
    border: 1px solid rgba(250, 127, 49, 0.3);
    border-radius: 20px;
    color: #FA7F31;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

ul.tags li a:hover {
    background: rgba(250, 127, 49, 0.25);
    border-color: rgba(250, 127, 49, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 127, 49, 0.3);
}

/* Floating Hero Image - Right Side */
.floating-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    transform: translateY(140px);
}

.floating-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Sections */
.hero {
    background: white;
    padding: 100px 20px;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Article Content */
article {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0px;
}

article h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #002E6D;
    margin: 0 0 25px 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

article p {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: #1a1f3a;
    margin: 0 0 25px 0;
}

/* Video Section */
.video-row {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Single video in row */
.video-row:has(.video:only-child) {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video {
    margin: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: #000;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Audio Players (for Nauzene) */
article audio {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

article audio:first-of-type {
    margin-top: 30px;
}

article audio:last-of-type {
    margin-bottom: 30px;
}

/* Horizontal Rule */
article hr {
    border: none;
    border-top: 2px solid rgba(0, 46, 109, 0.15);
    margin: 60px 0;
}

/* Results Grid */
.cs-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 50px 0 0 0;
}

.cs-result {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    border: 2px solid rgba(250, 127, 49, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cs-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FA7F31 0%, #ff9a5c 100%);
}

.cs-result:hover {
    border-color: rgba(250, 127, 49, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(250, 127, 49, 0.25);
}

/* Pre-description (for Nauzene) */
.cs-result .pre-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FA7F31;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 10px 0;
}

.cs-result .description {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 15px 0;
    letter-spacing: 0.02em;
}

/* Figure comes after description for Nauzene layout */
.cs-result .pre-description+.description+.figure {
    margin-top: 10px;
}

.cs-result .figure {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: #FA7F31;
    line-height: 1;
    margin: 0 0 15px 0;
    letter-spacing: -0.02em;
}

/* Standard layout (figure first) */
.cs-result .figure+.description {
    margin-top: 0;
}

/* Additional Content Elements */
article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: block;
}

article ul:not(.tags),
article ol {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.75;
    color: #1a1f3a;
    margin: 0 0 25px 0;
    padding-left: 30px;
}

article ul:not(.tags) li,
article ol li {
    margin-bottom: 12px;
}

article blockquote {
    background: rgba(250, 127, 49, 0.05);
    border-left: 4px solid #FA7F31;
    padding: 30px 35px;
    margin: 40px 0;
    font-style: italic;
    border-radius: 4px;
}

article blockquote p {
    font-size: clamp(18px, 1.8vw, 24px);
    color: #002E6D;
    font-weight: 500;
    margin-bottom: 0;
}

article strong,
article b {
    color: #002E6D;
    font-weight: 700;
}

article a:not(.tags a) {
    color: #FA7F31;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(250, 127, 49, 0.3);
}

article a:not(.tags a):hover {
    color: #e06622;
    border-bottom-color: #e06622;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.image-grid img {
    margin: 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

/* Stats Bar (alternative to results grid) */
.stats-bar {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 50px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    color: #FA7F31;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .label {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    main.alt1 {
        padding: 60px 20px;
        min-height: auto;
    }

    main.alt1 .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    section {
        padding: 80px 20px;
    }

    ul.tags {
        gap: 8px;
    }

    .cs-results {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .cs-result {
        padding: 40px 25px;
    }

    .video-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-bar {
        flex-direction: column;
        padding: 30px;
    }
}

@media (max-width: 568px) {
    main.alt1 {
        padding: 40px 15px;
    }

    section {
        padding: 60px 15px;
    }

    ul.tags {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        justify-content: flex-start;
    }

    ul.tags li:first-child {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }

    /*ul.tags li:not(:first-child) {
        flex: 0 0 calc(50% - 5px);
    }*/

    .cs-result {
        padding: 35px 20px;
    }

    article blockquote {
        padding: 20px 25px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    article audio {
        width: 100%;
    }

    article hr {
        margin: 40px 0;
    }

    .hero-left {
        margin: 45px auto 20px auto;
        width: 100%;
    }

    .floating-image {
        transform: none;
        margin: 0 auto;
    }
}

/* Print Styles */
@media print {
    main.alt1 {
        background: white !important;
        padding: 20px 0;
    }

    main.alt1 .container {
        grid-template-columns: 1fr;
    }

    h1.big,
    .prehead,
    ul.tags li a,
    article h2 {
        color: #000 !important;
    }

    ul.tags li a {
        border: 1px solid #000;
        background: transparent;
    }

    .cs-result {
        background: white;
        border: 2px solid #000;
        break-inside: avoid;
    }

    .cs-result .figure,
    .cs-result .description,
    .cs-result .pre-description {
        color: #000;
    }

    .video-wrapper,
    audio {
        display: none;
    }
}






/* More Case Studies Section - Matching Works/Case-Studies Grid Style */
.more-casestudies-section {
    background: #f8f9fa;
    padding: 100px 20px;
}

.more-casestudies-container {
    max-width: 1400px;
    margin: 0 auto;
}

.more-casestudies-headline {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #002E6D;
    margin: 0 0 60px 0;
    letter-spacing: -0.01em;
}

.more-casestudies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.more-casestudy-card {
    background: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.more-casestudy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.more-casestudy-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #e9ecef;
}

.more-casestudy-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.more-casestudy-card:hover .more-casestudy-image::before {
    opacity: 1;
}

.more-casestudy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.more-casestudy-card:hover .more-casestudy-image img {
    transform: scale(1.08);
}

.more-casestudy-content {
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: white;
    transition: all 0.3s ease;
}

.more-casestudy-content h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.more-casestudy-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .more-casestudies-section {
        padding: 80px 20px;
    }

    .more-casestudies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .more-casestudy-image {
        height: 180px;
    }

    .more-casestudy-content {
        padding: 16px;
    }
}

@media (max-width: 568px) {
    .more-casestudies-section {
        padding: 60px 15px;
    }

    .more-casestudies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .more-casestudy-image {
        height: 200px;
    }

    .more-casestudy-content {
        padding: 15px;
    }
}

/* About Us */



/* Scientific Grid Background SVG */
.about-scientific-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0e27;
    overflow: hidden;
    padding: 120px 20px 80px 20px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

/*
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }*/

@keyframes rotateHex {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes hexPulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes slideRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(40px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-hero-content {
    color: white;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.about-hero-content h2 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.about-hero-content .subhead {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background: #0a0e27;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.story-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

/* Story Intro with Image */
.story-intro {
    max-width: 1200px;
    margin: 0 auto 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text {
    color: white;
}

.about-intro-text p {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro-image {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

    .about-intro-image {
        width: 75%;
        margin: 0 auto;
        /* Centers the image */
    }
}

@media (max-width: 568px) {
    .intro-section {
        padding: 60px 15px;
    }

    .about-intro-image {
        width: 85%;
        /* Slightly larger on very small screens */
        min-height: 300px;
        margin: 0 auto;
        /* Centers the image */
    }
}



/* Timeline Flow - 3 Column Layout with Arrows */
.timeline-flow {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.story-box {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(250, 127, 49, 0.3);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-box:hover {
    border-color: rgba(250, 127, 49, 0.6);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    /*box-shadow: 0 20px 40px rgba(250, 127, 49, 0.2);*/
}

.story-box h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: #FA7F31;
    margin-bottom: 20px;
    line-height: 1.2;
}

.story-box p {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.story-box p:last-child {
    margin-bottom: 0;
}

/* Arrow Connectors */
.arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.arrow-connector svg {
    width: 60px;
    height: 60px;
    stroke: #FA7F31;
    fill: #FA7F31;
    /*filter: drop-shadow(0 0 10px rgba(250, 127, 49, 0.4));*/
    animation: pulseArrow 2s ease-in-out infinite;
}

/*   @keyframes pulseArrow {
            0%, 100% {
                opacity: 0.7;
                transform: translateX(0);
            }
            50% {
                opacity: 1;
                transform: translateX(5px);
            }
        }
        */

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(250, 127, 49, 0.2) 0%, rgba(12, 219, 243, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.placeholder-image svg {
    width: 100px;
    height: 100px;
    opacity: 0.4;
    stroke: white;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    /*  animation: shimmer 3s infinite; */
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}

/* Mobile Connector Lines */
.mobile-connector {
    display: none;
}

/* Manifesto Section */
.manifesto-section {
    position: relative;
    background: #0a0e27;
    padding: 120px 20px;
    overflow: hidden;
}

.manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.manifesto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.manifesto-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: white;
}

.manifesto-container h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.manifesto-container .subhead {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    color: #FA7F31;
    margin-bottom: 50px;
    text-align: center;
}

.manifesto-content {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: normal;
    color: rgba(255, 255, 255, 0.9);
}

.manifesto-content p {
    margin-bottom: 30px;
}

.manifesto-highlight {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    text-align: center;
    margin: 60px 0;
    color: #FA7F31;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Model & Outcome Section */
.model-section {
    background: #f8f9fa;
    padding: 120px 20px;
    position: relative;
}

.model-container {
    max-width: 1200px;
    margin: 0 auto;
}

.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.model-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(10, 14, 39, 0.08);
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #FA7F31 0%, #ff6d00 100%);
}

.model-card h3 {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    color: #0a0e27;
    margin-bottom: 25px;
}

.model-card p {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.8;
    color: #1a1f3a;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-container p {
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #FA7F31;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ff6d00;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(250, 127, 49, 0.3);
}

/* Scroll Animation */
[data-scroll-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .intro-image {
        height: 350px;
    }

    /* Mobile: Stack columns vertically */
    .timeline-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .story-box {
        margin-bottom: 0;
    }

    /* Hide desktop arrows */
    .arrow-connector {
        display: none !important;
    }

    /* Show mobile connectors */
    .mobile-connector {
        display: block;
        width: 2px;
        height: 40px;
        background: #FA7F31;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .about-hero {
        min-height: 45vh;
        padding: 120px 20px 60px 20px;
    }

    .story-section,
    .model-section {
        padding: 80px 20px;
    }

    .manifesto-section {
        padding: 80px 20px;
    }

    .about-intro-image {
        height: 280px;
    }

    .story-box {
        padding: 30px;
    }

    .mobile-connector {
        height: 30px;
    }

    .model-card {
        padding: 35px;
    }

    .cta-section {
        padding: 80px 20px;
    }
}



.company-statement-section {
    position: relative;
    background: #0a0e27;
    padding: 120px 20px;
    overflow: hidden;
}

.company-statement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.statement-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.company-statement-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    /* Changed from z-index: 1 */
}

.statement-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-wrapper {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.company-logo {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.statement-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
}

.statement-text p {
    font-family: 'Gothic A1', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.statement-intro {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
}

.statement-mission {
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

.mission-attribution {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.5vw, 24px) !important;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: right;
    margin: 0;
    padding-right: 20px;
}

.statement-expertise {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 400;
    line-height: 1.6;
}

.highlight-text {
    color: #FA7F31;
    font-weight: 700;
    position: relative;
}

.highlight-large {
    color: #FA7F31;
    font-weight: 700;
    font-size: 1.1em;
    display: inline-block;
    position: relative;
}

.highlight-number {
    color: #00e5ff;
    font-weight: 700;
    font-size: 1.15em;
}

.highlight-italic {
    color: #ffffff;
    font-style: italic;
    font-weight: 600;
}

.statement-cta {
    margin-top: 30px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FA7F31;
    color: #ffffff;
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: 700;
    padding: 18px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-3px);
}

.contact-button svg {
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 968px) {
    .company-statement-section {
        padding: 100px 20px;
    }

    .statement-content {
        gap: 40px;
    }

    .statement-text {
        gap: 30px;
    }

    .logo-wrapper {
        max-width: 300px;
    }

    .mission-attribution {
        padding-right: 10px;
    }
}

@media (max-width: 568px) {
    .company-statement-section {
        padding: 80px 15px;
    }

    .statement-content {
        gap: 35px;
    }

    .statement-text {
        gap: 25px;
    }

    .logo-wrapper {
        max-width: 250px;
        margin-bottom: 10px;
    }

    .contact-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .quote-wrapper {
        gap: 10px;
    }

    .mission-attribution {
        padding-right: 5px;
    }
}

/* Insights */

/*.insight-hero Section */
.insight-hero {
    position: relative;
    width: 100%;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a0e27;
    overflow: hidden;
    padding: 150px 20px 80px 20px;
}

.insight-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1229 100%);
    z-index: 0;
}

.insight-hero-content {
    color: white;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.insight-hero-content h1 {
    font-family: 'Gothic A1', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    padding: 20px 5px;
    margin: 0px 0px;
}

/* Blog Content Section */
.blog-content-section {
    background: #ffffff;
    padding: 80px 20px;
}

.blog-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Content Styling */
.blog-content {
    font-family: 'Gothic A1', sans-serif;
}

.blog-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #002E6D;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: #002E6D;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.blog-content p {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: #1a1f3a;
    margin: 0 0 20px 0;
}

.blog-content strong {
    font-weight: 700;
    color: #002E6D;
}

.blog-content .headlinecontainer {
    margin: 40px 0;
    padding: 30px;
    background: #0d2e6c;
    text-align: center;
}

.blog-content .wpheadline {
    color: #ffffff;
    margin: 0;
}

.blog-content .large-container {
    padding: 40px 60px;
    margin: 40px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .insight-hero {
        padding: 140px 20px 60px 20px;
        min-height: 35vh;
    }

    .blog-content-section {
        padding: 60px 20px;
    }

    .blog-content .large-container {
        padding: 30px 40px;
    }
}

@media (max-width: 568px) {
    .insight-hero {
        padding: 120px 15px 40px 15px;
    }

    .blog-content-section {
        padding: 40px 15px;
    }

    .blog-content .large-container {
        padding: 20px;
    }
}