/* AI SEO Tools Page Specific Stylesheet - .ai- prefix */

/* --- Hero Section --- */
.ai-hero {
    padding-top: 180px;
    padding-bottom: 90px;
    position: relative;
    background-color: #ffffff;
    background-image: radial-gradient(rgba(255, 85, 0, 0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    overflow: hidden;
}

.ai-hero::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 70%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.ai-hero .container {
    position: relative;
    z-index: 2;
}

.ai-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(255, 85, 0, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.ai-hero-kicker svg {
    width: 14px;
    height: 14px;
}

.ai-hero h1 {
    font-size: clamp(2.5rem, 4vw, 4.25rem);
    line-height: 1.08;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.ai-hero h1 .ai-gradient-text {
    background: linear-gradient(135deg, #FF5500 0%, #ff8c42 50%, #FF5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: ai-gradient-shift 3s ease infinite;
}

@keyframes ai-gradient-shift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.ai-hero .lead-p {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--text-grey);
    max-width: 780px;
    margin-inline: auto;
    line-height: 1.6;
}

.ai-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.ai-hero-image-wrap {
    margin-top: 56px;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(17, 20, 81, 0.12);
    border: 1px solid rgba(17, 20, 81, 0.08);
    background: #ffffff;
    padding: 10px;
    overflow: hidden;
}

.ai-hero-image-wrap img {
    border-radius: 16px;
    display: block;
    width: 100%;
}

/* --- Section Labels & Titles --- */
.ai-section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ai-section-title {
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.ai-section-subtitle {
    color: var(--text-grey);
    font-size: 1.08rem;
    line-height: 1.65;
}

/* --- Graphic Card --- */
.ai-graphic-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(17, 20, 81, 0.08);
    box-shadow: 0 20px 45px rgba(17, 20, 81, 0.05);
    padding: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ai-graphic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 55px rgba(255, 85, 0, 0.08);
}

.ai-graphic-card img {
    border-radius: 14px;
    width: 100%;
}

/* --- Checklist --- */
.ai-matters-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.ai-matters-checklist li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: transform 0.2s ease;
}

.ai-matters-checklist li:hover {
    transform: translateX(4px);
}

.ai-matters-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 85, 0, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5500' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / 10px no-repeat;
}

/* --- Tools Grid Section --- */
.ai-tools-section {
    background: var(--page-fade);
}

.ai-tool-card {
    background: #ffffff;
    border: 1px solid rgba(17, 20, 81, 0.06);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(17, 20, 81, 0.02);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.ai-tool-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,85,0,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ai-tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(17, 20, 81, 0.08);
    border-color: rgba(255, 85, 0, 0.18);
}

.ai-tool-card:hover::after {
    opacity: 1;
}

.ai-tool-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
    background: rgba(255, 85, 0, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(255, 85, 0, 0.15);
}

.ai-tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 85, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ai-tool-card:hover .ai-tool-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.ai-tool-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.ai-tool-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* --- Use Case Badge Pills --- */
.ai-usecase-badge-pill {
    background: #f8f9fa;
    border: 1px solid rgba(17, 20, 81, 0.08);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.ai-usecase-badge-pill i,
.ai-usecase-badge-pill svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.ai-usecase-badge-pill:hover {
    background: rgba(255, 85, 0, 0.08);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 15px rgba(255, 85, 0, 0.08);
}

/* --- Dark AI Capabilities Section --- */
.ai-dark-section {
    background: #080711;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ai-dark-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ai-dark-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 50, 200, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ai-dark-section .ai-section-title {
    color: #ffffff;
}

.ai-dark-section .ai-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.ai-capability-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.ai-capability-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.15);
}

.ai-capability-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 85, 0, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ai-capability-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.ai-capability-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* --- How It Works Section --- */
.ai-howitworks-section {
    background: var(--page-fade);
}

.ai-step-graphic {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(17, 20, 81, 0.08);
}

.ai-step-graphic img {
    width: 100%;
    display: block;
}

.ai-step-bullet {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.ai-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(17, 20, 81, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 0.95rem;
}

.ai-step-bullet h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.ai-step-bullet p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Benefits Section --- */
.ai-benefits-section {
    background: #ffffff;
}

.ai-benefit-row {
    border-bottom: 1px solid rgba(17, 20, 81, 0.08);
    padding-block: 28px;
    transition: all 0.3s ease;
}

.ai-benefit-row:first-of-type {
    border-top: 1px solid rgba(17, 20, 81, 0.08);
}

.ai-benefit-row:hover {
    background: var(--page-fade);
    padding-inline: 16px;
    border-radius: 12px;
    border-bottom-color: transparent;
}

.ai-benefit-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.ai-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.ai-benefit-desc {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- FAQ Section --- */
.ai-faq-section {
    background: #ffffff;
}

.ai-faq-accordion {
    max-width: 860px;
    margin-inline: auto;
}

.ai-faq-item {
    border: 1px solid rgba(17, 20, 81, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-faq-item.is-open {
    border-color: rgba(255, 85, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.06);
}

.ai-faq-header {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
    cursor: pointer;
}

.ai-faq-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.ai-faq-item.is-open .ai-faq-header h3 {
    color: var(--primary-color);
}

.ai-faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.ai-faq-item.is-open .ai-faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.ai-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-faq-content {
    padding: 0 28px 24px;
    color: var(--text-grey);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --- CTA Section --- */
.ai-cta-section {
    background: #ffffff;
}

.ai-cta-panel {
    background: radial-gradient(circle at 10% 20%, rgba(255, 85, 0, 0.15) 0%, rgba(17, 20, 81, 0.03) 90%), #080711;
    border-radius: 28px;
    padding: 60px 48px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-cta-panel h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 18px;
}

.ai-cta-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 32px;
}

.ai-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ai-cta-buttons .button-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.ai-cta-buttons .button-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Live AI Prompt Sandbox --- */
.ai-simulator-section {
    background: #ffffff;
}

.ai-simulator-panel {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(17, 20, 81, 0.08);
    box-shadow: 0 20px 45px rgba(17, 20, 81, 0.05);
    padding: 48px;
}

.ai-simulator-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ai-tool-selector {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ai-tool-selector .button {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.ai-tool-selector .button.active-tool {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.ai-action-buttons {
    display: flex;
    gap: 12px;
}

.ai-prompt-card {
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid rgba(17, 20, 81, 0.07);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 480px;
}

.ai-prompt-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ai-prompt-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-prompt-header h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
}

.ai-prompt-header small {
    font-size: 0.8rem;
    color: var(--text-grey);
}

.ai-prompt-input-area {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(17, 20, 81, 0.1);
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-prompt-input-area label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-grey);
}

.ai-prompt-input-area input,
.ai-prompt-input-area select {
    border: 1px solid rgba(17, 20, 81, 0.12);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    background: #f8f9fa;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}

.ai-prompt-input-area input:focus,
.ai-prompt-input-area select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.1);
    background: #ffffff;
}

.ai-prompt-output-area {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(17, 20, 81, 0.08);
    padding: 20px;
    flex-grow: 1;
    min-height: 160px;
}

.ai-prompt-output-area .output-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-grey);
    margin-bottom: 10px;
}

.ai-output-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ai-output-item {
    font-size: 0.88rem;
    color: var(--secondary-color);
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    border-left: 3px solid var(--primary-color);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ai-output-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-output-item strong {
    color: var(--primary-color);
}

.ai-output-placeholder {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-style: italic;
}

/* Terminal-style log panel */
.ai-logs-card {
    background: #080711;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-logs-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-logs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ai-logs-dot.red { background: #ff5f57; }
.ai-logs-dot.yellow { background: #febc2e; }
.ai-logs-dot.green { background: #28c840; }

.ai-logs-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-left: 6px;
}

.ai-logs-body {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px;
    overflow-y: auto;
    flex-grow: 1;
    max-height: 380px;
    min-height: 280px;
}

.ai-log-line {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    line-height: 1.4;
    animation: popIn 0.3s ease forwards;
}

.ai-log-line .log-time {
    color: var(--primary-color);
}

.ai-log-line.success { color: #28c840; }
.ai-log-line.warn    { color: #febc2e; }
.ai-log-line.info    { color: #17a2b8; }
.ai-log-line.error   { color: #ff5f57; }

@keyframes popIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .ai-hero { padding-top: 140px; padding-bottom: 64px; }
    .ai-cta-panel { padding: 48px 24px; }
    .ai-simulator-panel { padding: 32px; }
    .ai-simulator-controls { flex-direction: column; align-items: stretch; }
    .ai-tool-selector { justify-content: center; }
    .ai-action-buttons { justify-content: center; margin-top: 12px; }
}

@media (max-width: 767.98px) {
    .ai-hero { padding-top: 120px; padding-bottom: 48px; }
    .ai-hero-buttons { flex-direction: column; align-items: center; }
    .ai-cta-panel { padding: 36px 20px; }
    .ai-cta-buttons { flex-direction: column; align-items: center; }
}

/* --- Section Labels & Titles --- */
.kt-section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.kt-section-title {
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.kt-section-subtitle {
    color: var(--text-grey);
    font-size: 1.08rem;
    line-height: 1.65;
}

/* --- AI / Dark Section --- */
.kt-ai-section {
    background: #080711;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kt-ai-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.kt-ai-section .kt-section-title {
    color: #ffffff;
}

.kt-ai-section .kt-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.kt-ai-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.kt-ai-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.15);
}

.kt-ai-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 85, 0, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.kt-ai-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.kt-ai-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* --- Benefits Section --- */
.kt-benefits-section {
    background: #ffffff;
}

.kt-benefit-row {
    border-bottom: 1px solid rgba(17, 20, 81, 0.08);
    padding-block: 28px;
    transition: all 0.3s ease;
}

.kt-benefit-row:first-of-type {
    border-top: 1px solid rgba(17, 20, 81, 0.08);
}

.kt-benefit-row:hover {
    background: var(--page-fade);
    padding-inline: 16px;
    border-radius: 12px;
    border-bottom-color: transparent;
}

.kt-benefit-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.kt-benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.kt-benefit-desc {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- FAQ Section --- */
.kt-faq-section {
    background: #ffffff;
}

.kt-faq-accordion {
    max-width: 860px;
    margin-inline: auto;
}

.kt-faq-item {
    border: 1px solid rgba(17, 20, 81, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kt-faq-item.is-open {
    border-color: rgba(255, 85, 0, 0.25);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.06);
}

.kt-faq-header {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
    cursor: pointer;
}

.kt-faq-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.kt-faq-item.is-open .kt-faq-header h3 {
    color: var(--primary-color);
}

.kt-faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.kt-faq-item.is-open .kt-faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.kt-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.kt-faq-content {
    padding: 0 28px 24px;
    color: var(--text-grey);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* --- CTA Section --- */
.kt-cta-section {
    background: #ffffff;
}

.kt-cta-panel {
    background: radial-gradient(circle at 10% 20%, rgba(255, 85, 0, 0.15) 0%, rgba(17, 20, 81, 0.03) 90%), #080711;
    border-radius: 28px;
    padding: 60px 48px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kt-cta-panel h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 18px;
}

.kt-cta-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 32px;
}

.kt-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kt-cta-buttons .button-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
}

.kt-cta-buttons .button-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .kt-cta-panel {
        padding: 48px 24px;
    }
}

@media (max-width: 767.98px) {
    .kt-cta-panel {
        padding: 36px 20px;
    }

    .kt-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}