* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --neutral-bg: #f9fafb;
    --neutral-border: #e5e7eb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: var(--text-primary);
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.logo-icon-nav {
    font-size: 28px;
    width: 32px;
    height: 32px;
}

.logo-text-nav {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
        visibility: visible;
        padding: 20px;
    }

    .nav-links a {
        padding: 12px 16px;
        color: white;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .logo-text-nav {
        display: inline;
    }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    animation: slideDown 0.6s ease-out;
    border-radius: 12px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.logo-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
}

.header .highlight {
    color: #fbbf24;
}

.tagline {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 8px;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease-out;
}

/* Search Section */
.search-section {
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    gap: 12px;
}

.domain-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--neutral-border);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.domain-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.domain-input::placeholder {
    color: var(--text-light);
}

.analyze-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.analyze-btn:active {
    transform: translateY(0);
}

.analyze-btn.loading {
    opacity: 0.8;
    pointer-events: none;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.analyze-btn.loading .btn-loader {
    display: block;
}

.analyze-btn.loading .btn-text {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Message */
.error-message {
    padding: 16px 20px;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Results Section */
.results-section {
    animation: slideUp 0.4s ease-out;
}

.results-container {
    background: white;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--neutral-border);
}

.result-domain {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.recommendation-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recommendation-badge.buy {
    background-color: #dcfce7;
    color: #166534;
}

.recommendation-badge.hold {
    background-color: #fef3c7;
    color: #92400e;
}

.recommendation-badge.pass {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Full-width Estimated Price Card */
.metric-card-full {
    padding: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.6s ease-out;
}

.metric-card-full::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.metric-card-full .metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.metric-card-full .metric-value {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.metric-card {
    padding: 24px;
    background: var(--neutral-bg);
    border-radius: 12px;
    border: 1px solid var(--neutral-border);
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.metric-unit {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.metric-value.demand {
    font-size: 18px;
    padding: 8px 12px;
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 8px;
}

.metric-value.price {
    color: #ffffff !important;
}

.metric-value.recommendation {
    font-size: 18px;
    padding: 8px 12px;
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* Factors Section */
.factors-section {
    margin-bottom: 30px;
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--neutral-border);
    transition: all 0.3s ease;
}

.factors-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-right: 12px;
}

.factors-list {
    list-style: none;
    padding: 0;
}

.factors-list li {
    padding: 14px 16px;
    margin-bottom: 10px;
    padding-left: 40px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    background: var(--neutral-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.factors-list li:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    color: var(--text-primary);
    transform: translateX(4px);
}

.factors-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

/* Explanation Section */
.explanation-section {
    padding: 24px;
    background: var(--neutral-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.explanation-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border: 1px solid var(--neutral-border);
    border-radius: 12px;
    padding: 24px;
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.info-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Loading Skeleton */
.loading-section {
    animation: fadeIn 0.3s ease-out;
}

.skeleton-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-header {
    height: 40px;
    width: 40%;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skeleton-card {
    height: 140px;
}

.skeleton-text {
    height: 20px;
    width: 100%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .main-content {
        padding: 24px;
    }

    .search-container {
        flex-direction: column;
    }

    .analyze-btn {
        width: 100%;
        justify-content: center;
    }

    .result-domain {
        font-size: 24px;
    }

    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .metric-card-full {
        padding: 24px 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .metric-card-full .metric-value {
        font-size: 40px;
        text-align: center;
        width: 100%;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 16px;
    color: #718096;
    font-weight: 500;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    background: white;
    padding: 32px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 700;
}

.step-card p {
    color: #718096;
    line-height: 1.5;
    font-size: 13px;
    margin: 0;
}

.step-connector {
    display: none;
}

/* About Us Section */
.about-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    border-top: 1px solid #e2e8f0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-intro {
    font-size: 15px;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-text p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.about-icon-wrapper {
    position: relative;
    z-index: 1;
}

.about-icon {
    font-size: 120px;
    animation: float 4s ease-in-out infinite;
}

.features-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 4px solid #6366f1;
}

.feature-item:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.12);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 16px;
}

.feature-item strong {
    display: block;
    color: #1a202c;
    font-size: 14px;
    margin-bottom: 2px;
}

.feature-item p {
    color: #718096;
    font-size: 12px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-grid {
    display: grid;
    gap: 16px;
}

.contact-card {
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.contact-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #1a202c;
    font-weight: 700;
}

.contact-card p {
    color: #718096;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.contact-card a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ec4899;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cbd5e1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.contact-form .btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35);
}

/* Enhanced Footer */
.footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 60px 20px 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2d3748;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6366f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #718096;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 15px;
    }

    .how-it-works-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .about-icon {
        font-size: 80px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }

    .header h1 {
        font-size: 28px;
    }

    .main-content {
        padding: 16px;
        border-radius: 16px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .metric-card {
        padding: 16px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        width: 100%;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    position: relative;
    margin-top: 40px;
}

.how-it-works-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a202c;
}

.step-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 14px;
}

/* About Us Section */
.about-section {
    padding: 20px 20px;
    background: white;
    position: relative;
}

.about-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    padding: 12px 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list strong {
    color: #6366f1;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border-radius: 16px;
}

.about-icon {
    font-size: 120px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
    position: relative;
}

.contact-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a202c;
}

.contact-card p {
    color: #718096;
    font-size: 14px;
}

.contact-card a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ec4899;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    padding: 15px 30px;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #a0aec0;
    padding: 60px 20px 20px;
    margin-top: 60px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(135deg, #6366f1 0%, #ec4899 100%) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2d3748;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 8px;
}

.footer-description {
    font-size: 13px !important;
    margin-top: 12px;
    color: #a0aec0 !important;
    line-height: 1.7 !important;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: #6366f1;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #718096;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 12px;
    }

    .logo-text-nav {
        display: inline;
        font-size: 14px;
    }

    .how-it-works-section {
        padding: 60px 15px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    @media (max-width: 640px) {
        .steps-grid {
            grid-template-columns: 1fr;
        }
    }

    .step-card {
        padding: 32px 20px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .step-icon {
        font-size: 40px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section h2 {
        font-size: 36px;
    }

    .about-image {
        height: 300px;
        border-radius: 16px;
    }

    .about-icon {
        font-size: 100px;
    }

    .features-list {
        margin-top: 24px;
    }

    .feature-item {
        padding: 16px;
        gap: 12px;
    }

    .contact-header h2 {
        font-size: 36px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 32px 20px;
        gap: 16px;
    }

    .contact-card {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 20px 20px 20px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 44px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--neutral-border);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--neutral-bg);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    font-weight: 600;
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    background: var(--neutral-bg);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Enhanced About Section */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 44px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid var(--neutral-border);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.feature-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 12px;
    opacity: 0.5;
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* About Section Reorganized */
.about-intro-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    padding: 30px 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-box p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
}

.about-mission-section {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission-section > h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.about-mission {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
    border: 1px solid var(--neutral-border);
}

.mission-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.mission-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.about-features-section {
    margin-bottom: 60px;
}

.about-features-section > h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.about-why-choose-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 16px;
    margin-bottom: 60px;
}

.about-why-choose-section > h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.about-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 28px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.benefit-item:hover {
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.benefit-number {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.benefit-item strong {
    color: var(--text-primary);
    font-size: 17px;
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-intro-box {
        padding: 24px 20px;
        margin-bottom: 40px;
    }

    .about-intro-box p {
        font-size: 16px;
    }

    .about-mission-section > h3,
    .about-features-section > h3,
    .about-why-choose-section > h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-mission {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .mission-icon {
        font-size: 50px;
    }

    .about-why-choose-section {
        padding: 40px 20px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--success-color);
    }

    .benefit-item:hover {
        transform: translateY(-4px);
    }
}

/* Enhanced How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(236, 72, 153, 0.02));
}

.how-it-works-section .section-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    /* ensure grid items stretch to equal height */
    grid-auto-rows: 1fr;
    position: relative;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--neutral-border);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    /* make each card a flex column so content can be spaced and buttons stick to bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    margin-top: 8px;
}

.step-card h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-detail {
    font-size: 13px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    /* ensure the action (step-detail) sits at the bottom when card stretches */
    margin-top: 16px;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .logo-text-nav {
        display: block;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .step-connector {
        display: block;
        position: absolute;
        top: 60px;
        height: 2px;
        width: 20px;
        background: linear-gradient(90deg, transparent, #6366f1, transparent);
        left: 100%;
        margin-left: -10px;
    }

    .step-card {
        position: relative;
    }

    .step-card:nth-child(1),
    .step-card:nth-child(3),
    .step-card:nth-child(5),
    .step-card:nth-child(7) {
        margin: 0;
    }
}

/* What You Get Section */
.what-you-get {
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    border: 2px solid var(--neutral-border);
    margin-top: 60px;
}

.what-you-get h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.result-item {
    padding: 30px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.result-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

.result-item h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.result-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .what-you-get {
        padding: 40px 24px;
    }

    .what-you-get h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .result-item {
        padding: 24px 20px;
    }

    .result-icon {
        font-size: 36px;
    }

    .result-item h4 {
        font-size: 16px;
    }
}

/* Legal Sections - Privacy Policy & Terms of Service */
.legal-section {
    padding: 80px 20px;
    background: white;
    border-top: 1px solid var(--neutral-border);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section h2 {
    font-size: 44px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-section-content h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    border-left: 4px solid var(--primary-color);
    padding-left: 16px;
}

.legal-section-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 15px;
}

.legal-section-content ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-section-content ul li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

/* Back to Home Button */
.back-to-home-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.legal-section-content strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 60px 20px;
    }

    .legal-section h2 {
        font-size: 32px;
    }

    .legal-section-content h3 {
        font-size: 18px;
        margin-top: 24px;
    }

    .legal-section-content p,
    .legal-section-content ul li {
        font-size: 14px;
    }
}

/* Testimonials Scrolling Ticker Section */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.testimonials-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonials-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-header .section-subtitle {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.testimonials-header .section-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Ticker Wrapper */
.testimonials-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.testimonials-ticker {
    display: flex;
    gap: 20px;
    padding: 20px;
    animation: scroll-left 60s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-ticker:hover {
    animation-play-state: paused;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: #6366f1;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
}

.testimonial-domain {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-content {
    text-align: left;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.price-row:last-of-type {
    border-bottom: 2px solid #6366f1;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.accuracy-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 14px;
    text-align: center;
    width: 100%;
}

.testimonials-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 280px;
        padding: 18px;
    }

    .testimonial-domain {
        font-size: 18px;
    }

    .price-value {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 16px;
    }

    .testimonials-header h2 {
        font-size: 36px;
    }

    .testimonials-header .section-subtitle {
        font-size: 18px;
    }

    .testimonials-header .section-description {
        font-size: 14px;
    }

    .testimonial-card {
        flex: 0 0 260px;
        padding: 16px;
    }

    .testimonial-domain {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .price-label {
        font-size: 12px;
    }

    .price-value {
        font-size: 14px;
    }

    .accuracy-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 12px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonials-header .section-subtitle {
        font-size: 16px;
    }

    .testimonial-card {
        flex: 0 0 240px;
        padding: 14px;
        min-height: auto;
    }

    .testimonial-domain {
        font-size: 14px;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-bottom: 8px;
    }

    .price-label {
        font-size: 11px;
    }

    .price-value {
        font-size: 12px;
    }
}
