/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(180deg, #070B14 0%, #0B1020 50%, #140A18 100%);
    font-family: Arial, sans-serif;
    color: #ffffff;
}
.background-stars {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url("images/stars.png");
    opacity: 0.15;
    pointer-events: none;
}
.cursor-pointer {
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    text-align: center;
    padding: 100px 20px 80px 20px;
}
.hero-logo {
    width: 90px;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}
.red { color: #FF4D4D; }
.teal { color: #5ED3C6; }
.hero-tagline {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.hero-desc {
    font-size: 16px;
    color: #9CA3AF;
    margin-bottom: 30px;
    line-height: 26px;
}
.primary-btn {
    background: #101827;
    border: 1px solid #1E293B;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ================= SECTIONS ================= */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

/* ================= CENTERED SECTION TITLES ================= */
.section-centered-title {
    text-align: center;
    width: 100%;
}

/* Special handling for section-header that contains both title + link */
.section-header {
    position: relative;
    margin-bottom: 40px;
}
.section-header h2 {
    margin: 0;
    text-align: center;
}
.section-header a {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF4D4D;
    font-size: 14px;
    text-decoration: none;
}

/* ================= CARDS ================= */
.card {
    background: #0F1625;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 24px;
}

.avatar {
    width: 40px;
    margin-bottom: 16px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    text-align: center;              /* Center all content */
    display: flex;
    flex-direction: column;
    align-items: center;             /* Center image + button */
}

.feature img {
    width: 36px;                     /* Default size (privacy icons etc.) */
    margin-bottom: 16px;
}

/* ================= START MIXING CTA ================= */

.start-mixing-card{
    background:#0F1625;
    border:1px solid #1E293B;
    border-radius:16px;
    padding:40px;
    margin-bottom:20px;
}

.start-mixing-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.start-mixing-left{
    text-align:left;
}

.start-mixing-title{
    font-size:28px;
    margin-bottom:16px;
}

.start-mixing-desc{
    font-size:15px;
    color:#9CA3AF;
    line-height:1.6;
    margin-bottom:14px;
}

.start-mixing-right{
    text-align:center;
}

.start-mixing-image{
    max-width:100%;
    width:320px;
    opacity:0.95;
}

.start-mixing-button-wrapper{
    text-align:center;
    margin-top:30px;
}

.start-mixing-btn{
    background:#FF4D4D;
    color:white;
    padding:14px 36px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:all 0.2s ease;
    box-shadow:0 8px 24px rgba(255,77,77,0.25);
}

.start-mixing-btn:hover{
    background:#ff6666;
    transform:translateY(-2px);
}

/* Responsive */
@media (max-width:768px){

.start-mixing-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.start-mixing-left{
    text-align:center;
}

.start-mixing-image{
    width:260px;
}

}

/* ================= INSTALL SECTION (BIGGER OS ICONS ONLY) ================= */
.features-grid .feature img[src*="windows"],
.features-grid .feature img[src*="mac"],
.features-grid .feature img[src*="linux"] {
    width: 90px;                     /* Bigger OS icons */
    height: 90px;
    object-fit: contain;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.feature p {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 22px;
}

/* ================= TESTIMONIAL SLIDER ================= */

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 60s linear infinite; /* ← SLIDING SPEED (increase = slower) */
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused; /* Pause on hover */
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.avatar {
    width: 40px;
    margin-bottom: 16px;
}

/* Infinite smooth scroll from right to left */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ================= QUICK START ================= */
.quickstart-section {
    padding-top: 0px;
    padding-bottom: 0px;
}
.quickstart-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}
.qs-title {
    font-size: 34px;
    font-weight: 700;
}
.terminal-wrapper {
    border-radius: 18px;
    background: linear-gradient(180deg, #0D1626 0%, #0B1322 100%);
    border: 1px solid #0FFFFF0F;
    overflow: hidden;
}
.terminal-header {
    height: 56px;
    background: #0A1220;
    border-bottom: 1px solid #0FFFFF0D;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center; /* move pills to left */
}
.terminal-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pill {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    background: #FFFFFF0D;
    color: #f2f2f2;
    border: 1px solid #FFFFFF14;
    cursor: pointer;
    user-select: none;
    transition: all 0.13s ease;
}
.pill:hover {
    background: #FF4D4D;
    border-color: #FF4D4D;
}
.active-pill {
    background: #FF4D4D;
    color: #000;
    font-weight: 600;
    border: none;
}
.terminal-body {
    padding: 28px;
    background: linear-gradient(180deg, #0E1A2B 0%, #0B1524 100%);
    text-align: center;
}
.terminal-comment {
    font-family: monospace;
    font-size: 15px;
    font-style: italic;
    color: #64748B;
    margin-bottom: 16px;
}
.terminal-command{
    background:#060B16;

    border:1px solid rgba(255,255,255,0.06);

    border-radius:10px;

    padding:16px 20px;

    font-family:monospace;

    font-size:15px;

    color:#E5E7EB;

    max-width:100%;

    word-break:break-all;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.02),
        0 4px 20px rgba(0,0,0,0.4);
}
.dollar {
    color: #FF4D4D;
    margin-right: 8px;
}
.copy-btn{

    background:#FF4D4D;

    border:none;

    padding:10px 24px;

    border-radius:8px;

    font-size:13px;

    color:white;

    font-weight:600;

    letter-spacing:.3px;

    cursor:pointer;

    transition:all .15s ease;

    box-shadow:0 6px 16px rgba(255,77,77,0.25);
    margin-top: 22px;
}

.copy-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(255,77,77,0.35);
}

.copy-btn:active{
    transform:translateY(0);
}
.terminal-footer-text {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-top: 22px;
}

/* Make bold text inside terminal-footer-text red */
.terminal-footer-text b,
.terminal-footer-text strong {
    color: #FF4D4D;
}

/* ================= INTEGRATIONS / BADGES ================= */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.badge {
    background: #0F1625;
    border: 1px solid #1E293B;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.badge img {
    width: 24px;
    height: 24px;
}

/* ================= NEWSLETTER ================= */
.newsletter {
    text-align: center;
}
.newsletter p {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.newsletter-form input {
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #1E293B;
    background: #0F1625;
    color: white;
    width: 260px;
}
.newsletter-form button {
    background: #FF4D4D;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
}

/* ================= FOOTER / SPONSORS ================= */
.sponsor-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}
.sponsor-row img {
    height: 40px;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    padding-top: 40px;
    padding-bottom: 80px;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: #0F1625;
    border: 1px solid #1E293B;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.2s ease;
}
.faq-item summary:hover {
    background: #162035;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "↓";
    position: absolute;
    right: 24px;
    font-size: 20px;
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #D1D5DB;
    line-height: 1.6;
}
.faq-answer p {
    margin-bottom: 16px;
}
.faq-answer ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style-type: disc;
}
.faq-answer li {
    margin-bottom: 8px;
}

.faq-btn {
    display: block;
    margin: 30px auto 0 auto;
    background: #FF4D4D;
    border: none;
    padding: 12px 26px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;   /* prevents underline */
    width: fit-content;      /* keeps button size correct */
}

.faq-btn:hover {
    background: #ff6666;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .testimonial-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .terminal-header {
        flex-direction: column;
        height: auto;
        padding: 16px 24px;
        gap: 14px;
        align-items: flex-start;
    }
    .terminal-right {
        flex-wrap: wrap;
        gap: 10px;
    }
    .section-header a {
        position: static;
        transform: none;
        margin-top: 12px;
    }
}
@media (max-width: 768px) {
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .tab-group {
        flex-wrap: wrap;
    }
    .terminal-command {
        padding-right: 50px;
    }
    .terminal-right {
        gap: 8px;
    }
    .pill {
        font-size: 13px;
        padding: 5px 12px;
    }
    .badge-row {
        flex-direction: column;
        align-items: center;
    }
    .faq-item summary {
        font-size: 17px;
        padding: 18px 20px;
    }
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* Centered "View all" link below testimonials */
.view-all-wrapper {
    text-align: center;
    margin-top: 32px;
}

/* Footer links side-by-side with separators */
.footer-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;               /* spacing between link + separator */
    margin-top: 32px;
    flex-wrap: wrap;          /* wrap on small screens */
}

.footer-link {
    color: #FF4D4D;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ff6666;
    text-decoration: underline;
}

.footer-separator {
    color: #ffffff;
    font-weight: 400;
    margin: 0 6px;           /* spacing around separator */
    user-select: none;
}

.view-all-link {
    color: #FF4D4D;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #ff6666;
    text-decoration: underline;
}

/* Remove the old absolute positioning since we no longer use .section-header for this section */
.section:has(.testimonial-grid) .section-header {
    /* optional: if you want to keep similar spacing behavior */
    margin-bottom: 24px;
}

/* Replace the old .testimonial-grid rule */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0 auto;
    max-width: 1100px;
}

/* Replace the old .avatar rule + add new styles */
.process-image {
    width: 80px;                    /* increased size */
    height: 80px;
    object-fit: contain;            /* keeps proportions, no distortion */
    margin: 0 auto 20px auto;       /* center + more breathing room */
    display: block;                 /* important for margin: auto to work */
    border-radius: 12px;            /* optional: slight rounding */
}

/* New or updated card style for this section */
.how-it-works-card {
    background: #0F1625;
    border: 1px solid #1E293B;
    border-radius: 12px;
    padding: 32px 24px;             /* a bit more padding */
    text-align: center;             /* center all text content */
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.how-it-works-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(255, 77, 77, 0.12);
}

.how-it-works-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.how-it-works-card p {
    font-size: 15px;
    color: #9CA3AF;
    line-height: 1.5;
}


/* ================= INSTALL SECTION ================= */
.install-section {
    text-align: center;
    padding-top: 40px;
}

.install-top-link {
    color: #6366F1;
    font-size: 14px;
    margin-bottom: 20px;
    cursor: pointer;
}

.install-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.install-subtitle {
    color: #9CA3AF;
    font-size: 18px;
    margin-bottom: 60px;
}

.install-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-items: center;          /* ← added */
}

