/* ==========================================================================
   About (Company Overview) � page-specific styles
   Uses tokens from css/brand-v1.6.css. Master-brand / cross-platform page,
   so accents stay Navy + Teal � never Indigo or Coral here.
   ========================================================================== */

/* ---- Hero visual: scattered projects converging into one platform
   (2026-08-17, Track B Cluster A) — grounded in this page's own first
   real section headline, "Platforms, not one-off projects": several
   small, unlabeled, dashed-border blocks (scattered one-off engagements)
   merge via an arrow into one solid platform block. Deliberately
   unlabeled/generic — unlike solutions-digital-transformation.html's
   version of the same "consolidation" idea (named tool icons merging into
   a platform), this one is about company philosophy, not specific
   software, so the two don't collide despite the shared family. Built
   with the full-size bordered frame + genuine fill from the start (see
   it-consulting.css's comment for the convention this follows). ---- */

.ahv-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.ahv-card-main {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ahv-scatter {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.ahv-block {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.25);
}

.ahv-block:nth-child(2) {
    margin-left: 1.1rem;
}

.ahv-block:nth-child(3) {
    margin-left: -0.6rem;
}

.ahv-arrow {
    font-size: 1.5rem;
    color: color-mix(in srgb, var(--da-white) 40%, transparent);
    margin: 0 1.5rem;
}

.ahv-platform {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: var(--accent, var(--da-teal-600));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: var(--da-white);
    box-shadow: 0 10px 26px rgba(8, 25, 47, 0.35);
}

.ahv-card-float {
    width: 190px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 16px 40px rgba(8, 25, 47, 0.35);
    background: rgba(15, 46, 90, 0.9);
    top: -20px;
    right: -16px;
}

.ahv-card-float i {
    color: var(--da-teal-400);
    font-size: 1.3rem;
}

/* ---- Who We Are ---- */

.about-intro {
    padding: 70px 0 20px;
    background: var(--da-white);
}

.about-section-label {
    color: var(--da-teal-600);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    text-align: justify;
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--da-navy-900);
    margin-bottom: 1.5rem;
    max-width: 700px;
    text-align: justify;
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--da-gray-500);
    line-height: 1.8;
    width: 100%;
    margin-bottom: 0;
    text-align: justify;
}

/* ---- Quick facts strip ---- */

.about-facts {
    padding: 50px 0;
    background: var(--da-white);
}

.fact-card {
    background: var(--da-gray-100);
    border: 1px solid var(--da-gray-300);
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(8, 25, 47, 0.1);
    border-color: var(--da-teal-600);
}

.fact-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--da-teal-50);
    color: var(--da-teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fact-title {
    font-weight: 700;
    color: var(--da-navy-900);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    text-align: justify;
}

.fact-text {
    font-size: 0.92rem;
    color: var(--da-gray-500);
    line-height: 1.55;
    margin-bottom: 0;
    text-align: justify;
}

/* ---- Explore the Company: nav cards to sub-pages ---- */

/* ---- Our Platforms: 3 cards (Prime = Indigo, Pulse = Coral, IT Consulting = Teal) ---- */

.about-platforms {
    padding: 60px 0 20px;
    background: var(--da-white);
}

.platform-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--da-white);
    border: 1.5px solid var(--da-gray-300);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(8, 25, 47, 0.12);
}

.platform-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--da-white);
}

.platform-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--da-navy-900);
    margin-bottom: 0.5rem;
    text-align: justify;
}

.platform-card-text {
    font-size: 1rem;
    color: var(--da-gray-500);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: justify;
}

.platform-card-link {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.platform-card:hover .platform-card-link {
    text-decoration: underline;
}

/* Prime: Indigo accent */
.platform-card-prime:hover {
    border-color: var(--da-indigo);
}

.platform-card-prime .platform-card-icon {
    background: var(--da-indigo);
}

.platform-card-prime .platform-card-link {
    color: var(--da-indigo);
}

/* Pulse: Coral accent */
.platform-card-pulse:hover {
    border-color: var(--da-coral-600);
}

.platform-card-pulse .platform-card-icon {
    background: var(--da-coral-600);
}

.platform-card-pulse .platform-card-link {
    color: var(--da-coral-600);
}

/* IT Consulting: Teal accent (master-brand default, not a platform) */
.platform-card-consulting:hover {
    border-color: var(--da-teal-600);
}

.platform-card-consulting .platform-card-icon {
    background: var(--da-teal-600);
}

.platform-card-consulting .platform-card-link {
    color: var(--da-teal-600);
}

.about-explore {
    padding: 30px 0 80px;
    background: var(--da-white);
}

.explore-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--da-gray-100);
    border: 1px solid var(--da-gray-300);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.explore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(8, 25, 47, 0.1);
    border-color: var(--da-teal-600);
}

.explore-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--da-teal-50);
    color: var(--da-teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.explore-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--da-navy-900);
    margin-bottom: 0.6rem;
    text-align: justify;
}

.explore-text {
    font-size: 0.92rem;
    color: var(--da-gray-500);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    text-align: justify;
}

.explore-link {
    color: var(--da-teal-600);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.explore-card:hover .explore-link {
    text-decoration: underline;
}

/* ---- Closing CTA band ---- */

.about-cta-band {
    background: var(--da-navy-700);
    padding: 60px 0;
}

.about-cta-content {
    text-align: center;
    color: var(--da-white);
}

.about-cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-cta-actions a.primary {
    background: var(--da-teal-600);
    color: var(--da-white);
}

.about-cta-actions a.primary:hover {
    background: var(--da-teal-400);
    transform: translateY(-2px);
}

.about-cta-actions a.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--da-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-cta-actions a.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ---- Responsive ---- */

@media (max-width: 991.98px) {
    .about-hero {
        padding: 130px 0 60px;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-visual {
        max-width: 380px;
        margin-top: 1rem;
    }

    .about-section-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-cta-title {
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .explore-card,
    .fact-card,
    .platform-card,
    .about-cta-actions a {
        transition: none;
    }

    .explore-card:hover,
    .fact-card:hover,
    .platform-card:hover,
    .about-cta-actions a:hover {
        transform: none;
    }
}