/* ===== SCALEASEAN - PROFESSIONAL STYLE ===== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #1E3A8A;
    --blue-dark: #1e40af;
    --green-accent: #10B981;
    --green-dark: #059669;
    --gray-dark: #1F2937;
    --gray-medium: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.875rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 34px;
}

@media (min-width: 768px) {
    .logo img {
        height: 40px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--blue-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    padding: 0.625rem 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    display: block;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--blue-primary);
}

.cta-button {
    background: var(--blue-primary);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
    display: inline-block;
    font-weight: 600;
}

.cta-button:hover {
    background: var(--blue-dark);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
        align-items: center;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        display: inline;
    }

    .cta-button {
        margin-top: 0;
        padding: 0.5rem 1.25rem;
    }
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #1e40af 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--green-accent);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 3rem;
        padding: 0;
    }
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
    display: inline-block;
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--green-accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-primary-large {
    background: var(--green-accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-primary-large:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* Sections */
.section {
    padding: 3.5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 4.5rem 0;
    }
}

.section-light {
    background: var(--white);
}

.section-alt {
    background: var(--gray-light);
}

.section-dark {
    background: var(--gray-dark);
    color: var(--white);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--blue-primary);
    letter-spacing: -0.02em;
}

.section-dark .section-title {
    color: var(--white);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-intro {
    font-size: 1rem;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 2.5rem;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.section-dark .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
    .section-intro {
        font-size: 1.0625rem;
        margin-bottom: 3rem;
    }
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.value-card {
    background: var(--gray-light);
    padding: 2rem 1.75rem;
    border-radius: 6px;
    border-left: 3px solid var(--blue-primary);
}

.value-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
    letter-spacing: -0.01em;
}

.value-card p {
    color: var(--gray-medium);
    line-height: 1.65;
    font-size: 0.9375rem;
}

/* Expertise Section */
.expertise-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .expertise-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.expertise-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .expertise-text h2 {
        font-size: 2.25rem;
    }
}

.expertise-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .expertise-text p {
        font-size: 1.0625rem;
    }
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 1.25rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.approach-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--blue-primary);
}

.approach-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.approach-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.approach-card p {
    color: var(--gray-medium);
    line-height: 1.65;
    font-size: 0.875rem;
}

/* Regional Grid */
.regional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .regional-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.regional-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.regional-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.regional-card p {
    color: var(--gray-medium);
    line-height: 1.65;
    font-size: 0.875rem;
}

.asean-note {
    background: var(--blue-primary);
    color: var(--white);
    padding: 1.75rem;
    border-radius: 6px;
    margin-top: 2.5rem;
    text-align: center;
}

.asean-note p {
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
}

/* Credentials Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.credential-item {
    background: var(--gray-light);
    padding: 1.75rem 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.credential-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.credential-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.credential-detail {
    font-size: 0.8125rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 3.5rem 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4.5rem 0;
    }
}

.cta-section h2 {
    color: var(--white);
    font-size: 1.875rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .cta-section p {
        font-size: 1.0625rem;
        margin-bottom: 2.5rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 0 1rem;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        padding: 0;
    }
}

/*Solution*/

.value-card p.solution-text {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.65;
    margin-top: 0.75rem;
}


/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 2.5rem 0 1.5rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 3.5rem 0 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-col h4 {
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* Findings on Index */

.bullet-findings {
    max-width: 680px;
    margin: 0 auto;
}

.findings-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.findings-list li {
    padding: 0.85rem 1.2rem;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border-left: 4px solid #2ecc71;
    border-radius: 6px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.findings-close {
    color: #555;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.findings-cta {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #1a1a2e;
}

/* =============================================
   SCALEASEAN — VISUAL SECTIONS ADD-ONS
   Append these to the bottom of style.css
   Variables already defined in :root so we
   reference them here using the existing names.
   Note: your existing :root uses --blue-primary,
   --green-accent, --green-dark, --gray-dark,
   --gray-medium, --gray-light, --white.
   New vars added below for the two extra colours
   the visual sections need.
============================================= */

:root {
    --mid-gray: #e9ecef;
    /* map country fill  */
    --green-pale: #e8faf1;
    /* icon card bg      */
    --green-pale2: #d5f5e3;
    /* icon card bg end  */
}

/* ── Shared eyebrow label ── */
.eyebrow {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-accent);
    margin-bottom: 0.5rem;
}


/* =============================================
   SECTION 1 — Finding Cards
   Replaces .findings-list bullet approach
============================================= */
.findings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

@media (min-width: 640px) {
    .findings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .findings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.finding-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    border-top: 4px solid var(--green-accent);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.finding-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.finding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}

.finding-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-pale), var(--green-pale2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.finding-icon svg {
    width: 24px;
    height: 24px;
}

.finding-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.finding-card p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Overrides the existing .findings-close for the new centred layout */
.findings-close {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.findings-close strong {
    color: var(--gray-dark);
    font-size: 1rem;
}


/* =============================================
   SECTION 2 — ASEAN Map
============================================= */
.map-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.map-svg-container {
    flex: 1 1 320px;
    min-width: 260px;
    position: relative;
}

.map-legend {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-legend-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.legend-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--green-accent);
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.legend-dot.dim {
    background: #adb5bd;
    box-shadow: 0 0 0 4px rgba(173, 181, 189, 0.18);
}

.legend-label {
    font-weight: 700;
    color: var(--gray-dark);
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.legend-desc {
    font-size: 0.85rem;
    color: var(--gray-medium);
    line-height: 1.5;
    margin-top: 0.15rem;
}

/* SVG country fills */
.country {
    fill: var(--mid-gray);
    stroke: var(--white);
    stroke-width: 1.5;
    transition: fill 0.2s;
}

.country.active {
    fill: var(--green-accent);
    cursor: pointer;
}

.country.active:hover {
    fill: var(--green-dark);
}

.country.secondary {
    fill: #b8e8cc;
    cursor: pointer;
}

.country.secondary:hover {
    fill: #8ddaae;
}

.map-pin {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.pin-pulse {
    animation: pin-pulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pin-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.5);
    }
}

.map-tooltip {
    position: absolute;
    background: var(--gray-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
    white-space: nowrap;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--gray-dark);
}

@media (max-width: 767px) {
    .map-wrapper {
        flex-direction: column;
    }
}


/* =============================================
   SECTION 3 — Process Flow
============================================= */
.process-flow {
    display: flex;
    align-items: stretch;
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step {
    flex: 1;
    padding: 2.25rem 1.5rem 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.25s;
}

.process-step:last-child {
    border-right: none;
}

.process-step:hover {
    background: rgba(16, 185, 129, 0.08);
}

/* Arrow between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 13px solid rgba(16, 185, 129, 0.45);
    z-index: 2;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(16, 185, 129, 0.2);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.step-icon {
    width: 42px;
    height: 42px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
}

.step-icon svg {
    width: 20px;
    height: 20px;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

.step-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .process-flow {
        flex-direction: column;
        overflow: visible;
    }

    .process-step {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .process-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -1px;
        transform: translateX(50%);
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-top: 13px solid rgba(16, 185, 129, 0.45);
        border-bottom: none;
    }
}

/* Two-column value card layout */
.value-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .value-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}