@font-face {
    font-family: 'Montserrat';
    src: url(/static/fonts/montserrat/Montserrat-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'MontserratBold';
    src: url(/static/fonts/montserrat/Montserrat-Bold.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Nunito';
    src: url(/static/fonts/Nunito/static/Nunito-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'NunitoBold';
    src: url(/static/fonts/Nunito/static/Nunito-Bold.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'NunitoSemiBold';
    src: url(/static/fonts/Nunito/static/Nunito-SemiBold.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

.montserrat {
    font-family: 'Montserrat', Arial, sans-serif;
}

.montserrat-bold {
    font-family: 'MontserratBold', 'Arial Bold', Arial, sans-serif;
}

.nunito-bold {
    font-family: 'NunitoBold', 'Arial Bold', Arial, sans-serif;
}

.nunito-semibold {
    font-family: 'NunitoSemiBold', 'Arial Bold', Arial, sans-serif;
}

.nunito {
    font-family: 'Nunito', 'Arial', Arial, sans-serif;
}

body {
    font-family: 'Nunito', 'Arial', Helvetica Neue, Helvetica, sans-serif;
    color: #344054;
    background-color: white;
}

body a {
    color: #ff6154;
}

.navbar {
    border-bottom: 3px solid #f2f4f7;
    min-height: 5em;
}

.navbar-brand, .navbar-brand a {
    color: #f27131!important;
}

.sol-button-orange, .sol-button-orange a {
    font-family: 'NunitoBold', 'Arial', Helvetica Neue, Helvetica, sans-serif;
    background-color: #ff6154 !important;
    color:#fff;
    border:none;
    font-size:1em;
    border-radius: 25px;
    padding: 0.5em 1em;
    text-decoration: none;
}

.sol-button-orange a:hover {
    color: yellow;
    cursor: pointer;
}

.sol-header-links, .sol-header-links a {
    color: #344054;
}

.sol-header-links a:hover {
    color: #ff6154!important;
}

.sol-footer a {
    color: #000;
}

.sol-footer_text_white, .sol-footer_text_white a {
    font-size: 0.98em;
    color: black;
}

.sol-footer_text, .sol-footer_text a {
    font-size: 0.98em;
    color: #8c5c96;
}

.sol-footer_text a:hover {
    color: black;
}

/* for smaller screens */
@media only screen and (max-width: 801px) {
    .sol-footer_text {
        font-size: 0.8em;
    }
}

.navbar-toggler, .navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    border:none;
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(128, 128, 128, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu styles */
@media (max-width: 991px) {
    .mobile-nav-left {
        margin-left: 0 !important;
        margin-right: auto !important;
        text-align: left;
    }
    
    .mobile-nav-left .nav-item {
        text-align: left;
    }
}

a {
    color: #fff;
    text-underline-offset: 0.2em;
}

a:hover {
    color: yellow;
}

/* main font for languages with pure latin symbols */
.html-lang-latin {
    font-family: 'Montserrat', 'Arial', Helvetica Neue, Helvetica, sans-serif;
    font-size: 16px;
}

/* main font for languages with non-lating symbols (Greek, etc) */
.html-lang-non-latin {
    font-family: Arial, sans-serif !important;
    font-size: 17px;
}

.sol-text-rose {
    color: #ff4caa;
}

/* Absolute Center Spinner */
.loading {
    display: none;
    position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;
    border: 15px solid rgba(33, 150, 243, 1.0);
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;
}

/* Animation */
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.indexing-chart-wrapper {
    max-width: 100%;
    padding: 1rem;
    position: relative;
    height: 450px;
}

@media (max-width: 992px) {
    .indexing-chart-wrapper {
        height: 350px;
        padding: 0.5rem;
    }
}

@media (max-width: 768px) {
    .indexing-chart-wrapper {
        height: 250px;
    }
}

.hero-api-button {
    border-color: #e2e8f0 !important;
    color: #64748b !important;
    padding: 0.5em 1.5em !important;
    transition: all 0.2s ease;
}

.hero-api-button:hover {
    background-color: #f8fafc !important;
    border-color: #cbd5e1 !important;
    color: #1a1a1a !important;
}

.hero-api-button:active,
.hero-api-button:focus {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #1a1a1a !important;
    box-shadow: 0 0 0 0.2rem rgba(226, 232, 240, 0.5) !important;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.step-item {
    transition: transform 0.2s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.cta-box {
    box-shadow: 0 20px 60px rgba(255, 97, 84, 0.3);
}

.ai-engines-section {
    transition: opacity 0.3s ease;
}

.ai-logo-item {
    transition: transform 0.2s ease, opacity 0.2s ease;
    padding: 0.5rem 1rem;
}

.ai-logo-item:hover {
    transform: scale(1.05);
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.1rem !important;
    }
    
    section h2 {
        font-size: 2rem !important;
    }
    
    .cta-box {
        padding: 2rem 1.5rem !important;
    }
    
    .cta-box h2 {
        font-size: 2rem !important;
    }
    
    .ai-logo-item {
        padding: 0.25rem 0.75rem;
    }
    
    .ai-logo-item span {
        font-size: 1rem !important;
    }
    
    .ai-engines-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}


/* ============================================
   SIGN IN PAGE STYLES
   ============================================ */

.signin-container {
    max-width: 500px;
    margin: 0 auto;
}

.signin-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem 2.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.signin-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.signin-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Google Sign In Button - Updated Styles */
.gsi-material-button {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-appearance: none;
    background-color: white;
    background-image: none;
    border: 1.5px solid #e2e8f0;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #1a1a1a;
    cursor: pointer;
    font-family: 'NunitoBold', arial, sans-serif;
    font-size: 16px;
    height: 54px;
    letter-spacing: 0.3px;
    outline: none;
    overflow: hidden;
    padding: 0 1.5em;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    min-width: min-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gsi-material-button:hover {
    border-color: #ff6154;
    box-shadow: 0 2px 8px rgba(255, 97, 84, 0.15);
    transform: translateY(-1px);
}

.gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
    flex-shrink: 0;
}

.gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    font-family: 'NunitoBold', arial, sans-serif;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ff6154;
    border-radius: 12px;
}

.gsi-material-button:disabled {
    cursor: default;
    background-color: #f8fafc;
    border-color: #e2e8f0;
    opacity: 0.6;
}

.gsi-material-button:disabled .gsi-material-button-contents {
    opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
    opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #ff6154;
    opacity: 10%;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

/* Modern Input Group */
.modern-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-input-label {
    display: block;
    font-family: 'NunitoBold', arial, sans-serif;
    font-size: 0.875rem;
    color: #344054;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modern-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: 'Nunito', arial, sans-serif;
    color: #1a1a1a;
    background-color: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.modern-input:focus {
    outline: none;
    border-color: #ff6154;
    box-shadow: 0 0 0 3px rgba(255, 97, 84, 0.1);
}

.modern-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.input-hint {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 97, 84, 0.3);
}

/* Center for captcha */
.g-recaptcha {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 1.5rem auto !important;
}

.g-recaptcha > div {
    margin: 0 auto !important;
}

/* Sign in form helper text and link */
.signin-helper-text {
    color: #64748b;
    font-size: 0.875rem;
}

.signin-helper-link {
    color: #ff6154;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.signin-helper-link:hover {
    color: #ff4a3d;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .signin-card {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
        border-radius: 16px;
    }

    .signin-title {
        font-size: 1.75rem;
    }

    .gsi-material-button {
        height: 50px;
        font-size: 15px;
        padding: 0 1.25em;
    }
}

/* ============================================
   DASHBOARD REGISTRATION PAGE STYLES
   ============================================ */

.registration-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 97, 84, 0.1) 0%, rgba(255, 138, 128, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.95;
    }
}

.registration-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.registration-message {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.registration-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 2rem auto 0;
}

.info-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.info-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .registration-title {
        font-size: 1.75rem;
    }

    .registration-message {
        font-size: 1rem;
    }

    .registration-info-box {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .info-text {
        font-size: 0.9rem;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle svg {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   PRICING PAGE STYLES
   ============================================ */

.pricing-hero-section {
    text-align: center;
}

.pricing-hero-title {
    color: #1a1a1a;
    line-height: 1.2;
}

.pricing-hero-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-plans-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card-featured {
    border: 2px solid #ff6154;
    box-shadow: 0 8px 30px rgba(255, 97, 84, 0.2);
}

.pricing-card-featured:hover {
    box-shadow: 0 12px 40px rgba(255, 97, 84, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6154 0%, #ff8a80 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'NunitoBold', arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-plan-name {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-description {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid #ff6154;
    background-color: #ff6154;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    margin-bottom: 2rem;
    display: inline-block;
}

.pricing-button:hover {
    background-color: #ff4a3d;
    border-color: #ff4a3d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 97, 84, 0.3);
}

.pricing-button-featured {
    background: linear-gradient(135deg, #ff6154 0%, #ff8a80 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(255, 97, 84, 0.3);
}

.pricing-button-featured:hover {
    background: linear-gradient(135deg, #ff4a3d 0%, #ff6154 100%);
    box-shadow: 0 6px 16px rgba(255, 97, 84, 0.4);
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #344054;
    font-family: 'Nunito', arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-faq-section {
    background-color: #ffffff;
}

.pricing-faq-title {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.pricing-faq-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.faq-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background: #f1f5f9;
}

.faq-question {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.25rem;
}

.faq-answer {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero-section h1 {
        font-size: 2rem !important;
    }
    
    .pricing-hero-section .lead {
        font-size: 1.1rem !important;
    }
    
    .pricing-plans-section {
        padding: 2rem 0;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .pricing-plan-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.25rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }
    
    .pricing-faq-section h2 {
        font-size: 2rem !important;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
}

/* ============================================
   PRICING COMPARISON TABLE STYLES
   ============================================ */

.pricing-comparison-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.pricing-comparison-title {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.pricing-comparison-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: #f8fafc;
}

.comparison-table th {
    padding: 1.5rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th.feature-column {
    width: 35%;
    font-weight: 600;
}

.comparison-table th.plan-column {
    width: 16.25%;
    text-align: center;
    font-weight: 600;
}

.comparison-table th.plan-column-featured {
    background: linear-gradient(135deg, rgba(255, 97, 84, 0.05) 0%, rgba(255, 138, 128, 0.05) 100%);
    color: #ff6154;
    border-bottom: 2px solid #ff6154;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem;
    font-size: 0.95rem;
    color: #344054;
}

.comparison-table td.feature-name {
    font-weight: 500;
    color: #1a1a1a;
}

.comparison-table td.plan-value {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-table td.plan-value-featured {
    background: linear-gradient(135deg, rgba(255, 97, 84, 0.03) 0%, rgba(255, 138, 128, 0.03) 100%);
}

.check-icon {
    flex-shrink: 0;
}

.dash-icon {
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 992px) {
    .pricing-comparison-title {
        font-size: 2rem;
    }
    
    .comparison-table th {
        padding: 1.25rem 1rem;
        font-size: 0.9rem;
    }
    
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .pricing-comparison-section {
        padding: 2rem 0;
    }
    
    .pricing-comparison-title {
        font-size: 1.75rem;
    }
    
    .comparison-table-wrapper {
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    .comparison-table th {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .comparison-table td {
        padding: 0.875rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .check-icon {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-hero-section {
    text-align: center;
}

.faq-hero-title {
    color: #1a1a1a;
    line-height: 1.2;
}

.faq-hero-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.faq-toc-section {
    background-color: #f8fafc;
}

.faq-toc-box {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-toc-title {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.faq-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-toc-list li {
    margin-bottom: 0.75rem;
}

.faq-toc-link {
    color: #64748b;
    text-decoration: none;
    font-family: 'Nunito', arial, sans-serif;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.faq-toc-link:hover {
    color: #ff6154;
    text-decoration: underline;
}

.faq-questions-section {
    background-color: #ffffff;
}

.faq-category {
    scroll-margin-top: 100px;
}

.faq-category-title {
    font-size: 2rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.faq-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    background: #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-right: 0.5rem;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #ff6154;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-question:hover .faq-icon {
    color: #ff6154;
}

.faq-question.collapsed .faq-icon {
    transform: rotate(-90deg);
}

.faq-question:not(.collapsed) .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    color: #64748b;
    line-height: 1.6;
    padding-top: 1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-category-title {
        font-size: 1.75rem;
    }
    
    .faq-toc-box {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2rem !important;
    }
    
    .faq-hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .faq-toc-box {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .faq-toc-title {
        font-size: 1.25rem;
    }
    
    .faq-category-title {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}
