/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #F5F6F8;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #FFFFFF;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #E5E7EB;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4F46E5;
}

.header__logo span {
    color: #111827;
}

.header__nav {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: color 0.2s;
}

.header__nav-link:hover {
    color: #4F46E5;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__login {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: color 0.2s;
}

.header__login:hover {
    color: #4F46E5;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn--primary {
    background: #4F46E5;
    color: white;
}

.btn--primary:hover {
    background: #4338CA;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.btn--primary:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

.btn--secondary {
    background: white;
    color: #111827;
    border: 1px solid #E5E7EB;
}

.btn--secondary:hover {
    border-color: #4F46E5;
    color: #4F46E5;
    background: #EEF2FF;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--large span {
    font-weight: normal;
    opacity: 0.7;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__badge {
    display: inline-block;
    width: 155px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__note {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #9CA3AF;
}

.hero__note span {
    margin-right: 6px;
    height: 18px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 12rem;
}
  
  .stat-item {
    width: 150px;
    text-align: center;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
  }
  
  .stat-label {
    font-size: 1.1rem;
    color: #6B7280;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .stats-container {
      flex-direction: column;
      gap: 50px;
    }
  
    .stat-number {
      font-size: 56px;
    }
  
    .stat-label {
      font-size: 18px;
    }
  }

/* Tool Card */
.tool-card {
    padding: 2rem 0 4rem;
}

.tool-card__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tool-card__wrapper {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    margin: 0 auto;
}

.tool-card__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.tool-card__textarea {
    width: 100%;
    min-height: 400px;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
    background: #FFFFFF;
    color: #111827;
}

.tool-card__textarea:focus {
    outline: none;
    border-color: #4F46E5;
}

.tool-card__actions-top {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tool-card__actions-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tool-card__word-count {
    color: #6B7280;
    font-size: 0.9rem;
}

.tool-card__actions-right {
    display: flex;
    gap: 0.75rem;
}

.tool-card__actions-right a {
    text-decoration: none;
}

.tool-card__actions-right .btn--primary {
    display: flex;
    align-items: center;
}

.tool-card__actions-right .btn--primary svg {
    margin-right: 6px;
}

/* Bypass Strip */
.bypass-strip {
    padding: 4rem 0;
    background: #FFFFFF;
}

.bypass-strip__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bypass-strip__title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #6B7280;
}

.detector-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    outline: none;
}

.bypass-strip-card {
    width: auto;
    height: 80px;
}

.detector-track {
    display: flex;
    width: max-content;
    animation: detector-marquee 90s linear infinite;
    gap: 1rem;
}

.detector-list {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.detector-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #FFFFFF;
    white-space: nowrap;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.bypass-strip__image {
    width: 100%;
    height: 100%;
}

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

@media (prefers-reduced-motion: reduce) {
    .detector-carousel {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .detector-track {
        animation: none;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .detector-list {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .detector-list:last-of-type {
        display: none;
    }
}

/* Steps Section */
.steps {
    padding: 4rem 0;
}

.steps__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #111827;
}

.steps__subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: transform 0.2s;
}

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

.step-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.step-card__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #EEF2FF;
    color: #4F46E5;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 1rem 1rem 0.5rem;
}

.step-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.5rem 1rem;
    color: #111827;
}

.step-card__description {
    padding: 0 1rem 1.5rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Feature Blocks */
.features {
    padding: 4rem 0;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-block--reverse {
    direction: rtl;
}

.feature-block--reverse > * {
    direction: ltr;
}

.feature-block__content {
    padding: 1rem;
}

.feature-block__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-block__text {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-block__list {
    list-style: none;
    padding: 0;
}

.feature-block__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #111827;
}

.feature-block__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4F46E5;
    font-weight: bold;
}

.feature-block__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
}

.feature-block__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Logos Section */
.logos {
    padding: 4rem 0;
    background: #FFFFFF;
}

.logos__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logos__title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #6B7280;
}

.logos .detector-carousel {
    margin-top: 0;
}

.logos .detector-track {
    gap: 2rem;
}

.logos .detector-chip--logo {
    padding: 1rem;
    min-width: 150px;
    justify-content: center;
}

.logos .detector-chip--logo .logo-card__image {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
    filter: grayscale(50%);
    display: block;
}

.logos .detector-chip__dot {
    display: none;
}

.logo-card__image {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    filter: grayscale(50%);
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
}

.reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #111827;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    position: relative;
}

.review-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #EEF2FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__stars {
    height: 20px;
    margin-bottom: 1rem;
}

.review-card__quote {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.review-card__author {
    margin-top: auto;
}

.review-card__name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.review-card__role {
    font-size: 0.9rem;
    color: #9CA3AF;
}

.review-card__verified {
    display: flex;
    align-items: center;
}

.review-card__verified svg {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 5px;
}

.review-card__verified p {
    font-size: 0.9rem;
    color: #9CA3AF;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #FFFFFF;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #111827;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #111827;
    transition: background-color 0.2s;
}

.faq__question:hover {
    background-color: #F5F6F8;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__item[open] .faq__question {
    border-bottom: 1px solid #E5E7EB;
}

.faq__answer {
    padding: 1.5rem;
    color: #6B7280;
    line-height: 1.7;
}

.faq__answer p {
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: #0F172A;
}

.cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta__text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 0 1.5rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer__copyright {
    font-size: 0.9rem;
    color: #6B7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__actions {
        gap: 0.5rem;
    }

    .header__login {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .tool-card__actions-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .tool-card__actions-right {
        width: 100%;
        flex-direction: column;
    }

    .tool-card__actions-right .btn {
        width: 100%;
    }

    .steps__title {
        font-size: 2rem;
    }

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

    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-block--reverse {
        direction: ltr;
    }

    .feature-block__image-wrapper {
        order: -1;
    }

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

    .cta__title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .steps__title,
    .reviews__title,
    .faq__title,
    .cta__title {
        font-size: 1.75rem;
    }

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