/* ============================================
   LLM Audit Landing Page - Scoped Styles
   All styles scoped to .llm-audit-wrapper
   ============================================ */

/* Reset and Base Styles */
.llm-audit-wrapper {
    font-family: "Quicksand", Sans-serif;
    color: #000;
    line-height: 1.6;
    width: 100%;
    position: relative;
    /* Break out of theme containers */
    /* margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%); */
    max-width: 100vw;
    left: 0;
    right: 0;
    /* Center align wrapper - no margins */
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.llm-audit-wrapper > * {
    width: 100%;
    max-width: 100%;
}

.llm-audit-wrapper .hero-container,
.llm-audit-wrapper .llm-audit-container {
    text-align: center;
}

.llm-audit-wrapper .section-title,
.llm-audit-wrapper .testimonials-subtitle,
.llm-audit-wrapper .hero-title,
.llm-audit-wrapper .hero-subtitle,
.llm-audit-wrapper .hero-description {
    text-align: center;
}

.llm-audit-wrapper * {
    box-sizing: border-box;
}

/* Reset any theme interference */
.llm-audit-wrapper h1,
.llm-audit-wrapper h2,
.llm-audit-wrapper h3,
.llm-audit-wrapper h4,
.llm-audit-wrapper p {
    margin: 0;
    padding: 0;
}

.llm-audit-wrapper ul,
.llm-audit-wrapper ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.llm-audit-wrapper a {
    text-decoration: none;
}

.llm-audit-wrapper button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.llm-audit-wrapper input,
.llm-audit-wrapper textarea,
.llm-audit-wrapper select {
    font-family: inherit;
}

/* Container - renamed to avoid theme conflicts */
.llm-audit-wrapper .llm-audit-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Hero Section */
.llm-audit-wrapper .hero {
    /* Diagonal gradient: white at top-left, light purple at bottom-right */
    /* Left side: white to very light purple, Right side: light purple gradient */
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #ffffff 10%,
        #faf8ff 20%,
        #f5f0ff 35%,
        #f0e8ff 50%,
        #e8daff 65%,
        #e0ccff 80%,
        #d8beff 90%,
        #d0b0ff 100%
    );
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.llm-audit-wrapper .hero-container {
    max-width: 1852px;
    margin: 0 auto;
    padding: 0 34px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.llm-audit-wrapper .hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.1;
}

.llm-audit-wrapper .hero-subtitle {
    font-size: 32px;
    font-weight: 500;
    color: #8012ff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.llm-audit-wrapper .hero-description {
    font-size: 24px;
    font-weight: 300;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.4;
}

.llm-audit-wrapper .hero-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    max-width: 960px;
    margin: 0 auto;
    gap: 12px;
    /* background-color: #fff; */
    /* border: 3px solid #dabaff; */
    border: none;
    border-radius: 67px;
    padding: 20px 20px;
    height: 85px;
}

.llm-audit-wrapper .hero-input {
    flex: 1 1 auto;
    min-width: 200px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid;
    outline: none;
    font-size: 20px;
    font-weight: 300;
    color: #807c7c;
    padding: 0 20px;
    font-family: "Quicksand", Sans-serif;
    background: transparent;
}

.llm-audit-wrapper .hero-input::placeholder {
    color: #807c7c;
}

.llm-audit-wrapper .hero-country-field-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* flex: 0 0 180px; */
    /* max-width: 200px; */
    /* padding-top:1.3em; */
}

.llm-audit-wrapper .hero-country-select {
    height: 56px;
    border-radius: 12px;
    width: 100%;
    padding: 0 12px;
    border:1px solid #807c7c !important;
    background: transparent !important;
}

.llm-audit-wrapper .hero-country-helper-text {
    font-size: 12px;
    color: #000;
    margin-top: 5px;
    line-height: 1.3;
    padding-left:2em;
}

.llm-audit-wrapper .hero-audit-btn {
    flex-shrink: 0;
    height: 56px;
    border-radius: 12px;
    white-space: nowrap;
    background-color: #8012ff;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.llm-audit-wrapper .hero-audit-btn:hover:not(:disabled) {
    background-color: #6a0fd9;
}

.llm-audit-wrapper .hero-audit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #8012ff;
}

