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

.d-none,.hidden{
    display: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #0a0e1a;
    color: #e4e7eb;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.page {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.page.active {
    display: block;
}

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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 200, 255, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #64c8ff;;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #b4b9c5;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: #64c8ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #64c8ff;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(100, 200, 255, 0.2);
    padding: 100px 30px 30px;
    transition: right 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    color: #b4b9c5;
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(100, 200, 255, 0.1);
    cursor: pointer;
}

.cta-btn {
    background: #64c8ff;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.3s;
    font-size: 15px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 0 50px;
    position: relative;
    overflow: hidden;
    background: #0a0e1a;
}

.hero-background {
    background: linear-gradient(rgba(10, 11, 13, 0.75), rgba(10, 11, 13, 0.75)), url('../images/hero.jpg') center/cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(100, 200, 255, 0.05);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-content .subtitle {
    font-size: 22px;
    color: #8a92a6;
    margin-bottom: 40px;
    line-height: 1.5;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(100, 200, 255, 0.05);
    border: 1px solid rgba(100, 200, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: #64c8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hero-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(100, 200, 255, 0.08);
    border: 1px solid rgba(100, 200, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-card {
    position: absolute;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 200, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-card:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.float-card:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

.metric {
    font-size: 24px;
    font-weight: 700;
    color: #64c8ff;
}

.metric-label {
    font-size: 12px;
    color: #8a92a6;
}

/* Stats Section */
.stats {
    padding: 30px 0;
    background: rgba(100, 200, 255, 0.02);
    border-top: 1px solid rgba(100, 200, 255, 0.1);
    border-bottom: 1px solid rgba(100, 200, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #64c8ff;;
    margin-bottom: 8px;
}

.stat-item p {
    color: #8a92a6;
    font-size: 15px;
}

/* Technology Section */
.technology {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #8a92a6;
    max-width: 700px;
    margin: 0 auto;
}

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

.tech-card {
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(100, 200, 255, 0.05);
    border-color: rgba(100, 200, 255, 0.3);
    transform: translateY(-4px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: #64c8ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.tech-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.tech-card p {
    color: #8a92a6;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 60px 0;
    background: rgba(100, 200, 255, 0.02);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid rgba(100, 200, 255, 0.3);
    overflow: hidden;
    background: #64c8ff;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-member .role {
    color: #64c8ff;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-member .bio {
    color: #8a92a6;
    font-size: 13px;
}

/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
}

.auth-box {
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 480px;
    width: 100%;
}

.auth-box h2 {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
}

.auth-box .subtitle {
    color: #8a92a6;
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #b4b9c5;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 8px;
    color: #e4e7eb;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,.form-group select:focus {
    outline: none;
    border-color: #64c8ff;
    background: rgba(10, 14, 26, 0.8);
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: #64c8ff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
}

.auth-links {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #8a92a6;
}

.auth-links a,a.auth-links {
    color: #64c8ff;
    text-decoration: none;
    cursor: pointer;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-container {
    padding: 140px 0 80px;
    margin-bottom: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-container .last-updated {
    color: #8a92a6;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #64c8ff;
}

.legal-container h3 {
    font-size: 20px;
    margin: 24px 0 12px;
}

.legal-container p {
    color: #b4b9c5;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    color: #b4b9c5;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 16px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(100, 200, 255, 0.1);
    background: rgba(100, 200, 255, 0.02);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #64c8ff;
}

.footer-section p {
    color: #8a92a6;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: #8a92a6;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-section a:hover {
    color: #64c8ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(100, 200, 255, 0.1);
    color: #6b7280;
    font-size: 14px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-content h1 {
        font-size: 42px;
        padding-top:8px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .container {
        padding: 0 20px;
    }

    .steps-container {
        justify-content: center;
    }

    .step-card {
        width: 45%;
        min-width: 280px;
    }

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

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-secondary);
    position: relative;
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Reviews Section */
.reviews {
    padding: 20px 0 120px;
    background: rgba(100, 200, 255, 0.02);
    overflow: hidden;
}

.reviews-carousel {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scrollReviews 60s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    max-width: 400px;
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    flex-shrink: 0;
}

.review-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.review-text {
    color: #b4b9c5;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.review-author strong {
    color: #e4e7eb;
    display: block;
    margin-bottom: 4px;
}

.review-author span {
    color: #8a92a6;
    font-size: 13px;
}

/* Partners Section */
.partners {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.5);
}

.partners-carousel {
    margin-top: 0px;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scrollPartners 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    min-width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: rgba(100, 200, 255, 0.02);
}

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

.trust-badge-card {
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.trust-badge-card:hover {
    background: rgba(100, 200, 255, 0.05);
    border-color: rgba(100, 200, 255, 0.3);
    transform: translateY(-4px);
}

.trust-badge-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.trust-badge-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #64c8ff;
}

.trust-badge-card p {
    color: #8a92a6;
    font-size: 14px;
}


/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #0d1120;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(100, 200, 255, 0.05);
    border: 2px solid rgba(100, 200, 255, 0.2);
    border-radius: 20px;
    padding: 30px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    background: rgba(100, 200, 255, 0.1);
    border-color: rgba(100, 200, 255, 0.4);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #64c8ff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.step-icon {
    font-size: 48px;
    margin: 20px 0;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #64c8ff;
}

.step-card p {
    color: #b4b9c5;
    line-height: 1.7;
    font-size: 14px;
}

/* Vision Section */
.vision {
    padding: 60px 0;
    background: rgba(100, 200, 255, 0.02);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.vision-hero {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(100, 200, 255, 0.08);
    border: 1px solid rgba(100, 200, 255, 0.2);
    position: sticky;
    top: 120px;
}

.vision-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.vision-text h3 {
    font-size: 28px;
    color: #64c8ff;
    margin: 40px 0 20px 0;
}

.vision-text h3:first-child {
    margin-top: 0;
}

.vision-text p {
    color: #b4b9c5;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 16px;
}

.vision-text strong {
    color: #64c8ff;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background: #0d1120;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(100, 200, 255, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    color: #e4e7eb;
    margin: 0;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 28px;
    color: #64c8ff;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: #b4b9c5;
    line-height: 1.8;
    margin: 0;
}
.back-link {
    display: inline-block;
    color: #64c8ff;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.notification-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.notification-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notification-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.notification-badge.info {
    background: rgba(100, 200, 255, 0.1);
    color: #64c8ff;
}



@keyframes blinkFade {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.blink-smooth {
  animation: blinkFade 5s infinite ease-in-out;
}

.blink {
  animation: blink 5s infinite;
}


@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
        margin-bottom:12px;
    }

    .hero{
        padding-top:100px;
    }

    .hero-image{
      display:none;
    }

    .hero-content .subtitle {
        font-size: 18px;
        margin-bottom:12px;
    }

    .technology,.how-it-works,.vision,.faq {
        padding: 30px 0;
    }

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

    .stat-item h3 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .auth-box {
        padding: 30px 20px;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        min-width: 350px;
    }

    .step-card {
        width: 100%;
    }

    .vision-content {
        grid-template-columns: 1fr;
    }

    .vision-hero {
        position: relative;
        top: 0;
        height: 400px;
    }

    .trust-badges {
        gap: 10px;
        margin-top: 20px;
    }

    .badge {
        padding: 10px 4px;
        font-size: 12px;
        align-items: center;
        gap: 4px;
    }
    .section-header {
        margin-bottom: 40px;
    }
}

/* Blog & Reviews Styles */
.blog-header-image {
    width: 100%;
    border-radius: 12px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin-bottom: 32px;*/
    flex-wrap: wrap;
    gap: 16px;
}

.reviews-meta {
    color: #8a92a6;
    margin: 0;
}

.reviews-meta strong {
    color: #64c8ff;
}

.reviews-navigation {
    display: flex;
    gap: 12px;
    justify-content: right;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /*margin-bottom: 48px;*/
}

.comment-card {
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    word-break:break-all;
}

.comment-content {
    display: flex;
    gap: 8px;
    align-items: start;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #64c8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.comment-avatar.variant-1 { background: #64c8ff; }
.comment-avatar.variant-2 { background: #64c8ff; }
.comment-avatar.variant-3 { background: #10b981; }
.comment-avatar.variant-4 { background: #f59e0b; }
.comment-avatar.variant-5 { background: #ef4444; }

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
   /* margin-bottom: 12px;*/
    flex-wrap: wrap;
    gap: 8px;
}

.comment-author {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.comment-meta {
    font-size: 13px;
    color: #8a92a6;
}

.comment-rating {
    background: rgba(100, 200, 255, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #64c8ff;
    font-weight: 600;
}

.comment-text {
    color: #b4b9c5;
    line-height: 1.7;
    margin: 0;
}

.review-form-container {
    background: rgba(100, 200, 255, 0.05);
    border: 2px solid rgba(100, 200, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.review-form-title {
    margin-bottom: 24px;
    font-size: 22px;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 8px;
    color: #e4e7eb;
    font-size: 15px;
}

.form-textarea {
    resize: vertical;
}

.form-submit {
    background: #64c8ff;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
    width: 100%;
}

/* Home Page Reviews */
.reviews-home-section {
    background: rgba(100, 200, 255, 0.02);
    padding: 30px 0;
}

.rating-display {
    text-align: center;
    margin-bottom: 30px;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(100, 200, 255, 0.05);
    padding: 16px 32px;
    border-radius: 12px;
    border: 1px solid rgba(100, 200, 255, 0.2);
}

.rating-icon {
    font-size: 48px;
}

.rating-content {
    text-align: left;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #64c8ff;
}

.rating-count {
    color: #8a92a6;
    font-size: 14px;
}

.reviews-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.review-card-home {
    background: rgba(100, 200, 255, 0.03);
    border: 1px solid rgba(100, 200, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.review-header-home {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 16px;
}

.review-avatar-home {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.review-avatar-home.variant-1 { background: #64c8ff; }
.review-avatar-home.variant-2 { background: #64c8ff; }
.review-avatar-home.variant-3 { background: #10b981; }

.review-info-home {
    flex: 1;
}

.review-name-home {
    font-weight: 600;
    margin-bottom: 4px;
}

.review-stars-home {
    color: #f59e0b;
    font-size: 14px;
}

.review-text-home {
    color: #b4b9c5;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.reviews-cta {
    text-align: center;
}

.rating-news{
    background: #ddd;
    border-radius: 5px;
    padding: 2px;
}

@media (max-width: 1024px) {
    .reviews-home-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reviews-navigation {
        width: 100%;
        justify-content: space-between;
    }
    .review-form-container {
        margin-bottom: 32px;
    }
    .video-section {
        padding: 80px 0;
    }
    
    .video-stat-value {
        font-size: 24px;
    }
}
/* Video Section */
.video-section {
    padding: 30px 0;
    background: rgba(100, 200, 255, 0.02);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(100, 200, 255, 0.2);
    margin-top: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}

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

.video-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #64c8ff;;
    margin-bottom: 8px;
}

.video-stat-label {
    font-size: 14px;
    color: #8a92a6;
}

/* Review Navigation Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-primary {
    background: #64c8ff;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
}

.btn-secondary {
    background: rgba(100, 200, 255, 0.05);
    color: #64c8ff;
    border: 1px solid rgba(100, 200, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(100, 200, 255, 0.1);
    border-color: rgba(100, 200, 255, 0.3);
}

.btn-nav {
    padding: 8px 20px;
    font-size: 14px;
}
.hide-com-controls .reviews-nav{
    display:none;
}
