        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 50px;
            z-index: 100;
        }

        .nav-left {
            display: flex;
            gap: 30px;
        }

        .nav-left a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: -1px;
            text-transform: uppercase;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-right a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
        }

        .btn-start {
            background-color: #fff;
            color: #000;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .btn-start:hover {
            opacity: 0.9;
        }

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh; /* 16:9 at full height */
    height: 56.25vw; /* 16:9 at full width */
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8); /* dark overlay */
    z-index: -1;
}

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            
        }
        #flip {
        height: 90px;
        overflow: hidden;
        }

        #flip > div > div {
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-shadow: rgba(0, 0, 0, 1) 3px 3px 3px;
        font-size: 80px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: -2px;
        color: #BEBEBF;
        }
        #flip div:first-child {
          animation: show 10s linear infinite;
        }

        #flip div:nth-child(1) div {
            color: #40445A; /* првиот */
        }

        #flip div:nth-child(2) div {
            color: #7d4e82;
        }

        #flip div:nth-child(3) div {
            color: #7B4BCA;
        }

        #flip div:nth-child(4) div {
            color: #3b71b4
        }

        #flip div:nth-child(5) div {
            color:  #40445A;
        }

               @keyframes show {
            0%, 20%   { transform: translateY(0); }
            25%, 45%  { transform: translateY(-90px); }
            50%, 70%  { transform: translateY(-180px); }
            75%, 95%  { transform: translateY(-270px); }
            100%      { transform: translateY(-360px); } 
            }

        .hero h1 {
            font-size: 80px;
            font-weight: 900;
            line-height: 0.95;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: -2px;
            color: #BEBEBF;
            text-shadow: rgba(0, 0, 0, 1) 3px 3px 3px;
        }

        .hero p {
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            text-shadow: rgba(0, 0, 0, 1) 2px 2px 2px;
        }

        .btn-find {
            background-color: #7B4BCA;
            color: #fff;
            padding: 18px 45px;
            border-radius: 50px;
            text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s;
        }

        .btn-find:hover {
            transform: scale(1.05);
        }


        .trusted-section {
            background-color: #000;
            padding: 80px 0 40px;
            text-align: center;
        }

        .trusted-section h2 {
            font-size: 48px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        @media (max-width: 768px) {
            header {
                padding: 20px;
            }
            .nav-left, .nav-right a:not(.btn-start) {
                display: none;
            }
            .logo {
                position: static;
                transform: none;
            }
            .hero h1 {
                font-size: 45px;
                margin: 10px 0px;
            }
            
            #flip {
            height: 48px;
            overflow: hidden;
            }
             #flip > div > div {
                height: 45px;
                font-size: 45px;
            }
            .hero p {
                font-size: 15px;
                padding: 0px 11px;
            }
            #flip div:nth-child(3) div {
                height: 43px;
            }
            #flip div:nth-child(4) div {
            
            font-size: 40px;
            
        }
        
               @keyframes show {
                0%, 20%   { transform: translateY(0); }
                25%, 45%  { transform: translateY(-45px); }
                50%, 70%  { transform: translateY(-90px); }
                75%, 95%  { transform: translateY(-135px); }
                100%      { transform: translateY(-180px); } 
                }
        }

         .top-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            margin-bottom: 120px;
            text-align: left;
        }

        .trusted-by {
            flex: 1;
            min-width: 300px;
        }

        .trusted-by h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -1px;
            margin-bottom: 15px;
        }


        .stats-container {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .stats-header {
            background-color: #7B4BCA;
            color: #fff;
            text-shadow: rgba(0, 0, 0, 1) 1px 1px 1px;
            font-size: 12px;
            font-weight: 800;
            padding: 4px 12px;
            width: 100%;
            max-width: 450px;
            margin-bottom: 25px;
            text-align: left;
        }

        .stats-grid {
            display: flex;
            gap: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 400;
            margin-top: 5px;
            color: #ffffff;
        }

        /* Features Section Styles */
        .features-section {
            display: flex;
            justify-content: center;
            gap: 80px;
            margin-bottom: 120px;
            flex-wrap: wrap;
        }

        .feature-item {
            max-width: 250px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .feature-desc {
            font-size: 14px;
            color: #a0a0a0;
            line-height: 1.4;
        }

        /* Hero Text Section Styles */
        .hero-section h2 {
            font-size: 82px;
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -2px;
            text-transform: uppercase;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .top-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0px;
            }
            .stats-container {
                align-items: center;
            }
            .stats-header {
                text-align: center;
            }
            .hero-section h2 {
                font-size: 60px;
            }
        }

        @media (max-width: 600px) {
            .trusted-by h1 {
                font-size: 40px;
            }
            .stats-grid {
                gap: 20px;
            }
            .stat-number {
                font-size: 36px;
            }
            .hero-section h2 {
                font-size: 35px;
            }
            .features-section {
                gap: 40px;
            }
        }
    
        .why-colletive{
            margin: 0;
            background-color: #000000;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            text-align: center;
            padding: 60px 20px;
            box-sizing: border-box;
        }
          .top-label {
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 8px;
            text-transform: uppercase;
            color: #7B4BCA;
        }

        .main-title {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .separator {
            width: 1px;
            height: 40px;
            background-color: #333333;
            margin: 20px 0;
        }

        .content-section {
            margin: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .section-label {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 1px;
            margin-bottom: 15px;
            color: #7B4BCA;
        }

        .section-headline {
            font-size: 36px;
            font-weight: 900;
            line-height: 1.1;
            max-width: 400px;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        .cta-button {
            background-color: #7B4BCA;
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 10px;
            font-weight: 900;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: 40px;
            transition: transform 0.2s ease;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        @media (max-width: 600px) {
            .section-headline {
                font-size: 28px;
            }
            .main-title {
                font-size: 24px;
            }
            .why-colletive {
                padding: 0px 20px !important;
            }
            .main-title {
                margin-bottom: 0px;
            }
            .content-section {
                margin: 0;
            }
            .section-label {
                margin-bottom: 7px;
        }
    }
         .who-is-colletive {
            line-height: 1.6;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        .holder {
            display: flex;
            max-width: 1200px;
            width: 100%;
            background: #7B4BCA;
            overflow: hidden;
            flex-direction: row;
        }

        .image-section {
            flex: 1;
            min-height: 600px;
        }

        .image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .content-section-who {
            flex: 1;
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .badge {
            display: inline-block;
            background-color: #24242C;
            color: #fff;
            padding: 4px 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 24px;
            width: fit-content;
        }

        .content-section-who h1 {
            font-size: 45px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 40px;
            /* color: #1a1a1a; */
        }


.title{
  text-align:center;
  margin-bottom:50px;
}

.title h2{
  font-size:42px;
  font-weight:800;
  letter-spacing:-1px;
  text-transform:uppercase;
  color:#fff;
}

/* question card */

.question{
  background:#24242C;
  border-radius:12px;
  margin-bottom:18px;
  overflow:hidden;
  border:1px solid #24242C;
  transition:0.3s;
}

.question:hover{
  border-color:#7B4BCA;
}

/* title */

.question-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 24px;
  cursor:pointer;
}

.question-title p{
  font-size:18px;
  font-weight:600;
  color:#e6e6e6;
}

/* button */

.question-btn{
  font-size:22px;
  background:none;
  border:none;
  color:#7B4BCA;
  cursor:pointer;
  transition:0.3s;
}

.question-btn:hover{
  transform:rotate(90deg);
}

/* answer */

.question-answer{
  padding:0 24px 24px 24px;
  display:none;
}

.question-answer p{
  font-size:16px;
  line-height:1.6;
  color:#bdbdbd;
}

/* show answer */

.show-text .question-answer{
  display:block;
}

/* icons */

.minus-icon{
  display:none;
}

.show-text .minus-icon{
  display:inline;
}

.show-text .plus-icon{
  display:none;
}
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .who-is-colletive{
                margin-top: 40px;
                background: #7B4BCA;
            }
            .holder {
                flex-direction: column;
                background: none;
            }
            .image-section {
                min-height: 200px;
            }
            .badge {
                margin: auto;
            }
            .content-section-who {
                padding: 40px 20px;
            }
            .content-section-who h1 {
                font-size: 36px;
                text-align: center;
                margin-top: 25px;
            }
            .question-title {
                padding: 10px 13px;
            }
            .question-title p {
                font-size: 16px;
            }
            .question-answer {
                padding: 0px 13px 13px 13px;
            }
            .question-answer p {
                font-size: 13px;
            }
        }

            .trainer-section {
            position: relative;
            width: 100%;
            min-height: unset;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #000;
            overflow: hidden;
        }

        /* Decorative Background Shapes */
        .bg-shape {
            position: absolute;
            z-index: 0;
            background: linear-gradient(135deg, #7B4BCA 0%, #5a2ea6 40%, #1a0f2e 100%);
            opacity: 0.6;
        }

        .shape-1 {
            top: -100px;
            left: -50px;
            width: 300px;
            height: 600px;
            transform: skewX(-25deg);
        }

        .shape-2 {
            bottom: -150px;
            left: 15%;
            width: 150px;
            height: 450px;
            transform: skewX(-25deg);
        }

        .shape-3 {
            top: -200px;
            right: 25%;
            width: 120px;
            height: 520px;
            transform: skewX(-25deg);
        }

        .shape-4 {
            bottom: -100px;
            right: -50px;
            width: 250px;
            height: 500px;
            transform: skewX(-25deg);
        }

        .container {
            position: relative;
            z-index: 1;
            
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .intro-content {
            flex: 1;
            min-width: 300px;
            padding-right: 20px;
            text-align: center;
        }

        .intro-content .subtitle {
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            letter-spacing: 4px;
            color: #fff;
            margin-bottom: 10px;
            text-transform: uppercase;
            display: block;
            text-align: center;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        .title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            text-shadow: rgba(0, 0, 0, 1) 3px 3px 3px;
        }

        .title-wrapper i {
            color: #7B4BCA;
            font-size: 20px;
        }

        .main-title {
            font-family: 'Oswald', sans-serif;
            font-size: 64px;
            font-weight: 700;
            font-style: italic;
            text-transform: uppercase;
            line-height: 1;
        }

        .main-title span {
            color: #7B4BCA;
        }

        .intro-description {
            font-size: 13px;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 450px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .cta-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .join-btn {
            display: inline-flex;
            align-items: center;
            padding: 12px 28px;
            border: 1px solid #555;
            border-radius: 30px;
            color: #fff;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .join-btn:hover {
            background-color: #7B4BCA;
            border-color: #7B4BCA;
        }

        .join-btn i {
            margin-left: 10px;
            font-size: 12px;
            background: #7B4BCA;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 35px;
            height: 35px;
            border: 1px solid #555;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .social-links a:hover {
            border-color: #7B4BCA;
            color: #7B4BCA;
        }

        .trainers-grid {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-right: 30px;
        }

        .trainer-card {
            display: flex;
            width: 380px;
            height: 280px;
            background-color: #222429;
            overflow: hidden;
        }

        .trainer-image {
            width: 45%;
            height: 100%;
        }

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

        .trainer-info {
            width: 55%;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .trainer-name {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .trainer-specialty {
            font-family: 'Oswald', sans-serif;
            font-size: 13px;
            color: #7B4BCA;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .trainer-bio {
            font-size: 12px;
            color: #aaa;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .trainer-socials {
            display: flex;
            gap: 10px;
        }

        .trainer-socials a {
            width: 24px;
            height: 24px;
            border: 1px solid #7B4BCA;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7B4BCA;
            text-decoration: none;
            font-size: 10px;
            transition: 0.3s;
        }

        .trainer-socials a:hover {
            background-color: #7B4BCA;
            color: #fff;
        }

        @media (max-width: 1200px) {
            .container {
                flex-direction: column;
                text-align: center;
            }
            .intro-content {
                margin-bottom: 50px;
                padding-right: 0;
            }
            .title-wrapper {
                justify-content: center;
            }
            .intro-description {
                margin-left: auto;
                margin-right: auto;
            }
            .cta-row {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .trainer-card {
                width: 100%;
                height: auto;
                flex-direction: column;
            }
            .trainer-image, .trainer-info {
                width: 100%;
            }
            .trainer-image {
                height: 250px;
            }
            .main-title {
                font-size: 43px;
            }
            .main-title span { 
                font-size: 48px;
            }
            .trainers-grid {
                margin: 0px 30px;
            }
            .intro-content {
                margin: 50px 15px;
            }
            .shape-4 {
                bottom: -100px;
                width: 500px;
                height: 1200px;
                left: 0%;
                transform: skewX(-40deg);
            }
            .shape-2 {
                display: none;
            }
            .shape-3 {
                display: none;
            }
            .shape-1 {
                top: -38%;
                left: -10%;
                width: 555px;
                height: 100%;
                transform: skewX(40deg);
            }
        }

        footer {
            background-color: #222;
            color: #bbb;
            padding: 80px 0 0;
            font-size: 13px;
        }

        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 60px;
        }

        .footer-col h4 {
            color: white;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }

        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .footer-col .phone {
            color: white;
            font-weight: 700;
            display: block;
            margin-bottom: 25px;
        }

        .footer-col .phone i {
            margin-right: 10px;
        }

        .search-box, .newsletter-box {
            position: relative;
            background: #333;
            padding: 10px 15px;
            display: flex;
            align-items: center;
        }

        .search-box input, .newsletter-box input {
            background: transparent;
            border: none;
            color: #fff;
            width: 100%;
            outline: none;
            font-size: 12px;
        }

        .search-box i, .newsletter-box i {
            color: #777;
            cursor: pointer;
        }

        /* News Items */
        .news-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #333;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
        }

        .news-info h5 {
            color: white;
            font-size: 11px;
            letter-spacing: 1px;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .news-info span {
            font-size: 10px;
            color: #777;
            font-weight: 700;
        }

        /* Instagram Grid */
        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .instagram-grid div {
            aspect-ratio: 1;
            background: #333;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid #333;
            padding: 30px 0;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #777;
        }

        .footer-bottom .social-mini {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .footer-bottom .social-mini a {
            color: #777;
            text-decoration: none;
            width: 24px;
            height: 24px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s;
        }

        .footer-bottom .social-mini a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 40px 60px;
            }
            .contact-container {
                margin: -100px 20px 0;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 40px;
                letter-spacing: 10px;
            }
            .contact-container {
                flex-direction: column;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        /* ── Mobile Menu ── */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 22px;
            cursor: pointer;
            padding: 5px;
            z-index: 101;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .mobile-menu-close:hover {
            color: #7B4BCA;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 40px;
            text-align: center;
        }

        .mobile-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 36px;
            font-weight: 900;
            letter-spacing: -1px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .mobile-nav a:hover {
            color: #7B4BCA;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
                align-items: center;
            }
        }

        /* ── Reviews Section ── */
        .reviews-section {
            padding: 100px 0 80px;
            background: #000;
            overflow: hidden;
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 50px;
        }

        .reviews-header .section-eyebrow {
            display: inline-block;
            font-family: 'Oswald', sans-serif;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #7B4BCA;
            margin-bottom: 14px;
        }

        .reviews-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 64px;
            font-weight: 700;
            font-style: italic;
            letter-spacing: 0;
            text-transform: uppercase;
            line-height: 1;
        }

        /* Track */
        .reviews-track-outer {
            overflow: hidden;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
            scroll-snap-type: x mandatory;
            scroll-padding-left: 50px;
        }

        .reviews-track-outer:active {
            cursor: grabbing;
        }

        .reviews-track {
            display: flex;
            gap: 20px;
            padding: 12px 50px 20px;
            width: max-content;
        }

        /* Card – 3-D flip container */
        .review-card {
            flex: 0 0 340px;
            perspective: 1200px;
            cursor: pointer;
            scroll-snap-align: start;
        }

        .card-inner {
            position: relative;
            width: 100%;
            transform-style: preserve-3d;
            -webkit-transform-style: preserve-3d;
            transition: transform 0.72s cubic-bezier(0.23, 1, 0.32, 1);
            -webkit-transition: -webkit-transform 0.72s cubic-bezier(0.23, 1, 0.32, 1);
            border-radius: 16px;
        }

        /* Mobile: tap-to-flip via .flipped class */
        .review-card.flipped .card-inner {
            transform: rotateY(180deg);
            -webkit-transform: rotateY(180deg);
        }

        /* Desktop: hover-to-flip; cancel any tap-flip leftover */
        @media (hover: hover) and (pointer: fine) {
            .review-card:hover .card-inner {
                transform: rotateY(180deg);
                -webkit-transform: rotateY(180deg);
            }
            .review-card.flipped .card-inner {
                transform: none;
                -webkit-transform: none;
            }
        }

        /* Front face – in normal flow so its content defines the card height.
           NO overflow:hidden here — it flattens preserve-3d on iOS Safari. */
        .card-front {
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 16px;
            background: #111;
            border: 1px solid #1e1e1e;
            padding: 36px 32px 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 28px;
            min-height: 280px;
        }

        /* Back face – absolute so it covers the exact same area.
           NO overflow:hidden — same iOS Safari reason. */
        .card-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 16px;
            background-size: cover;
            background-position: center top;
            transform: rotateY(180deg);
            -webkit-transform: rotateY(180deg);
            display: flex;
            align-items: flex-end;
        }

        .card-back::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
        }

        .card-back-info {
            position: relative;
            z-index: 1;
            padding: 20px 24px;
            width: 100%;
        }

        .card-back-info .review-name {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
        }

        .card-back-info .review-verified {
            font-size: 10px;
            color: #7B4BCA;
            font-weight: 500;
            margin-top: 3px;
            letter-spacing: 1px;
        }

        .review-stars {
            display: none;
        }

        .review-quote {
            font-size: 17px;
            line-height: 1.65;
            color: #ccc;
            font-weight: 400;
            flex: 1;
        }

        .review-quote mark {
            background: rgba(123, 75, 202, 0.2);
            color: #fff;
            border-radius: 3px;
            padding: 0 3px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 24px;
            border-top: 1px solid #1e1e1e;
        }

        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7B4BCA, #3b1f6b);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 300;
            color: #fff;
            flex-shrink: 0;
            letter-spacing: 1px;
        }

        .review-name {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
        }

        .review-verified {
            font-size: 10px;
            color: #7B4BCA;
            font-weight: 500;
            margin-top: 2px;
            letter-spacing: 1px;
        }

        /* Footer row: dots + nav arrows */
        .reviews-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            margin-top: 40px;
            padding: 0 50px;
        }

        /* Drag hint dots */
        .reviews-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
        }

        .reviews-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #222;
            transition: background 0.3s, width 0.3s;
        }

        .reviews-dot.active {
            background: #7B4BCA;
            width: 22px;
            border-radius: 3px;
        }

        /* Arrow buttons — desktop only */
        .reviews-nav {
            display: flex;
            gap: 10px;
        }

        .reviews-arrow {
            width: 44px;
            height: 44px;
            border: 1px solid #2a2a2a;
            background: #111;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 13px;
            transition: border-color 0.25s, background 0.25s;
            flex-shrink: 0;
        }

        .reviews-arrow:hover {
            border-color: #7B4BCA;
            background: #7B4BCA;
        }

        .reviews-arrow:disabled {
            opacity: 0.25;
            cursor: default;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .reviews-header h2 { font-size: 36px; }
            .reviews-track { padding: 12px 20px 20px; gap: 14px; }
            .reviews-track-outer { scroll-padding-left: 20px; }
            .review-card { flex: 0 0 82vw; }
            .card-front { padding: 28px 22px 22px; min-height: 240px; }
            .review-quote { font-size: 15px; }
            .reviews-nav { display: none; }
        }