.llm-audit-wrapper .website-error-message {
    color: #8012ff;
    margin-top: 15px;
    font-size: 15px;
    text-align: left;
    padding: 14px 20px 14px 24px;
    background: rgba(218, 186, 255, 0.15);
    border-radius: 12px;
    border: 2px solid #dabaff;
    max-width: 60%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDown 0.3s ease-out;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(128, 18, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
}

.llm-audit-wrapper .website-error-text {
    flex: 1;
    color: #8012ff;
}

.llm-audit-wrapper .website-error-close {
    background: transparent;
    border: none;
    color: #8012ff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    border-radius: 50%;
}

.llm-audit-wrapper .website-error-close:hover {
    background: rgba(128, 18, 255, 0.1);
    color: #6a0fd9;
    transform: scale(1.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.llm-audit-wrapper .features {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
}

.llm-audit-wrapper .section-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.llm-audit-wrapper .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.llm-audit-wrapper .feature-card {
    background: linear-gradient(128.187deg, #fff 7.78%, #fbf7ff 109.82%);
    border: 1.5px solid #e6e5e5;
    border-radius: 25px;
    padding: 15px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.llm-audit-wrapper .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(128, 18, 255, 0.1);
}

.llm-audit-wrapper .feature-icon {
    width: 53px;
    height: 53px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.llm-audit-wrapper .feature-icon .icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.llm-audit-wrapper .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.llm-audit-wrapper .feature-text {
    font-size: 16px;
    font-weight: 400;
    color: #4e4e4e;
    text-align: left;
    line-height: 1.6;
}

.llm-audit-wrapper .feature-card-cta {
    background: rgba(229, 206, 255, 0.46);
    border: none;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.llm-audit-wrapper .feature-title-cta {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.llm-audit-wrapper .feature-title-cta span {
    font-weight: 300;
}

.llm-audit-wrapper .feature-cta-btn {
    background-color: #8012ff;
    color: #fff;
    border: none;
    padding: 20px 60px;
    border-radius: 37.5px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.llm-audit-wrapper .feature-cta-btn:hover {
    background-color: #6a0fd9;
}

/* Testimonials Section */
.llm-audit-wrapper .testimonials {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
}

.llm-audit-wrapper .client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.llm-audit-wrapper .client-logos-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.llm-audit-wrapper .testimonials-subtitle {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.llm-audit-wrapper .purple-text {
    color: #8012ff;
}

.llm-audit-wrapper .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.llm-audit-wrapper .testimonial-card {
    border-radius: 25px;
    padding: 30px;
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: rgba(218, 186, 255, 0.28);
    border: 1.2px solid #8012ff;
}

/* Gradient backgrounds for each card - light purple base */
.llm-audit-wrapper .testimonial-card-scalability {
    background: rgba(218, 186, 255, 0.28);
}

.llm-audit-wrapper .testimonial-card-flexibility {
    background: rgba(218, 186, 255, 0.28);
}

.llm-audit-wrapper .testimonial-card-reliability {
    background: rgba(218, 186, 255, 0.28);
}

.llm-audit-wrapper .testimonial-header {
    margin-bottom: 0;
}

.llm-audit-wrapper .testimonial-white-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 15px;
    margin-top: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Title badge at top */
.llm-audit-wrapper .testimonial-badge-title {
    font-size: 24px;
    font-weight: 700;
    color: #8012ff;
    margin-bottom: 15px;
    letter-spacing: 0.56px;
    text-align: left;
}

.llm-audit-wrapper .testimonial-quote {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

/* White card section - Top row with author image and badge */
.llm-audit-wrapper .testimonial-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    width: 100%;
}

.llm-audit-wrapper .author-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin: 0;
    width: fit-content;
}

.llm-audit-wrapper .testimonial-badge-top-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 1em;
}

.llm-audit-wrapper .company-badge-image {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
    width: auto;
}

.llm-audit-wrapper .company-logo-small {
    max-width: 65px;
    height: auto;
    object-fit: contain;
    margin-top: 0;
    display: block;
}

.llm-audit-wrapper .testimonial-content {
    margin-top: auto;
}

.llm-audit-wrapper .author-avatar-img {
    width: 59px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(128, 18, 255, 0.15);
    display: block;
    box-shadow: 0 2px 8px rgba(128, 18, 255, 0.1);
}

.llm-audit-wrapper .author-info {
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
    width: 100%;
}

.llm-audit-wrapper .author-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.llm-audit-wrapper .author-title {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    text-align: left;
}

.llm-audit-wrapper .testimonial-company-logo-bottom {
    margin-top: 0;
    padding-top: 0;
    text-align: left;
    width: 100%;
}

/* FAQ Section */
.llm-audit-wrapper .faq {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
}

.llm-audit-wrapper .faq-list {
    max-width: 1319px;
    margin: 0 auto;
}

.llm-audit-wrapper .faq-item {
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
}

.llm-audit-wrapper .faq-item.active {
    background-color: #fff;
    border: 1px solid #8012ff;
}

.llm-audit-wrapper .faq-item:not(.active) {
    background-color: #fbf7ff;
}

.llm-audit-wrapper .faq-question {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.llm-audit-wrapper .faq-question h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    flex: 1;
}

.llm-audit-wrapper .faq-toggle {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.llm-audit-wrapper .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 40px;
}

.llm-audit-wrapper .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 40px 30px;
}

.llm-audit-wrapper .faq-answer p {
    font-size: 18px;
    font-weight: 500;
    color: #4e4e4e;
    line-height: 1.6;
}

/* Popup Modal */
.llm-audit-wrapper .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.llm-audit-wrapper .popup-overlay.active {
    display: flex;
}

.llm-audit-wrapper .popup-modal {
    background-color: #fff;
    border-radius: 25px;
    padding: 30px 25px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.llm-audit-wrapper .popup-modal::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.llm-audit-wrapper .popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.llm-audit-wrapper .popup-close:hover {
    color: #000;
}

/* Progress Section */
.llm-audit-wrapper .popup-progress-section {
    display: block;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-right: 5px;
}

.llm-audit-wrapper .popup-progress-section::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.llm-audit-wrapper .progress-header {
    margin-bottom: 15px;
}

.llm-audit-wrapper .progress-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.llm-audit-wrapper .progress-bar-container {
    width: 100%;
    height: 8px;
    background-color: rgba(128, 18, 255, 0.2);
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.llm-audit-wrapper .progress-bar {
    height: 100%;
    background-color: #8012ff;
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

.llm-audit-wrapper .popup-title-audit {
    font-size: 24px;
    font-weight: 600;
    color: #8012ff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.llm-audit-wrapper .popup-description-audit {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.6;
}

.llm-audit-wrapper .popup-features-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.llm-audit-wrapper .popup-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #000;
    line-height: 1.5;
}

.llm-audit-wrapper .popup-features-list .checkmark {
    color: #10b981;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.llm-audit-wrapper .popup-free-account-btn {
    width: 100%;
    background-color: #8012ff;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.llm-audit-wrapper .popup-free-account-btn:hover {
    background-color: #6a0fd9;
}

/* Form Section */
.llm-audit-wrapper .popup-form-section {
    display: none;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-right: 5px;
}

.llm-audit-wrapper .popup-form-section::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.llm-audit-wrapper .popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
    display: block;
}

.llm-audit-wrapper .popup-description {
    font-size: 14px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

.llm-audit-wrapper .popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    align-items: center;
}

.llm-audit-wrapper .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.llm-audit-wrapper .form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    width: 30em;
    max-width: 100%;
    text-align: left;
}

.llm-audit-wrapper .form-group input,
.llm-audit-wrapper .form-group select,
.llm-audit-wrapper .form-group textarea {
    padding: 18px 24px;
    border: 2px solid #e6e5e5;
    border-radius: 12px;
    font-size: 17px;
    font-family: "Quicksand", Sans-serif;
    transition: all 0.3s;
    width: 30em;
    max-width: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

.llm-audit-wrapper .form-group input:focus,
.llm-audit-wrapper .form-group select:focus,
.llm-audit-wrapper .form-group textarea:focus {
    outline: none;
    border-color: #8012ff;
    box-shadow: 0 0 0 3px rgba(128, 18, 255, 0.1);
}

.llm-audit-wrapper .form-group input::placeholder,
.llm-audit-wrapper .form-group textarea::placeholder {
    color: #807c7c;
    opacity: 0.7;
}

.llm-audit-wrapper .form-error-message {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    display: block;
    text-align: left;
    width: 30em;
    max-width: 100%;
}

.llm-audit-wrapper .popup-submit-btn {
    background: linear-gradient(135deg, #8012ff 0%, #6a0fd9 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(128, 18, 255, 0.3);
    width: 30em;
    max-width: 100%;
}

.llm-audit-wrapper .popup-submit-btn:hover {
    background: linear-gradient(135deg, #6a0fd9 0%, #5a0bc9 100%);
    box-shadow: 0 6px 20px rgba(128, 18, 255, 0.4);
    transform: translateY(-2px);
}

.llm-audit-wrapper .popup-submit-btn:hover {
    background-color: #6a0fd9;
}
.llm-audit-wrapper .disclaimer {
    margin-top: 20px;
    width: 100%;
}

.llm-audit-wrapper .disclaimer p {
    margin-left: 2em;
}

.llm-audit-wrapper .disclaimer .form-error-message {
    margin-left: 2em;
    margin-top: 8px;
    text-align: left;
    width: auto;
    max-width: 100%;
}

.llm-audit-wrapper .disclaimer .form-error-message {
    margin-left: 2em;
    margin-top: 8px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop (1400px and below) */
@media (max-width: 1400px) {
    .llm-audit-wrapper .hero-title {
        font-size: 48px;
    }
    
    .llm-audit-wrapper .hero-subtitle {
        font-size: 28px;
    }
    
    .llm-audit-wrapper .hero-description {
        font-size: 20px;
    }
    
    .llm-audit-wrapper .features-grid,
    .llm-audit-wrapper .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet/iPad (1024px and below) - Keep desktop styles, minimal adjustments */
@media (max-width: 1024px) {
    .llm-audit-wrapper .hero-container {
        padding: 0 30px;
    }
    
    .llm-audit-wrapper .hero-title {
        font-size: 48px;
    }
    
    .llm-audit-wrapper .hero-subtitle {
        font-size: 28px;
    }
    
    .llm-audit-wrapper .hero-description {
        font-size: 20px;
    }
    
    .llm-audit-wrapper .hero-input-container {
        width: 70%;
    }
    
    .llm-audit-wrapper .section-title {
        font-size: 32px;
    }
    
    .llm-audit-wrapper .testimonials-subtitle {
        font-size: 32px;
        font-weight: 600;
        color: #000;
    }
    
    .llm-audit-wrapper .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .llm-audit-wrapper .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .llm-audit-wrapper .website-error-message {
        max-width: 70%;
        max-width: 600px;
        padding: 12px 18px 12px 20px;
    }
    
    .llm-audit-wrapper .website-error-close {
        width: 20px;
        height: 20px;
        font-size: 20px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .llm-audit-wrapper {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .llm-audit-wrapper .hero {
        padding: 60px 0;
    }
    
    .llm-audit-wrapper .hero-container {
        padding: 0 20px;
    }
    
    .llm-audit-wrapper .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .llm-audit-wrapper .hero-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .llm-audit-wrapper .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .llm-audit-wrapper .hero-input-container {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        height: auto;
        padding: 15px;
        border-radius: 20px;
        gap: 12px;
    }
    
    .llm-audit-wrapper .hero-input {
        width: 100%;
        font-size: 16px;
        margin-bottom: 0;
        padding: 12px 15px;
        min-height: 48px;
    }
    
    .llm-audit-wrapper .hero-country-field-wrapper {
        width: 100%;
        flex: 1 1 auto;
        max-width: 100%;
    }
    
    .llm-audit-wrapper .hero-country-select {
        width: 100%;
        flex: 1 1 auto;
    }
    
    .llm-audit-wrapper .hero-country-helper-text {
        font-size: 10px;
    }
    
    .llm-audit-wrapper .hero-audit-btn {
        width: 100%;
        font-size: 18px;
        padding: 12px 30px;
        border-radius: 20px;
    }
    
    .llm-audit-wrapper .website-error-message {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 10px 15px 10px 18px;
        font-size: 14px;
    }
    
    .llm-audit-wrapper .website-error-close {
        width: 18px;
        height: 18px;
        font-size: 18px;
    }
    
    .llm-audit-wrapper .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .llm-audit-wrapper .features {
        padding: 60px 0;
    }
    
    .llm-audit-wrapper .features-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .llm-audit-wrapper .feature-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .llm-audit-wrapper .feature-title {
        font-size: 20px;
    }
    
    .llm-audit-wrapper .feature-text {
        font-size: 16px;
    }
    
    .llm-audit-wrapper .feature-title-cta {
        font-size: 22px;
    }
    
    .llm-audit-wrapper .testimonials {
        padding: 60px 0;
    }
    
    .llm-audit-wrapper .testimonials-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .llm-audit-wrapper .testimonials-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .llm-audit-wrapper .testimonial-card {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .llm-audit-wrapper .testimonial-badge-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .llm-audit-wrapper .testimonial-quote {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .llm-audit-wrapper .testimonial-white-card {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .llm-audit-wrapper .company-badge-image {
        max-width: 100px;
    }
    
    .llm-audit-wrapper .author-avatar-img {
        width: 80px;
        height: 80px;
    }
    
    .llm-audit-wrapper .testimonial-badge-overlay {
        top: -5px;
        right: -5px;
    }
    
    .llm-audit-wrapper .author-name {
        font-size: 20px;
    }
    
    .llm-audit-wrapper .author-title {
        font-size: 18px;
    }
    
    .llm-audit-wrapper .faq {
        padding: 60px 0;
    }
    
    .llm-audit-wrapper .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .llm-audit-wrapper .testimonials-subtitle {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .llm-audit-wrapper .faq-question {
        padding: 20px;
    }
    
    .llm-audit-wrapper .faq-question h3 {
        font-size: 18px;
    }
    
    .llm-audit-wrapper .faq-answer {
        padding: 0 20px;
    }
    
    .llm-audit-wrapper .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .llm-audit-wrapper .faq-answer p {
        font-size: 16px;
    }
    
    .llm-audit-wrapper .popup-modal {
        padding: 35px 25px;
        border-radius: 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .llm-audit-wrapper .testimonial-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .llm-audit-wrapper .testimonial-badge-top-right {
        align-self: flex-end;
    }
    
    .llm-audit-wrapper .popup-title-audit {
        font-size: 20px;
    }
    
    .llm-audit-wrapper .popup-title {
        font-size: 22px;
    }
    
    .llm-audit-wrapper .popup-description {
        font-size: 14px;
    }
    
    .llm-audit-wrapper .popup-form {
        gap: 20px;
        margin-top: 20px;
    }
    
    .llm-audit-wrapper .form-group input,
    .llm-audit-wrapper .form-group select,
    .llm-audit-wrapper .form-group textarea {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 52px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .llm-audit-wrapper .form-group label {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .llm-audit-wrapper .popup-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .llm-audit-wrapper .llm-audit-container {
        padding: 0 15px;
    }
    
    .llm-audit-wrapper .client-logos {
        gap: 30px;
        margin: 30px 0 40px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .llm-audit-wrapper .hero {
        padding: 40px 0;
    }
    
    .llm-audit-wrapper .features {
        padding: 40px 0;
    }
    
    .llm-audit-wrapper .testimonials {
        padding: 40px 0;
    }
    
    .llm-audit-wrapper .faq {
        padding: 40px 0;
    }
    
    .llm-audit-wrapper .hero-title {
        font-size: 26px;
    }
    
    .llm-audit-wrapper .hero-subtitle {
        font-size: 18px;
    }
    
    .llm-audit-wrapper .hero-description {
        font-size: 14px;
    }
    
    .llm-audit-wrapper .hero-input-container {
        padding: 12px;
        border-radius: 18px;
        gap: 10px;
    }
    
    .llm-audit-wrapper .hero-input {
        font-size: 15px;
        padding: 10px 12px;
        min-height: 44px;
    }
    
    .llm-audit-wrapper .hero-audit-btn {
        font-size: 16px;
        padding: 10px 25px;
        border-radius: 18px;
    }
    
    .llm-audit-wrapper .section-title {
        font-size: 20px;
    }
    
    .llm-audit-wrapper .feature-card {
        padding: 20px 15px;
    }
    
    .llm-audit-wrapper .testimonial-card {
        padding: 20px 15px;
    }
    
    .llm-audit-wrapper .testimonial-badge-title {
        font-size: 18px;
    }
    
    .llm-audit-wrapper .testimonial-quote {
        font-size: 15px;
    }
    
    .llm-audit-wrapper .testimonial-white-card {
        padding: 20px 15px;
    }
    
    .llm-audit-wrapper .testimonial-author-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .llm-audit-wrapper .testimonial-badge-top-right {
        position: relative;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .llm-audit-wrapper .company-badge-image {
        max-width: 120px;
    }
    
    .llm-audit-wrapper .author-avatar-img {
        width: 60px;
        height: 60px;
    }
    
    .llm-audit-wrapper .author-name {
        font-size: 18px;
    }
    
    .llm-audit-wrapper .author-title {
        font-size: 16px;
    }
    
    .llm-audit-wrapper .company-logo-small {
        max-width: 120px;
    }
}

.user_details
{
    padding: 10px 25px 0px 25px !important;
}

.user_details .input_box
{
    margin:0px !important;
}