/* Card Base */
.install-card {
    border-radius: 16px;
    padding: 40px 28px;
    border: 1px solid #1E293B;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;                   /* ← changed to flex */
    flex-direction: column;
    align-items: center;             /* ← this is the main centering rule */
    text-align: center;              /* ← ensures text is centered */
    min-height: 380px;               /* ← helps cards look more even */
}

.install-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.08);
}

.install-card h3 {
    font-size: 22px;
    margin-bottom: 24px;
}

/* Background Variants */
.windows-card {
    background: rgba(255,255,255,0.04);
}
.mac-card {
    background: rgba(255,255,255,0.04);
}
.linux-card {
    background: rgba(255,255,255,0.04);
}

/* OS Icons */
.os-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Download Button */
.download-btn {
    background: #FF4D4D;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
    margin-bottom: 20px;            /* ← added for better spacing */
}

.download-btn:hover {
    background: #d91616;
}

.download-icon {
    font-size: 14px;
}

/* File Badges */
.file-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;                /* better mobile behavior */
}

.file-badges span {
    background: #0F1625;
    border: 1px solid #1E293B;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    color: #D1D5DB;
}

/* Requirements */
.requirement {
    margin-top: 18px;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
    margin-top: auto;               /* ← pushes requirement to bottom */
}

