/* Styling System with Majestic Violet/Indigo Scheme */
:root {
    --ins-primary: #6366f1;
    --ins-secondary: #0ea5e9;
    --ins-hero-gradient: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 55%, #0ea5e9 100%);
    --adv-dark: #0f172a;
    --adv-bg: #f8fafc;
}

/* ── PREMIUM HERO & CAROUSEL STYLES ────────────────────────── */
.hero-ins {
    padding: 90px 0;
    background: var(--ins-hero-gradient);
    position: relative;
    overflow: hidden;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-subtitle-line {
    width: 32px;
    height: 2px;
    background-color: #ffffff;
    opacity: 0.8;
}

.hero-subtitle-text {
    font-size: 1.1rem;
    color: #e0e7ff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-ins h1,
.process-sec-title,
.why-sec-title {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 850;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.hero-ins p {
    font-size: 1.2rem;
    color: rgba(241, 245, 249, 0.9);
    margin-bottom: 35px;
    max-width: 650px;
    line-height: 1.6;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.hero-badge-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Slick Glassmorphic Carousel Wrapper */
.hero-carousel-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.hero-carousel-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
}

.hero-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-glass-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
}

.carousel-glass-tag {
    background: var(--ins-secondary);
    color: #0f172a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.carousel-glass-caption h4 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 800;
}

.carousel-glass-caption p {
    margin: 0;
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.4;
}

/* ── PLAYFUL MODAL CONTAINER STYLES ────────────────────────── */
.tool-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 14px;
}

.tool-tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #64748b;
    background: transparent;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tool-tab-btn.active {
    background: #ffffff;
    color: #4f46e5;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

/* Range Sliders */
.playful-slider-wrap {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.playful-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.playful-slider-header label {
    font-weight: 800;
    font-size: 0.8rem;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.playful-slider-header span {
    font-size: 1rem;
    font-weight: 800;
    color: #4f46e5;
}

.playful-range-input {
    width: 100%;
    height: 8px;
    background: #cbd5e1;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.playful-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #4f46e5;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
    transition: transform 0.1s;
}

.playful-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Live Output Gauge */
.output-gauge-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 30px;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
}

.risk-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 15px;
}

.risk-low { background-color: rgba(16, 185, 129, 0.15); color: #10b981; border: 1.5px solid #10b981; }
.risk-med { background-color: rgba(245, 158, 11, 0.15); color: #f59e0b; border: 1.5px solid #f59e0b; }
.risk-high { background-color: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1.5px solid #ef4444; }

/* Visual Meter / Progress bar */
.metric-progress-container {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.metric-progress-fill {
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, #6366f1, #0ea5e9);
    transition: width 0.4s ease;
}

/* ── BASE LAYOUT ELEMENTS ──────────────────────────────── */
.main-wrapper {
    padding: 80px 0;
    background-color: var(--adv-bg);
}

/* Asymmetric Fluid Grid of Offerings */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.ins-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ins-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--card-accent, #cbd5e1);
}

.ins-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    border-color: var(--card-accent);
}

.ins-card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background-color: var(--card-bg-light);
    color: var(--card-accent);
    font-size: 22px;
    margin-bottom: 20px;
}

.ins-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.ins-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ── TIMELINE BOLD & BROAD STEP NUMBERS ────────────────── */
.timeline-container {
    border: 2px solid #312e81;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 50px;
}

.timeline-banner-header {
    background: #312e81;
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timeline-col {
    position: relative;
    padding: 30px 25px;
}

@media (min-width: 768px) {
    .timeline-col:not(:last-child) {
        border-right: 1.5px solid #e2e8f0;
    }
}
@media (max-width: 767px) {
    .timeline-col:not(:last-child) {
        border-bottom: 1.5px dashed #e2e8f0;
        padding-bottom: 25px;
    }
}

/* Broad typographic numbers style */
.timeline-num-broad {
    font-size: 4rem;
    font-weight: 950;
    line-height: 0.9;
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
    letter-spacing: -3px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.timeline-title {
    color: #1e1b4b;
    font-weight: 850;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 48px;
}

.timeline-btn-action {
    width: 100%;
    background-color: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 10px;
    padding: 10px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.timeline-btn-action:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

/* Explorer Fluid Icons Grid */
.exploration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.explore-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border-color: var(--ins-primary);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

.explore-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.explore-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

/* FAQ Collapsible Item */
.faq-container {
    margin-top: 30px;
    margin-bottom: 50px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question i {
    transition: transform 0.3s;
    color: #64748b;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--ins-primary);
}

/* ── MODAL CONVERSION FORM ────────────────────────── */
#consultationModal .advisory-form-card {
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
    top: 0;
    background: transparent;
}

.advisory-form-card h4 {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.advisory-form-card p.subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.form-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    display: block;
    color: #475569;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-custom {
    width: 100% !important;
    border: 1.5px solid #cbd5e1 !important;
    background-color: #f8fafc !important;
    color: #0f172a !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    outline: none !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.form-control-custom:focus {
    border-color: var(--ins-primary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 300, 0.1) !important;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 5px;
}

.selection-tile {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 700;
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    user-select: none;
}

.selection-tile-icon {
    font-size: 16px;
    color: #64748b;
}

.selection-active {
    background: #ffffff;
    border-color: var(--ins-primary);
    color: #4f46e5;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.08), 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.selection-active .selection-tile-icon {
    color: var(--ins-primary);
    transform: scale(1.1);
}

.conditional-box {
    display: none;
    animation: slideDownFade 0.35s ease;
    margin-top: 16px;
    border-left: 3.5px solid var(--ins-primary);
    padding-left: 14px;
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-submit-advisory {
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    margin-top: 10px;
}

.btn-submit-advisory:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.btn-submit-advisory:disabled {
    background: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.disclosure-banner {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-left: 5px solid #dc2626;
    border-radius: 12px;
    padding: 24px;
    margin-top: 60px;
}

.disclosure-banner h5 {
    color: #991b1b;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclosure-banner p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ── PROCESS SECTION STYLING ───────────────────────────────── */
.process-interactive-section {
    padding: 90px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-badge-label {
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.process-sec-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.process-sec-subtitle {
    color: #64748b;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Steps Layout & Progress Line Grid */
.process-steps-container {
    position: relative;
    margin-top: 50px;
    padding: 20px 0;
}

/* Connection Line Display Configuration */
.process-progress-line-bg {
    position: absolute;
    top: 45%;
    left: 8%;
    right: 8%;
    height: 4px;
    background-color: #f1f5f9;
    z-index: 1;
    transform: translateY(-50%);
    display: none;
}

.process-progress-line-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #4f46e5 0%, #0284c7 33%, #16a34a 66%, #e11d48 100%);
    transform: scaleX(0);
    transform-origin: left;
    animation: fillPathLine 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fillPathLine {
    to { transform: scaleX(1); }
}

/* Process Card Aesthetics */
.process-step-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Numeric displays */
.process-step-num {
    font-size: 3.5rem;
    font-weight: 950;
    line-height: 1;
    color: var(--step-accent);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: system-ui, sans-serif;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background-color: var(--step-accent-bg);
    color: var(--step-accent);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-icon-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid var(--step-accent);
    opacity: 0;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 850;
    color: #0f172a;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.process-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 24px;
}

.process-card-footer {
    font-size: 0.78rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.process-active-indicator {
    width: 6px;
    height: 6px;
    background-color: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s;
}

/* Hover States for Process Cards */
.process-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--step-accent);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.process-step-card:hover .process-step-num {
    transform: scale(1.1);
    opacity: 0.25;
}

.process-step-card:hover .process-icon-wrap {
    transform: translateY(-4px);
}

.process-step-card:hover .process-icon-wrap::after {
    opacity: 0.4;
    transform: scale(1.15);
}

.process-step-card:hover .process-active-indicator {
    background-color: var(--step-accent);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--step-accent);
}

.process-step-card:hover .process-card-footer {
    color: #475569;
}

/* ── WHY CHOOSE SECTION STYLING ──────────────────────────── */
.why-choose-section {
    padding: 90px 0;
    background-color: #f8fafc;
    position: relative;
}

.why-badge-label {
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.why-sec-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.why-sec-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Photographic Wrapper */
.why-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-image-wrapper:hover .why-img {
    transform: scale(1.03);
}

/* Glassmorphic image overlay */
.why-image-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.why-overlay-icon {
    width: 36px;
    height: 36px;
    background-color: #4f46e5;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Feature Fluid Grid & Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Soft glowing check circle */
.why-check-circle {
    width: 36px;
    height: 36px;
    background-color: #ecfdf5;
    border: 1.5px solid #10b981;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.why-card-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.why-card-content p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Hover States for Why Choose Cards */
.why-card:hover {
    transform: translateY(-4px);
    border-color: #10b981;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.05);
}

.why-card:hover .why-check-circle {
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* ── RESPONSIVE MEDIA BREAKPOINTS ────────────────────────── */
@media (min-width: 1200px) {
    .process-progress-line-bg {
        display: block;
    }
}

@media (max-width: 1199px) {
    .process-step-card {
        padding: 25px 20px;
    }
}

@media (max-width: 991px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-subtitle-container {
        justify-content: center;
    }
    .hero-badge-row {
        justify-content: center;
    }
    .main-wrapper {
        padding: 50px 0;
    }
    .process-interactive-section,
    .why-choose-section {
        padding: 60px 0;
    }
    .why-image-wrapper {
        margin-bottom: 30px;
    }
    .hero-carousel-item {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-ins h1 {
        font-size: 1.9rem;
    }
    .why-sec-title {
        font-size: 1.8rem;
    }
    .why-image-wrapper {
        height: 220px;
    }
    .why-image-overlay {
        padding: 12px 15px;
    }
    .tool-widget-card {
        padding: 20px 15px;
    }
    .output-gauge-card {
        min-height: auto;
        padding: 20px;
    }
}

/* Demo Site Notice Banner styling */
#demo-notice-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 5px solid #f59e0b; /* Amber alert color */
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3s ease;
    max-width: 90%;
    width: 480px;
}

.demo-notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.demo-notice-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.demo-notice-text i {
    color: #f59e0b;
    margin-right: 8px;
}

.demo-notice-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0;
}

.demo-notice-btn:hover {
    color: #ffffff;
}