.elementor-2497 .elementor-element.elementor-element-adfc401{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f304abe *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937; /* Dark gray for high contrast */
    background-color: #f9fafb; /* Light background */
}

/* Page Wrapper */
.page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6b21a8 0%, #c084fc 100%); /* Purple gradient */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #f3e8ff; /* Light purple for contrast */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1f2937; /* Black for high contrast (8.59:1 on purple) */
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #fff; /* White for contrast */
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}

/* Analyzer Section */
.analyzer-section {
    padding: 60px 0;
    background-color: #fff;
}

.analyzer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937; /* Dark gray on white background */
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #4b5563;
}

.analyzer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-card, .response-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 24px;
    color: #6b21a8;
    margin-right: 10px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 8px;
}

.textarea-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #1f2937;
    background: #fff;
    transition: border-color 0.3s ease;
}

.textarea-field:focus {
    outline: none;
    border-color: #6b21a8;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.1);
}

.textarea-field {
    resize: vertical;
    min-height: 120px;
}

.generate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #6b21a8;
    color: #fff; /* White text for high contrast */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.generate-btn:hover {
    background: #7c3aed;
}

.generate-btn i {
    margin-right: 8px;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
}

.placeholder-content {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.placeholder-icon {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 20px;
}

.response-content {
    display: none;
}

.response-header {
    margin-bottom: 20px;
}

.tone-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #6b21a8;
}

.sentiment-interpretation {
    font-size: 1rem;
    color: #1f2937;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: #6b21a8; /* Darker purple for visibility */
    color: #fff; /* White text for high contrast (~10:1) */
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 20px 0;
}

.copy-btn:hover {
    background: #7c3aed; /* Lighter purple on hover */
}

.copy-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.copy-btn i {
    margin-right: 8px;
}

.tip-section {
    background: #f3f4f6;
    padding: 16px;
    border-radius: 8px;
}

.tip-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tip-title i {
    margin-right: 8px;
    color: #6b21a8;
}

.tip-content {
    font-size: 1rem;
    color: #1f2937;
}

/* Gauge Styling */
.gauge-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.gauge {
    position: relative;
    width: 150px;
    height: 75px; /* Semi-circle */
    overflow: hidden;
    background: #e5e7eb; /* Light gray base */
    border-radius: 150px 150px 0 0;
}

.gauge-fill {
    position: absolute;
    width: 100%;
    height: 200%;
    bottom: 0;
    background: #e5e7eb; /* Default gray */
    transform: rotate(0deg);
    transform-origin: bottom center;
    transition: transform 0.5s ease, background 0.5s ease;
}

.gauge-cover {
    position: absolute;
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    transform: translateY(25%);
}

.gauge-score {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
}

@media (max-width: 768px) {
    .analyzer-grid {
        grid-template-columns: 1fr;
    }
    .gauge {
        width: 120px;
        height: 60px;
    }
    .gauge-score {
        font-size: 1.5rem;
    }
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f9fafb;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 36px;
    color: #6b21a8;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 1rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: 60px 0;
    background-color: #fff;
}

.use-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.use-case-item {
    background: #f3f4f6;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 36px;
    color: #6b21a8;
    margin-bottom: 16px;
}

.use-case-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.use-case-description {
    font-size: 1rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Trust Signals Section */
.trust-section {
    padding: 60px 0;
    background-color: #f9fafb;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 36px;
    color: #6b21a8;
    margin-bottom: 16px;
}

.trust-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 1rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #6b21a8 0%, #c084fc 100%);
    color: #fff;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    color: #6b21a8;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e9d5ff;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1f2937;
    color: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
}

.toast-icon {
    font-size: 20px;
    margin-right: 10px;
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
}/* End custom CSS */