/* Footer link */
.install-footer-link {
    margin-top: 40px;
    font-size: 14px;
    color: #9CA3AF;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .install-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .install-grid {
        grid-template-columns: 1fr;
    }
    .install-title {
        font-size: 36px;
    }
    .os-icon {
        width: 80px;
        height: 80px;
    }
    .install-card {
        min-height: auto;
        padding: 36px 24px;
    }
}

/* ================= TESTIMONIAL GRID PAGE ================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.testimonial-card-grid {
    min-height: 180px;
    padding: 18px;
    display: flex;
    flex-direction: column;

    justify-content: center;  /* vertical center */
    align-items: center;      /* horizontal center */
    text-align: center;       /* center the text */
}

.testimonial-text {
    font-size: 15px;
    color: #D1D5DB;
    line-height: 1.6;
    text-align: center;
}

.testimonial-date {
    margin-top: 10px;
    font-size: 13px;
    color: #6B7280;
}

/* ================= PAGINATION ================= */

.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.pagination-btn {
    background: #FF4D4D;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #d91616;
}

.pagination-btn:disabled {
    background: #333;
    cursor: not-allowed;
}

#pageIndicator {
    font-size: 14px;
    color: #9CA3AF;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= BACK BUTTON ================= */

.back-wrapper {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 40px;
}

.back-btn {
    background: #101827;
    border: 1px solid #1E293B;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: #FF4D4D;
    border-color: #FF4D4D;
}

.home-btn {
    background: #101827;
    border: 1px solid #1E293B;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.home-btn:hover {
    background: #FF4D4D;
    border-color: #FF4D4D;
}

/* ================= TIGHTER SPACING (WHAT PEOPLE SAY PAGE) ================= */

/* Reduce bottom space of hero */
.hero {
    padding-bottom: 30px; /* was 80px */
}

/* Reduce space around back button */
.back-wrapper {
    margin-top: 10px;
    margin-bottom: 25px; /* was 40px */
}

/* Reduce top padding of testimonials section */
.section {
    padding-top: 30px; /* was 60px */
}

/* ================= TESTIMONIAL POPUP ================= */

.testimonial-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
}

.testimonial-popup.show {
    opacity: 1;
    pointer-events: all;
}

.testimonial-popup-content {
    background: #0F1625;
    border: 1px solid #1E293B;
    border-radius: 14px;
    padding: 40px 30px;
    max-width: 700px;
    width: 90%;
    position: relative;
    text-align: center;
    animation: popupFade 0.25s ease;
}

.popup-text {
    font-size: 18px;
    color: #D1D5DB;
    line-height: 1.7;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    color: #9CA3AF;
    cursor: pointer;
}

.popup-close:hover {
    color: #FF4D4D;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

strong {
    color: #FF4D4D;
}

