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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #1a1a1a;
    color: #f0f0f0;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #141414;
}

.logo img {
    height: 46px;
    width: auto;
    border-radius: 6px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #141414;
    text-decoration: none;
    margin-left: 16px;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-box {
    background-color: #f2f2f2;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 10px 16px !important;
    font-size: 0.9rem !important;
}

.nav-box:hover {
    background-color: #e9e9e9;
    color: #141414 !important;
}

/* ===== Total Portfolio box ===== */
.portfolio-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    background-color: #f2f2f2;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.portfolio-label {
    color: #555555;
    font-weight: 500;
}

.portfolio-amount {
    color: #141414;
    font-weight: 700;
}

.blink-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2196f3;
    animation: blink-pulse 1.4s ease-in-out infinite;
}

@keyframes blink-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

nav a:hover {
    color: #b8860b;
}

.btn-get-started {
    background-color: #ffc700;
    color: #141414 !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
}

/* ===== Hero carousel ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
}

.slide-overlay {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 0 30px;
}

.slide-overlay h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.slide-overlay p {
    font-size: 1.15rem;
    color: #f0f0f0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-solid {
    display: inline-block;
    background-color: #ffc700;
    color: #141414;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.btn-outline {
    display: inline-block;
    background-color: #ffffff;
    color: #141414;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

/* ===== Arrows ===== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background-color: rgba(255,255,255,0.85);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: #141414;
    transition: background-color 0.2s ease;
}

.carousel-arrow:hover {
    background-color: #ffffff;
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
}

.arrow-left {
    left: 24px;
}

.arrow-right {
    right: 24px;
}

/* ===== Dots ===== */
.carousel-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background-color: #ffffff;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
    header {
        padding: 15px 30px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        row-gap: 10px;
    }

    nav a {
        margin-left: 12px;
        font-size: 0.85rem;
    }

    .slide-overlay h1 {
        font-size: 2.3rem;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
    header {
        position: static; /* avoid unpredictable overlap since header height varies once nav wraps */
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 20px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }

    nav a {
        margin-left: 0;
        margin-right: 0;
        font-size: 0.82rem;
    }

    .nav-box {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .portfolio-box {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hero-carousel {
        height: 80vh;
        margin-top: 0; /* header is no longer fixed on mobile, so no offset needed */
    }

    .slide-overlay h1 {
        font-size: 1.7rem;
    }

    .slide-overlay p {
        font-size: 1rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }
}

/* ===== About + Video section ===== */
.about-video {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 100px 60px;
    background-color: #b8b8b8; /* ash */
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #141414;
}

.about-text p {
    font-size: 1.05rem;
    color: #2a2a2a;
    margin-bottom: 18px;
    max-width: 480px;
}

.about-video-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-video-wrap video {
    width: 100%;
    display: block;
}

@media (max-width: 900px) {
    .about-video {
        flex-direction: column;
        padding: 60px 30px;
        text-align: left;
    }
}

/* ===== Office banner section ===== */
.office-banner {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.office-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}

.office-banner h2 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 14px rgba(0,0,0,0.6);
    max-width: 800px;
    padding: 0 20px;
}

@media (max-width: 700px) {
    .office-banner h2 {
        font-size: 1.7rem;
    }
}

/* ===== Bots section ===== */
.bots-section {
    background-color: #d8d8d8; /* bright ash */
    padding-bottom: 90px;
    text-align: center;
}

.why-bots-heading {
    color: #141414;
    font-size: 2rem;
    font-weight: 800;
    padding: 50px 20px 10px;
}

.bots-banner-wrap {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 40px;
}

.bots-banner {
    width: 42%;
    max-width: 480px;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.bots-banner-statements {
    flex: 1;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.bots-banner-statements p {
    color: #141414;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.bots-banner-statements.left {
    text-align: right;
}

.bots-banner-statements.right {
    text-align: left;
}

@media (max-width: 900px) {
    .bots-banner-wrap {
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
    }

    .bots-banner {
        width: 80%;
        order: -1;
    }

    .bots-banner-statements.left,
    .bots-banner-statements.right {
        text-align: center;
        max-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
    }

    .bots-banner-statements p {
        font-size: 1.05rem;
    }
}

.bots-heading {
    color: #141414;
    font-size: 2.4rem;
    font-weight: 800;
    padding: 40px 20px 50px;
    scroll-margin-top: 88px; /* so the fixed header doesn't cover it when jumped to */
}

.bots-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.bot-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}

.bot-card {
    background-color: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    width: 230px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
    transition: transform 0.25s ease;
}

.bot-card:hover {
    transform: translateY(-4px);
}

.bot-card-top {
    height: 10px;
    background-color: #ffc700; /* lemon */
}

.bot-card-name {
    color: #141414;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 22px 16px;
    text-align: center;
}

.bot-card-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
    text-align: left;
    border-top: 1px solid #dcdcdc;
}

.bot-card-features p {
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bot-card.hover-open .bot-card-features,
.bot-card.locked .bot-card-features {
    max-height: 340px;
    overflow-y: auto;
    padding: 16px 18px 20px;
}

.bot-card-features ul {
    list-style: none;
}

.bot-card-features ul li {
    color: #333333;
    font-size: 0.85rem;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.bot-card-features ul li::before {
    content: "\2022";
    color: #b8860b;
    position: absolute;
    left: 0;
}

/* Small visual cue that a card is locked open */
.bot-card.locked {
    box-shadow: 0 0 0 2px #ffc700, 0 12px 26px rgba(0,0,0,0.15);
}

@media (max-width: 700px) {
    .bot-card {
        width: 100%;
        max-width: 320px;
    }

    .why-bots-heading {
        font-size: 1.6rem;
        padding: 34px 20px 6px;
    }

    .bots-heading {
        font-size: 1.8rem;
    }
}

/* ===== Track Records page ===== */
.track-records-page {
    padding: 130px 60px 90px;
    max-width: 1000px;
    margin: 0 auto;
}

.track-records-intro h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.track-records-intro p {
    color: #c9c9c9;
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 50px;
}

.track-account-card {
    background-color: #242424;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.track-account-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
}

.track-detail {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.track-detail-label {
    color: #999999;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.track-detail-value {
    color: #f0f0f0;
    font-size: 1rem;
    font-weight: 600;
}

.track-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid #3a3a3a;
    padding-top: 20px;
}

.track-screenshot {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.track-no-screenshots,
.track-no-accounts {
    color: #999999;
    font-size: 0.9rem;
    border-top: 1px solid #3a3a3a;
    padding-top: 16px;
}

.track-no-accounts {
    border-top: none;
    padding-top: 0;
}

@media (max-width: 700px) {
    .track-records-page {
        padding: 40px 24px 60px;
    }

    .track-account-details {
        gap: 16px;
    }
}

/* ===== TV-style screenshot carousel (public track records page) ===== */
.track-screenshot-label {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.tv-carousel {
    position: relative;
    background-color: #000000;
    border-radius: 10px;
    overflow: hidden;
    border-top: 1px solid #3a3a3a;
}

.tv-track {
    display: flex;
    transition: transform 0.4s ease;
}

.tv-slide {
    min-width: 100%;
    position: relative;
}

.tv-slide img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    background-color: #000000;
    display: block;
}

.tv-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
    color: #ffc700;
    font-size: 0.85rem;
    font-weight: 600;
}

.tv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-arrow:hover {
    background-color: rgba(255,255,255,0.3);
}

.tv-prev {
    left: 10px;
}

.tv-next {
    right: 10px;
}

@media (max-width: 700px) {
    .tv-slide img {
        height: 220px;
    }
}

/* ===== Static pages (Contact Us, About) ===== */
.static-page {
    padding: 130px 60px 90px;
    max-width: 1000px;
    margin: 0 auto;
}

.static-page h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.static-intro {
    color: #c9c9c9;
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 240px;
}

.contact-whatsapp {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 24px;
}

.contact-detail {
    color: #d5d5d5;
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-form-wrap {
    flex: 1.3;
    min-width: 280px;
    background-color: #242424;
    border-radius: 12px;
    padding: 28px;
}

.contact-form-wrap textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    background-color: #1a1a1a;
    color: #f0f0f0;
    font-size: 0.92rem;
    font-family: inherit;
    resize: vertical;
}

.contact-form-wrap textarea:focus {
    outline: none;
    border-color: #ffc700;
}

.about-content p {
    color: #d5d5d5;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 750px;
}

@media (max-width: 700px) {
    .static-page {
        padding: 40px 24px 60px;
    }
}

/* ===== Legal pages (Terms, Privacy) ===== */
.legal-page .about-content h2 {
    color: #f0f0f0;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 34px;
    margin-bottom: 10px;
}

.legal-page .about-content h2:first-child {
    margin-top: 0;
}

.legal-page .about-content p {
    max-width: 780px;
}

/* ===== Site footer ===== */
.site-footer {
    background-color: #141414;
    padding: 30px 40px;
    border-top: 1px solid #2a2a2a;
}

.site-footer-risk {
    color: #999999;
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: center;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    color: #c9c9c9;
    font-size: 0.82rem;
}

.site-footer-links {
    display: flex;
    gap: 20px;
}

.site-footer-links a {
    color: #c9c9c9;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #ffc700;
}

@media (max-width: 700px) {
    .site-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .site-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== FAQ section ===== */
.faq-section {
    background-color: #1a1a1a;
    padding: 90px 60px;
    scroll-margin-top: 88px;
}

.faq-heading {
    text-align: center;
    color: #f0f0f0;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333333;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #f0f0f0;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 22px 4px;
    cursor: pointer;
}

.faq-question:hover {
    color: #ffc700;
}

.faq-toggle {
    color: #ffc700;
    font-size: 1.4rem;
    font-weight: 400;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.25s ease;
}

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

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

.faq-answer p {
    color: #c9c9c9;
    font-size: 0.95rem;
    line-height: 1.65;
    padding: 0 4px 22px;
    max-width: 720px;
}

@media (max-width: 700px) {
    .faq-section {
        padding: 60px 24px;
    }

    .faq-heading {
        font-size: 1.7rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ===== Fee calculator (inside FAQ) ===== */
.fee-calculator {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 4px 8px;
    max-width: 420px;
}

.fee-calculator input {
    flex: 1;
    min-width: 180px;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    background-color: #242424;
    color: #f0f0f0;
    font-size: 0.92rem;
    font-family: inherit;
}

.fee-calculator input:focus {
    outline: none;
    border-color: #ffc700;
}

.fee-calculator button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.fee-calc-result {
    color: #ffc700;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0 4px;
    margin-bottom: 22px;
}
