/* @font-face rules for Inter are removed, as it's now loaded via CDN in index.html */

body {
    font-family: 'Inter', sans-serif; /* This will use Inter from Google Fonts CDN */
    background-color: #10182F;
    color: #E0E0E0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hero-bg-pattern {
    background-image: linear-gradient(rgba(16, 24, 47, 0.95), rgba(16, 24, 47, 0.95)), url('assets/images/hero-background.jpg'); /* Local background image */
    background-size: cover;
    background-position: center;
}

.hero-search-button-pink {
    background-color: #EC4899;
}
.hero-search-button-pink:hover {
    background-color: #DB2777;
}
.feature-icon-bg {
    background-color: #1E293B;
}
.footer-bg {
    background-color: #0B1120;
}
.text-gradient-purple-pink {
    background: linear-gradient(90deg, #A770EF, #CF8BF3, #FDB99B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.highlight-yellow {
    color: #FACC15;
}
.button-primary {
    background-color: #FACC15;
    color: #10182F;
    transition: background-color 0.3s ease;
}
.button-primary:hover {
    background-color: #EAB308;
}
.button-secondary {
    background-color: transparent;
    color: #FACC15;
    border: 2px solid #FACC15;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.button-secondary:hover {
    background-color: #FACC15;
    color: #10182F;
}
.section-bg-darker {
    background-color: #182240;
}
.card-bg {
    background-color: #1E293B;
    border: 1px solid #2C3A61;
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #1E293B;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    font-weight: 600;
}
.faq-item summary:hover {
    background-color: #2C3A61;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary .faq-icon {
    transition: transform 0.3s ease;
}
.faq-item[open] summary .faq-icon {
    transform: rotate(45deg);
}
.faq-item div.faq-content {
    padding: 1rem 1.5rem;
    background-color: #10182F;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-top: 1px solid #2C3A61;
}
.testimonial-card {
    background-color: #1E293B;
    border: 1px solid #2C3A61;
}
.contact-card {
     background-color: #1E293B;
     border: 1px solid #2C3A61;
}
.metrics-display-area {
    background-color: #182240;
    border: 1px solid #2C3A61;
}
.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
}
.progress-circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.progress-circle circle {
    fill: none;
    stroke-width: 8;
}
.progress-circle .bg-circle {
    stroke: rgba(255, 255, 255, 0.1);
}
.progress-circle .fg-circle-da {
    stroke: #3b82f6;
    stroke-dasharray: 282.743;
    stroke-dashoffset: 282.743;
    transition: stroke-dashoffset 0.8s ease-out;
}
.progress-circle .fg-circle-dr {
    stroke: #ec4899;
    stroke-dasharray: 282.743;
    stroke-dashoffset: 282.743;
    transition: stroke-dashoffset 0.8s ease-out;
}
.progress-circle .score-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E0E0E0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.progress-circle .score-text span.metric-label {
    font-size: 0.7rem;
    font-weight: normal;
    color: #9CA3AF;
    margin-top: 1px;
}
.metrics-container-hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, max-height 0.5s ease-out;
    pointer-events: none;
}
.metrics-container-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 700px;
    pointer-events: auto;
}
.custom-message-box {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 1000;
    display: none;
    opacity: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    text-align: center;
    font-size: 0.9rem;
    transition: opacity 0.3s ease-in-out;
}
.custom-message-box.error {
    background-color: #7f1d1d;
    color: #fecaca;
    border: 1px solid #991b1b;
}
.custom-message-box.info {
    background-color: #1e40af;
    color: #bfdbfe;
    border: 1px solid #1d4ed8;
}
.pricing-section {
    background-color: #182240;
}
.pricing-card {
    background-color: #1E293B;
    border: 1px solid #2C3A61;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(250, 204, 21, 0.2), 0 10px 10px -5px rgba(250, 204, 21, 0.1);
}
.pricing-card.popular {
    border: 2px solid #FACC15;
    position: relative;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #A770EF, #CF8BF3, #FDB99B);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.pricing-card ul li {
    border-bottom: 1px solid #2C3A61;
}
.pricing-card ul li:last-child {
    border-bottom: none;
}
.subscribe-button {
    background: linear-gradient(90deg, #A770EF, #CF8BF3, #FDB99B);
    color: white;
    font-weight: 600;
}
.subscribe-button:hover {
    opacity: 0.9;
}
.enterprise-button {
    background-color: #FACC15;
    color: #10182F;
    font-weight: 600;
}
 .enterprise-button:hover {
    background-color: #EAB308;
}
.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
    word-break: break-word;
}
@media (min-width: 640px) {
    .logo-text {
        font-size: 1.5rem;
    }
}
@media (min-width: 768px) {
    .logo-text {
        font-size: 1.75rem;
    }
}