/* ==========================================================================
   dissolveX - Dedicated About Us Design System
   Radiant Mint SaaS Aesthetic matching Main Landing Page & Privacy Policy
   ========================================================================== */

:root {
    --about-emerald: #10b981;
    --about-emerald-dark: #059669;
    --about-emerald-deep: #0b2b20;
    --about-emerald-light: #ecfdf5;
    --about-bg-canvas: #eaf6f0;
    --about-bg-mint: #f0fdf4;
    --about-bg-white: #ffffff;
    --about-border: rgba(16, 185, 129, 0.22);
    --about-border-light: rgba(16, 185, 129, 0.12);
    --about-text-dark: #0f172a;
    --about-text-body: #334155;
    --about-text-muted: #64748b;
    --font-sans: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --about-shadow-sm: 0 4px 14px rgba(16, 185, 129, 0.06);
    --about-shadow-md: 0 12px 32px -6px rgba(11, 43, 32, 0.08);
    --about-shadow-lg: 0 24px 60px -12px rgba(16, 185, 129, 0.16);
}

/* Page Base */
body.about-page {
    font-family: var(--font-sans);
    background-color: var(--about-bg-canvas);
    background-image: radial-gradient(circle at 50% 20%, rgba(16, 185, 129, 0.20) 0%, rgba(230, 247, 240, 0.75) 45%, #eaf6f0 80%);
    color: var(--about-text-body);
    line-height: 1.6;
    overflow-x: clip;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #0b2b20 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 4px;
}

/* 1. Progress Bar */
.about-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    background: transparent;
}

.about-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #059669, #34d399);
    will-change: transform;
}

/* 2. Hero Section: Radiant Mint SaaS Canvas */
.about-hero-section {
    position: relative;
    padding: 135px 0 60px 0;
    text-align: center;
    overflow: hidden;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.about-hero-glow.glow-top {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.24) 0%, transparent 70%);
    filter: blur(85px);
}

.about-hero-glow.glow-left {
    top: 25%;
    left: -12%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    filter: blur(95px);
}

.about-hero-glow.glow-right {
    top: 25%;
    right: -12%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
    filter: blur(95px);
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1040px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.about-hero-badge .badge-icon {
    font-size: 0.95rem;
}

.about-hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--about-text-dark);
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.about-hero-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--about-emerald-dark);
    margin: 0 auto 16px auto;
    letter-spacing: -0.01em;
}

.about-hero-subtitle {
    font-size: 1.05rem;
    color: var(--about-text-muted);
    margin: 0 auto 34px auto;
    max-width: 780px;
    font-weight: 500;
    line-height: 1.65;
}

.about-hero-subtitle strong {
    color: var(--about-text-dark);
}

/* 4 High-Impact Metric Cards (Crisp White SaaS Cards) */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: left;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid var(--about-border);
    border-radius: 20px;
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--about-shadow-sm);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--about-emerald);
    box-shadow: var(--about-shadow-md);
}
}

.stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-emerald { background: #ecfdf5; color: #059669; }
.icon-cyan { background: #ecfeff; color: #0891b2; }
.icon-indigo { background: #e0e7ff; color: #4f46e5; }
.icon-gold { background: #fef3c7; color: #d97706; }

.stat-num {
    font-family: var(--font-sans);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--about-emerald-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

.accent-symbol {
    color: #065f46;
    font-weight: 800;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--about-text-dark);
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--about-text-muted);
    margin-top: 2px;
}

/* 3. Main Narrative & Innovation Section */
.about-main-section {
    padding: 40px 0 85px 0;
}

.about-layout {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 65px;
}

/* Executive Narrative 2-Column Card */
.about-narrative-card {
    background: #ffffff;
    border: 1px solid var(--about-border);
    border-radius: 28px;
    padding: 44px;
    box-shadow: var(--about-shadow-md);
    position: relative;
    overflow: hidden;
}

.about-narrative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #059669, #34d399);
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.section-tag-pill {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 14px;
    border-radius: 9999px;
    margin-bottom: 14px;
}

.narrative-title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--about-text-dark);
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.narrative-lead {
    font-size: 1.02rem;
    color: var(--about-text-body);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.narrative-desc {
    font-size: 0.96rem;
    color: var(--about-text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.narrative-advantage-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0fdf4;
    border: 1.5px dashed var(--about-emerald);
    border-radius: 16px;
    padding: 16px 20px;
}

.advantage-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.advantage-text {
    font-size: 0.92rem;
    color: var(--about-text-dark);
    line-height: 1.5;
}

.advantage-text strong {
    color: #047857;
}

/* Architecture Visual Preview Card (Right Column) */
.architecture-visual-card {
    background: linear-gradient(145deg, #022c22, #064e3b);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 22px;
    padding: 26px;
    color: #ffffff;
    box-shadow: 0 20px 45px -10px rgba(2, 44, 34, 0.4);
    position: relative;
    overflow: hidden;
}

.arch-card-glow {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.35) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.arch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
}

.arch-dots {
    display: flex;
    gap: 6px;
}

.arch-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.arch-dots span:nth-child(1) { background: #ef4444; }
.arch-dots span:nth-child(2) { background: #f59e0b; }
.arch-dots span:nth-child(3) { background: #10b981; }

.arch-badge {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6ee7b7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arch-layers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arch-layer-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
.arch-layer-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(52, 211, 153, 0.5);
    transform: translateX(4px);
}
}

.layer-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.icon-emerald-layer { background: rgba(16, 185, 129, 0.25); }
.icon-cyan-layer { background: rgba(6, 182, 212, 0.25); }
.icon-indigo-layer { background: rgba(99, 102, 241, 0.25); }
.icon-gold-layer { background: rgba(245, 158, 11, 0.25); }

.layer-text {
    flex: 1;
}

.layer-text h5 {
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.layer-text p {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.layer-tag {
    font-size: 0.68rem;
    font-weight: 800;
    color: #34d399;
    background: rgba(52, 211, 153, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* 4. Tri-Engine Solution Navigator Section */
.about-ecosystem-section {
    position: relative;
}

.section-center-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 34px auto;
}

.section-title-large {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--about-text-dark);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.section-desc-text {
    font-size: 1.02rem;
    color: var(--about-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Switcher Tabs */
.engine-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.engine-tabs {
    display: inline-flex;
    background: #ffffff;
    padding: 6px;
    border-radius: 9999px;
    border: 1.5px solid var(--about-border);
    box-shadow: var(--about-shadow-sm);
    gap: 6px;
}

.engine-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 9999px;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--about-text-muted);
    cursor: pointer;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
.engine-tab-btn:hover {
    color: var(--about-text-dark);
    background: #f8fafc;
}
}

.engine-tab-btn.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Engine Panels */
.engine-panel {
    display: none;
    background: #ffffff;
    border: 1px solid var(--about-border);
    border-radius: 26px;
    padding: 40px;
    box-shadow: var(--about-shadow-md);
    animation: fadeInPanel 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.engine-panel.active {
    display: block;
}

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

.engine-panel-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.panel-badge-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-num {
    background: var(--about-emerald-deep);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.panel-category {
    font-size: 0.9rem;
    font-weight: 800;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-status-live {
    background: #ecfdf5;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.panel-headline {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--about-text-dark);
    margin: 0 0 12px 0;
    letter-spacing: -0.015em;
}

.panel-subtext {
    font-size: 1rem;
    color: var(--about-text-body);
    line-height: 1.65;
    margin: 0 0 30px 0;
    background: #f8fafc;
    border-left: 3.5px solid var(--about-emerald);
    padding: 16px 20px;
    border-radius: 0 14px 14px 0;
}

.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-tile {
    background: #ffffff;
    border: 1px solid var(--about-border-light);
    border-radius: 18px;
    padding: 22px;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (hover: hover) and (pointer: fine) {
.feature-tile:hover {
    border-color: var(--about-emerald);
    background: #f0fdf4;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
}

.tile-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.feature-tile h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--about-text-dark);
    margin: 0;
}

.feature-tile p {
    font-size: 0.88rem;
    color: var(--about-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* 5. Principles Section */
.about-principles-section {
    position: relative;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.principle-card {
    background: #ffffff;
    border: 1px solid var(--about-border);
    border-radius: 20px;
    padding: 26px 20px;
    box-shadow: var(--about-shadow-sm);
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
.principle-card:hover {
    transform: translateY(-4px);
    border-color: var(--about-emerald);
    box-shadow: var(--about-shadow-md);
}
}

.principle-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.principle-card h4 {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--about-text-dark);
    margin: 0 0 8px 0;
}

.principle-card p {
    font-size: 0.88rem;
    color: var(--about-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* 6. Corporate Governance Card */
.about-entity-section {
    position: relative;
}

.privacy-official-contact-card {
    background: radial-gradient(circle at 100% 0%, #f0fdf4 0%, #ffffff 70%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 24px;
    padding: 38px;
    box-shadow: var(--about-shadow-md);
}

.contact-header-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 18px;
}

.contact-brand-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card-sub {
    font-size: 0.78rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 6px;
}

.contact-org-type {
    background: rgba(16, 185, 129, 0.12);
    color: var(--about-emerald-dark);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 9999px;
}

.contact-card-intro {
    font-size: 0.96rem;
    color: var(--about-text-body);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-details-grid .headquarters-item {
    grid-column: 1 / -1;
}

.c-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 14px 18px;
    border-radius: 12px;
}

.c-label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--about-text-muted);
}

.c-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--about-text-dark);
}

.c-value a.text-link {
    color: #047857;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
.c-value a.text-link:hover {
    color: var(--about-emerald);
}
}

/* 7. Bottom CTA Banner with Scenic Backdrop (Exact Match with Other Landing Pages) */
.about-cta-banner-section {
    background-image: none !important;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0 120px 0;
}

.about-cta-banner-section .feat-cta-actions .feat-hero-btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
.about-cta-banner-section .feat-cta-actions .feat-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(16, 185, 129, 0.5);
}
}

.about-cta-banner-section .feat-cta-actions .feat-hero-btn-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 14px 30px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
.about-cta-banner-section .feat-cta-actions .feat-hero-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--about-emerald);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
}

/* 8. Floating Scroll to Top */

/* 9. Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .narrative-grid {
        grid-template-columns: 1fr;
    }

    .panel-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 120px 0 45px 0;
    }

    .about-narrative-card {
        padding: 26px 20px;
    }

    .engine-panel {
        padding: 24px 18px;
    }

    .panel-features-grid {
        grid-template-columns: 1fr;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .engine-tabs {
        flex-direction: column;
        border-radius: 16px;
        width: 100%;
    }

    .engine-tab-btn {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Page Scenic CTA Backdrop Image
   ========================================================================== */
.feat-cta-banner-section,
[class*="-cta-banner-section"],
.onb-cta-banner-section,
.mf-download-section {
    background-image: none !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* ==========================================================================
   Custom Rich Visual About Us CTA Showcase Banner Styles
   ========================================================================== */
.abt-cta-showcase-section {
    padding: 38px 0 60px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.abt-cta-showcase-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-cta-showcase-card {
    position: relative;
    background: linear-gradient(135deg, #f3faf6 0%, #e6f6ee 50%, #d8f1e4 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.28);
    border-radius: 28px;
    padding: 42px 44px 42px 48px;
    display: grid;
    grid-template-columns: 1.12fr 0.98fr;
    gap: 36px;
    align-items: center;
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.08), 0 4px 16px rgba(0, 0, 0, 0.03);
    overflow: visible;
}

/* Left Column */
.abt-cta-showcase-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    z-index: 2;
    text-align: left;
}

.abt-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid #c9edd9;
    border-radius: 100px;
    padding: 5px 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0d5435;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.abt-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.abt-cta-showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.18;
    color: #0b2b20;
    margin: 0;
    letter-spacing: -0.02em;
}

.abt-cta-showcase-title .serif-italic {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.75rem;
    color: #065f46;
    letter-spacing: -0.01em;
}

.abt-cta-showcase-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2d5a47;
    margin: 0;
    max-width: 500px;
}

/* Micro-features */
.abt-cta-micro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    margin-top: 4px;
}

.abt-cta-micro-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1b4d38;
}

.abt-cta-check-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Buttons */
.abt-cta-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.abt-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #065f46;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 100px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(6, 95, 70, 0.28);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.abt-cta-btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
}

.abt-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #065f46 !important;
    border: 1.5px solid #a7dcc2;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none !important;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.abt-cta-btn-secondary:hover {
    border-color: #065f46;
    transform: translateY(-2px);
}

/* Right Column: Mockup Stage */
.abt-cta-showcase-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.abt-cta-mockup-stage {
    position: relative;
    width: 485px;
    max-width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}

/* 4-Corner Floating Badges */
.abt-float-badge {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 12px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 15;
    white-space: nowrap;
}

.abt-float-badge.top-left {
    top: 2px;
    left: 10px;
}

.abt-float-badge.bottom-right {
    bottom: 2px;
    right: 10px;
}

.abt-float-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #e6f7f0;
    color: #15803d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-float-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    color: #0b2b20;
}

/* Handwritten Doodles */
.abt-doodle-note-top {
    position: absolute;
    top: 0px;
    right: -8px;
    z-index: 18;
    pointer-events: none;
}

.abt-doodle-note-bottom {
    position: absolute;
    bottom: 0px;
    left: 10px;
    z-index: 18;
    pointer-events: none;
}

.abt-doodle-text {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #166534;
    line-height: 1.05;
    transform: rotate(3deg);
    white-space: nowrap;
}

.abt-doodle-text.alt {
    color: #166534;
    transform: rotate(-3deg);
}

/* White Mockup Window */
.abt-cta-window {
    background: #ffffff;
    border: 1px solid #cce8da;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(11, 43, 32, 0.12);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.abt-cta-window-top {
    background: #f8fafc;
    border-bottom: 1px solid #eef5f1;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.abt-cta-window-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.abt-cta-window-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.abt-cta-window-dot.red { background: #ef4444; }
.abt-cta-window-dot.yellow { background: #f59e0b; }
.abt-cta-window-dot.green { background: #10b981; }

.abt-cta-window-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Summary Strip */
.abt-cta-summary-strip {
    padding: 12px 14px;
    background: #f8fafc;
    border-bottom: 1px solid #eef5f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.abt-cta-sum-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.abt-cta-sum-lbl {
    font-size: 0.62rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.abt-cta-sum-val {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0f172a;
}

.abt-cta-sum-val.pos {
    color: #059669;
}

.abt-cta-sum-status {
    padding: 3px 8px;
    background: #d1fae5;
    color: #065f46;
    font-size: 0.64rem;
    font-weight: 700;
    border-radius: 9999px;
}

/* Telemetry Details Card */
.abt-cta-tele-card {
    padding: 14px;
    background: #ffffff;
}

.abt-cta-tele-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.abt-cta-tele-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-cta-tele-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
}

.abt-cta-tele-date {
    font-size: 0.66rem;
    color: #64748b;
}

.abt-cta-breakup-grid {
    background: #f8fafc;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
}

.abt-cta-break-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #334155;
    margin-bottom: 3px;
}

.abt-cta-break-line.policy {
    margin-top: 5px;
    padding-top: 4px;
    border-top: 1px dashed #cbd5e1;
}

.abt-cta-break-line strong.pos {
    color: #047857;
}

.abt-cta-action-bar {
    display: flex;
}

.abt-cta-btn-arch {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: #065f46;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.abt-cta-btn-arch:hover {
    background: #047857;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 960px) {
    .abt-cta-showcase-card {
        grid-template-columns: 1fr;
        padding: 34px 24px;
        gap: 32px;
    }
    .abt-cta-showcase-left {
        text-align: center;
        align-items: center;
    }
    .abt-cta-showcase-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .abt-cta-micro-features {
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .abt-cta-actions-row {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    .abt-doodle-note-top,
    .abt-doodle-note-bottom {
        display: none !important;
    }
    .abt-cta-actions-row .abt-cta-btn-primary,
    .abt-cta-actions-row .abt-cta-btn-secondary {
        width: 100%;
    }
    .abt-cta-micro-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

