/* CSS styles for highlight.html */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --gold: #FBAB2A;
    --black: #1A1A1A;
    --off-white: #ffffff;
    --card-border: rgba(251, 160, 38, 0.4);
    --brand-orange: #FBAB2A;
    --orange-soft: #fff7eb;
    --text-black: #1a1a1a;
    --text-gray: #555555;
    --orb-size: 240px;
    --ribbon-thickness: 35px;
    --visual-size: 320px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
}

/* utility classes & global responsive rules */
img,
picture,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 95%;
    /* use more of viewport */
    max-width: 1400px;
    /* allow wider layouts on large screens */
    margin-left: auto;
    margin-right: auto;
}

/* optionally remove side padding on very large screens */
@media (min-width: 1600px) {
    .container {
        width: 98%;
    }
}

/* use a clearfix helper if needed */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

body {
    background-color: var(--off-white);
    background-image: none;
    /* removed patterned gradient for cleaner look */
    color: var(--black);
    overflow-x: hidden;
    padding-top: 130px;
    /* Space for fixed header */
}

/* --- CENTERED INTERACTIVE HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    /* solid white background for all pages */
    background-color: #ffffff;

    transition: 0.3s ease;
}

header.scrolled {
    padding: 15px 6%;
    background: rgba(249, 247, 242, 0.9);
    backdrop-filter: blur(10px);
    background-color: #ffffff;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: max-content;
}

.logo img {
    height: 70px;
    /* Control logo size */
    width: auto;
    /* Keep aspect ratio */
    display: block;
}

.logo span {
    color: var(--gold);
}

.nav-container {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-spacer {
    flex: 1;
    flex-shrink: 0;
    /* Mirrors .logo flex:1 on the right so the nav-pill sits dead-centre */
}

.nav-pill {
    display: flex;
    list-style: none;
    gap: 30px;
    background: rgba(251, 171, 42, 0.08);
    backdrop-filter: blur(15px);
    padding: 12px 45px;
    border-radius: 100px;
    border: 1px solid rgba(251, 171, 42, 0.2);
    transition: 0.3s;
}

/* Direct children — matches HTML structure (no inner <ul>) */
.nav-pill li a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

/* Animated underline */
.nav-pill li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-pill li a:hover,
.nav-pill li a.active {
    color: var(--gold);
}

.nav-pill li a:hover::after,
.nav-pill li a.active::after {
    width: 100%;
}

/* --- HAMBURGER / MOBILE MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    border-left: 2px solid rgba(251, 171, 42, 0.3);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 40px;
    gap: 28px;
    z-index: 1050;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition: color 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1040;
}

.mobile-nav-overlay.open {
    display: block;
}

/* --- REMAINING SECTIONS (UNTOUCHED) --- */
main.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    padding: 40px 8% 100px;
    align-items: center;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    /* Subtle gradient for a cleaner look, consistent with other pages */
    /* Gradient covers full section */
    background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
    background-size: 30px 30px;
    /* Add extra space at the bottom */
    margin-bottom: 50px;
}

/* Mobile Hero Optimization: True 2-Column Desktop Style */
@media (max-width: 768px) {
    main.hero {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr; /* Side-by-side as on desktop */
        align-items: center;
        gap: 15px;
        padding: 40px 4% 60px;
        background-size: 20px 20px;
        text-align: left;
    }

    .content h1 {
        font-size: 1.8rem; /* significantly smaller to fit side-by-side */
        line-height: 1.1;
        letter-spacing: -0.8px;
        margin-bottom: 12px;
    }

    .content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    .cta-group {
        flex-direction: row;
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: nowrap; /* keep them in a single row */
        width: 100%;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.65rem;
        border-radius: 10px;
        gap: 6px;
        white-space: nowrap;
    }

    .graphic-container {
        margin-top: 0;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .network-svg {
        width: 100%;
        max-width: 220px; /* scaled down for 2-column mobile */
    }
}

.content h1 {
    font-size: 5rem;
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -2.5px;



}

.content p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 40px;
    color: #444;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.btn-outline {
    border: 2.5px solid var(--gold);
    color: var(--gold);
    background-color: var(--off-white);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
}

.btn-solid {
    background: var(--black);
    color: white;
    border: 2.5px solid var(--black);
}

.graphic-container {
    display: flex;
    justify-content: center;
}

.network-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-bottom: 0 !important;
}

.svg-black {
    fill: none;
    stroke: var(--black);
    stroke-width: 9;
    stroke-linecap: round;
}

.svg-gold {
    fill: var(--gold);
    stroke: var(--black);
    stroke-width: 9;
}

.svg-grid {
    fill: none;
    stroke: var(--black);
    stroke-width: 7;
}

.about-section {
    padding: 80px 8%;
    display: flex;
    align-items: center;
    gap: 5%;
}

.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-card {
    flex: 1.2;
    background: white;
    border: 1.5px solid var(--gold);
    border-radius: 30px;
    padding: 60px;
    position: relative;
}

.about-card h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: white;
    text-decoration: none;
    padding: 6px 6px 6px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    gap: 15px;
    transition: 0.3s;
}

.read-more-btn .arrow-box {
    background: white;
    color: var(--gold);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.2rem;
}

.services-section {
    background: #fff;
    padding: 100px 8%;
    border-top: 1px solid #eee;
}

.services-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.gold-line {
    width: 80px;
    height: 6px;
    background: var(--gold);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: var(--off-white);
    padding: 50px 40px;
    border: 4px solid var(--black);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    background: var(--black);
    color: white;
    transform: translateY(-10px);
}

.card h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.card:hover h3 {
    color: var(--gold);
}

.card p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 1100px) {

    .hero,
    .services-grid,
    .about-section {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .content h1 {
        font-size: 3.5rem;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-card {
        padding: 40px 20px;
    }

    .stats-section {
        display: block;
        padding: 40px 6%;
    }

    .stats-section .stats-img {
        margin-top: 30px;
    }
}

/* smaller breakpoints for phones and very narrow windows */
@media (max-width: 768px) {
    header {
        padding: 12px 3%;
    }

    .logo img {
        height: 48px;
    }

    /* Maintain the 1:2:1 centering ratio */
    .logo,
    .header-spacer {
        flex: 1;
    }

    .nav-container {
        flex: 2;
    }

    .nav-pill {
        gap: 12px;
        padding: 8px 18px;
    }

    .nav-pill li a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .content h1 {
        font-size: 2.8rem;
    }

    .graphic-container {
        transform: scale(1);
        transform-origin: center center;
        margin: 60px 0 30px;
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: center;
    }

    .network-svg {
        max-width: 100%;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-section,
    .services-spiral-section,
    .digital-ecosystem,
    .pillars-section {
        padding: 40px 5%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 90px;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding: 20px 4% 60px;
    }

    .content h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

/* Scoped about-us card (about-custom) to avoid global conflicts */
.about-custom .container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1700px;
    gap: 30px;
    margin: 0 auto 20px;
    /* add bottom spacing */
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.about-custom .image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-custom .map-container {
    width: 300px;
    height: 300px;
    position: relative;
}

.about-custom .map-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-custom .map-svg {
    width: 100%;
    height: auto;
    max-width: 420px;
}

.about-custom .content-card {
    flex: 1;
    padding: 24px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    background: #fff;
}

.about-custom h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
    font-weight: 700;
}

.about-custom p {
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 16px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.about-custom .btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

.about-custom .read-more-btn {
    background: var(--gold);
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.about-custom .read-more-btn:hover,
.about-custom .read-more-btn:focus {
    background: #e89b1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-custom .read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.about-custom .arrow {
    background: #fff;
    color: var(--gold);
    border: 1px solid var(--gold);
    margin-left: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 2px;
}

@media (max-width:900px) {
    .about-custom .container {
        flex-direction: row;
        /* Keep items side-by-side on tablets */
        text-align: left;
        padding: 40px 4%;
        gap: 25px;
        align-items: center;
        justify-content: center;
    }

    .about-custom .image-side {
        flex: 0 0 35%;
        /* Slightly smaller image area */
        display: flex;
        justify-content: center;
    }

    .about-custom .content-card {
        flex: 1;
        /* Content takes remaining space */
        padding: 30px;
    }

    .about-custom .map-container {
        width: 100%;
        max-width: 180px;
        height: auto;
        margin: 0;
    }

    .about-custom .btn-wrapper {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .about-custom h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .about-custom p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .about-custom .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 10px;
        width: 100%;
        overflow: hidden;
        padding: 8px 10px;
    }

    .about-custom .image-side {
        flex: 0 0 45%;
        max-width: 45%;
        width: 45%;
        padding: 0;
        margin: 0;
    }

    .about-custom .content-card {
        flex: 0 0 53%;
        max-width: 53%;
        width: 53%;
        margin: 0;
        padding: 12px;
    }

    .about-custom .content-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .about-custom h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .about-custom .btn-wrapper {
        justify-content: flex-start;
    }

    .about-custom .map-container {
        max-width: 180px;
        height: auto;
        margin: 0;
    }

    .about-custom h2 {
        font-size: 1.8rem;
    }

    .about-custom p {
        font-size: 0.88rem;
        line-height: 1.45;
        max-width: 100%;
    }

    .about-custom .btn-wrapper {
        justify-content: center;
        margin-top: 10px;
    }

    .about-custom .content-card {
        flex: none;
    }

    .about-custom .map-container {
        max-width: 180px;
        margin: 0 auto 20px;
    }

    .about-custom .btn-wrapper {
        justify-content: center;
    }
}

/* Scoped container to prevent global styling conflicts */
.digital-ecosystem {
    background: #ffffff;
    /* We set everything to zero to be safe */
    padding: 0 !important;
    overflow: hidden;
    /* Increase the pull-up to -60px or more if needed */
    margin-top: -60px !important;
}

.digital-ecosystem .container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.digital-ecosystem .text-section {
    flex: 1;
}

.digital-ecosystem .text-section h1 {
    font-size: 44px;
    font-weight: 900;
    color: var(--black);
    /* This ensures the text starts at the very top of the section */
    margin-top: 0 !important;
    line-height: 1.1;
    text-transform: uppercase;
}

.digital-ecosystem .underline-box {
    display: inline-block;
    border-bottom: 8px solid var(--gold);
    padding-bottom: 5px;
    margin: 10px 0 20px 0;
}

.digital-ecosystem .text-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* --- THE GRAPHIC ENGINE --- */
.digital-ecosystem .graphic-section {
    flex: 1;
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.digital-ecosystem .graphic-section img {
    max-width: 90%;
    /* Prevent over-scaling which causes blur */
    max-height: 550px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Sharpening techniques */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Fix sub-pixel rendering blur in Chrome */
    transform: perspective(1px) translateZ(0);
    backface-visibility: hidden;
    filter: contrast(1.05);
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .digital-ecosystem .container {
        flex-direction: column;
        text-align: center;
    }

    .digital-ecosystem .text-section p {
        margin: 0 auto;
    }

    .digital-ecosystem .graphic-section {
        transform: scale(0.85);
    }
}

@media (max-width: 600px) {
    .digital-ecosystem .graphic-section {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .digital-ecosystem .orbit,
    .digital-ecosystem .central-hub {
        display: none;
    }

    .digital-ecosystem .graphic-section img {
        max-width: 100%;
    }
}

.section-title {
    text-align: center;
    margin: 0;
    padding: 0;
}

.section-title h1 {
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
    margin: 0;
}

.section-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: var(--gold);
}

.section-title .tagline {
    text-align: center;
    margin: 2px 0 6px 0;
    font-size: 13px;
    color: #666;
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2.4rem;
    }

    .section-title .tagline {
        font-size: 16px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .section-title h1 {
        font-size: 2.0rem;
    }

    .section-title .tagline {
        font-size: 15px;
        margin-top: 12px;
    }
}

.services-spiral-section {
    --brand-yellow: #FBAB2A;
    --brand-black: #1A1A1A;
    --text-white: #fff;

}

.services-spiral-section {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.services-spiral-section header {
    text-align: center;
    padding: 50px 20px 10px;
}

.services-spiral-section header h1::after {
    content: "";
    width: 70%;
    height: 4px;
    background: var(--brand-yellow);
    margin: 10px auto;
}

.services-spiral-section .tagline {
    color: var(--text-grey);
    font-size: 1rem;
    margin-top: 10px;
}

.services-spiral-section .main-container {
    position: relative;
    width: 1400px;
    height: 950px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-spiral-section #spiral-center {
    position: absolute;
    width: 672px;
    height: 672px;
    z-index: 1;
}

.services-spiral-section .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: -9px;
    margin-left: -9px;
    z-index: 1;
    border: none;
    /* Removes the orange circle leak */
}

.services-spiral-section .c0 {
    background: var(--black);
}

.services-spiral-section .c1 {
    background: var(--gold);
}

.services-spiral-section .c2 {
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.services-spiral-section .service-item {
    position: absolute;
    width: 320px;
    z-index: 10;
}

.services-spiral-section .icon-circle {
    width: 110px;
    height: 110px;
    border: 1px solid var(--brand-yellow);
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.services-spiral-section .icon-circle svg {
    width: 60px;
    height: 60px;
}

.services-spiral-section .service-item h3 {
    color: var(--brand-yellow);
    font-size: 1.5rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.services-spiral-section .service-item p {
    font-size: 1rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.4;
}

.services-spiral-section .left-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.services-spiral-section .right-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.services-spiral-section .center-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-spiral-section .pos-telebirr {
    top: 3%;
    left: 20%;
}

.services-spiral-section .pos-vehicle {
    top: 3%;
    right: 20%;
}

.services-spiral-section .pos-supplies {
    top: 33%;
    left: 5%;
}

.services-spiral-section .pos-solar {
    top: 33%;
    right: 5%;
}

.services-spiral-section .pos-packaging {
    bottom: 12%;
    left: 10%;
}

.services-spiral-section .pos-coffee {
    bottom: 12%;
    right: 10%;
}

.services-spiral-section .pos-realestate {
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1400px) {
    .services-spiral-section {
        /* Dynamically adjust the height of the section to match the scaled assembly */
        height: calc(950px * (100vw / 1400));
        min-height: 420px;
        /* Ensures section doesn't collapse on very small screens */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        padding: 0 !important;
    }

    .services-spiral-section .main-container {
        /* Use CSS scale to preserve the exact ratio of the spiral dots and icon positions */
        transform: scale(calc(100vw / 1400));
        transform-origin: center center;
        width: 1400px;
        height: 950px;
        flex-shrink: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Improved mobile scaling for spiral layout */
@media (max-width: 768px) {
    .services-spiral-section {
        height: 560px;
        /* Prevents phantom space caused by scaling */
        overflow: visible;
        justify-content: flex-start;
    }

    /* Force a smaller fixed mobile scale so spiral is not desktop-sized */
    .services-spiral-section .main-container {
        width: 1400px;
        height: 1100px;
        transform: scale(0.48);
        transform-origin: top center;
        margin: 0;
    }

    /* Adjust positioning for mobile to keep items visible */
    .services-spiral-section .pos-telebirr {
        top: 10%;
        left: 30%;
    }

    .services-spiral-section .pos-vehicle {
        top: 10%;
        right: 30%;
    }

    .services-spiral-section .pos-supplies {
        top: 33%;
        left: 15%;
    }

    .services-spiral-section .pos-solar {
        top: 33%;
        right: 15%;
    }

    .services-spiral-section .pos-packaging {
        bottom: 25%;
        left: 15%;
    }

    .services-spiral-section .pos-coffee {
        bottom: 25%;
        right: 20%;
    }

    .services-spiral-section .pos-realestate {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
    }

    .services-spiral-section .service-item {
        width: 180px;
    }

    .services-spiral-section .icon-circle {
        width: 70px;
        height: 70px;
    }

    .services-spiral-section .icon-circle img {
        width: 40px;
        height: 40px;
    }

    .services-spiral-section .service-item h3 {
        font-size: 1.0rem;
    }

    .services-spiral-section .service-item p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-spiral-section {
        height: 300px;
        /* Adjusts height for smaller phones */
        overflow: visible;
        justify-content: flex-start;
    }

    .services-spiral-section .main-container {
        width: 1250px;
        height: 850px;
        transform: scale(0.30);
        transform-origin: top center;
        margin: 0;
    }

    .services-spiral-section .service-item {
        width: 140px;
    }

    .services-spiral-section .icon-circle {
        width: 60px;
        height: 60px;
    }

    .services-spiral-section .icon-circle img {
        width: 30px;
        height: 30px;
    }

    .services-spiral-section .service-item h3 {
        font-size: 0.9rem;
    }

    .services-spiral-section .service-item p {
        font-size: 0.65rem;
    }
}

.stats-section {
    display: flex;
    align-items: center;
    padding: 80px 8%;
    gap: 5%;
}

.stats-content {
    flex: 0 0 48%;
}

.stats-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.stats-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.stats-img {
    display: flex;
    justify-content: center;
}

.stats-img img {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1100px) {
    .stats-section {
        padding: 40px 6%;
    }
}

@media (max-width: 900px) {
    .stats-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-content {
        max-width: none;
        width: 100%;
    }

    .stats-img {
        width: 100%;
        margin-top: 30px;
    }

    .stats-img img {
        max-width: 420px;
    }
}

.pillars-section {
    --brand-orange: #FBAB2A;
    --liquid-yellow: #FBAB2A;
    --thickness: 80px;
    --step-width: 320px;
    --circle-size: 200px;
    --icon-size: 95px;
    /* increased from 75px to make pillar images larger */

    padding: 100px 0;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    /* Handles smaller screens gracefully */
}

.pillars-infographic {
    display: flex;
    align-items: flex-start;
    padding-top: 40px;
    /* Space for top arcs */
}

.pillar-step {
    width: var(--step-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

/* THE CONNECTED RIBBON */
.pillar-step::before {
    content: '';
    position: absolute;
    width: var(--step-width);
    height: 160px;
    border: var(--thickness) solid var(--brand-orange);
    box-sizing: border-box;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Top Arcs */
.pillar-step:nth-child(odd)::before {
    top: -40px;
    left: 50%;
    border-bottom: 0;
    border-radius: 200px 200px 0 0;
    border-top-color: var(--liquid-yellow);
}

/* Bottom Arcs */
.pillar-step:nth-child(even)::before {
    top: 40px;
    left: 50%;
    border-top: 0;
    border-radius: 0 0 200px 200px;
    border-bottom-color: var(--liquid-yellow);
}

/* HOVER INTERACTION: Light up the ribbon */
.pillar-step:hover::before {
    filter: drop-shadow(0 0 15px var(--liquid-yellow));
    border-width: calc(var(--thickness) + 5px);
}

.pillar-step:last-child::before {
    display: none;
}

/* The Large White Sphere */
.pillar-circle {
    width: var(--circle-size);
    height: var(--circle-size);
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--liquid-yellow);
    outline: 2px solid #fff;
    outline-offset: -8px;
    transition: all 0.4s ease;
}

.pillar-step:hover .pillar-circle {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 30px 60px rgba(243, 160, 34, 0.3);
    background: radial-gradient(circle, #fff 50%, var(--liquid-yellow) 200%);
}

/* THE ATTACHED PIN */
.pillar-pin {
    width: 3px;
    height: 100px;
    background: linear-gradient(to bottom, var(--liquid-yellow), var(--brand-orange), transparent);
    position: relative;
    z-index: 2;
    margin-top: 0;
    transition: height 0.4s ease;
}

.pillar-step:hover .pillar-pin {
    height: 120px;
}

.pillar-pin::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -8px;
    width: 18px;
    height: 18px;
    background-color: #000;
    border: 3px solid var(--liquid-yellow);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.pillar-step:hover .pillar-pin::after {
    background-color: var(--liquid-yellow);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--liquid-yellow);
}

/* Content scaled for readability */
.pillar-content {
    padding: 0 30px;
    text-align: left;
    margin-top: 20px;
    max-width: 280px;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.pillar-step:hover .pillar-content {
    opacity: 1;
    transform: translateY(5px);
}

.pillar-content h2 {
    font-size: 1.35rem;
    margin: 0 0 12px 0;
    color: #111;
    font-weight: 800;
    transition: color 0.4s ease;
}

.pillar-step:hover .pillar-content h2 {
    color: var(--brand-orange);
}

.pillar-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.pillar-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    transition: all 0.4s ease;
}

.pillar-step:hover .pillar-icon {
    transform: rotate(-5deg) scale(1.1);
}

/* Impact section styles (scoped) */
.impact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.impact-header {
    text-align: center;
    margin-bottom: 48px;
}

.impact-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.impact-underline {
    width: 120px;
    height: 3px;
    background: #FBAB2A;
    margin: 10px auto 0;
}

.impact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    gap: 20px;
    flex-shrink: 0;
}

.impact-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    background: #fff;
}

.impact-card img {
    display: block;
    width: 90px;
    /* larger icon */
    height: auto;
    /* preserve aspect ratio */
    margin: 0 auto 20px;
    /* center horizontally and keep spacing */
}

.impact-number {
    color: #FBAB2A;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.impact-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
}

.case-studies {
    flex: 1;
    max-width: 460px;
    width: 460px;
    align-self: center;
    /* vertically center next to the impact-stats */
    margin-top: 24px;
    /* nudge the Case Study block slightly lower */
}

.case-study {
    margin-bottom: 28px;
    text-align: left;
    /* force left alignment inside box */
    padding: 0 12px;
}

.case-study .impact-list {
    padding-left: 20px;
    /* indent list items slightly */
}

.badge {
    background: #FBAB2A;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.case-studies h2 {
    font-size: 1.6rem;
    margin: 0 0 12px 0;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.impact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: #FBAB2A;
    border-radius: 50%;
}

.challenge-text {
    margin: 10px 0 14px 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width:900px) {
    .impact-container {
        padding: 40px 15px;
    }

    .impact-layout {
        flex-direction: row;
        /* Forces side-by-side layout on mobile */
        align-items: center;
        /* Center align items vertically */
        gap: 20px;
    }

    .case-studies {
        flex: 1;
        /* Case studies take remaining space on the right */
        margin-top: 0;
        /* Remove top margin to align with first card */
        padding-top: 0;
        /* Remove padding to align with first card */
        align-self: flex-start;
        /* Align to top to match first card position */
    }

    .impact-stats {
        grid-template-columns: 1fr;
        width: 40%;
        /* Adjusted width to prevent text squashing (distortion) */
        min-width: 140px;
        flex-shrink: 0;
        order: -1;
        /* Move impact stats to the left */
    }

    .impact-card {
        padding: 15px 12px;
        margin-bottom: 12px;
        /* Consistent spacing between cards */
    }

    .impact-card img {
        width: 38px;
        margin-bottom: 8px;
    }

    .impact-number {
        font-size: 0.8rem;
    }

    .impact-desc {
        font-size: 0.75rem;
        text-align: center;
        text-justify: none;
        line-height: 1.3;
    }

    .case-studies h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .case-study {
        padding: 8px;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .case-study:nth-child(2) {
        margin-top: 120px;
        /* Align second case study with 10,000+ TONS card */
    }

    .challenge-text,
    .impact-item {
        font-size: 0.8rem;
        text-align: left;
        text-justify: none;
        /* Prevents "distorted" spacing */
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Trusted Organizations Section */
.section-wrapper {
    max-width: 1200px;
    width: 100%;
    padding: 60px 20px;
    margin: 0 auto;
    text-align: center;
}

.section-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-wrapper .underline {
    position: relative;
    display: inline-block;
    /* Reset conflicting styles from the global .underline class */
    width: auto;
    height: auto;
    background: none;
    margin: 0;
}

.section-wrapper .underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-orange);
    z-index: -1;
}

.section-wrapper .description {
    max-width: 750px;
    margin: 0 auto 60px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Logo Cloud */
.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px; /* Ultra-tight gap */
    max-width: 1100px;
    margin: 0 auto;
    /* removed container clipping to keep logos visible */
    padding: 40px 20px;
    /* maintain some spacing */
    background: #fff;
}





.pebble {
    background: white;
    border: 1px solid rgba(251, 171, 42, 0.7); /* Thinner, softer gold border */
    width: 120px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Permanent soft shadow */
    margin: -8px 1px; /* Ultra-tight spacing for interlocking feel */
    flex-shrink: 0;
}

/* Three-Sided / Soft Triangular Blobs */
.shape-tri {
    border-radius: 64% 36% 45% 55% / 40% 31% 69% 60%;
}

/* Four-Sided / Soft Diamond-like Blobs */
.shape-sq {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
}

/* Existing Organic Pebble / Blob */
.shape-blob {
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
}

/* Varying rotations (More distinct) */
.rot-1 { transform: rotate(-8deg); }
.rot-2 { transform: rotate(12deg); }
.rot-3 { transform: rotate(-18deg); }
.rot-4 { transform: rotate(6deg); }
.rot-5 { transform: rotate(22deg); }

/* Offset margin for more 'random' layout (Stronger) */
.offset-up { margin-top: -30px; }
.offset-down { margin-top: 30px; }

.pebble img {
    max-width: 75%; /* More breathing room */
    max-height: 65%;
    object-fit: contain;
    opacity: 0.95;
    display: block;
}

/* Hover effect: Scale and glow */
.pebble:hover {
    transform: scale(1.1) translateY(-15px) rotate(0deg) !important;
    z-index: 10;
    border-color: #FBAB2A;
    box-shadow: 0 15px 35px rgba(251, 171, 42, 0.4);
}

@media (max-width: 600px) {
    .pebble {
        width: 90px;
        height: 75px;
    }

    .section-wrapper h2 {
        font-size: 1.6rem;
    }
}

/* ===== GLOBAL FOOTER STYLES ===== */
.ht-footer {
    background: #ffffff;
    width: 100%;
    margin-top: 80px;
}

/* CTA */
.ht-footer-cta {
    background: #FBAB2A;
    padding: 25px 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #000;
}

.ht-footer-cta strong {
    font-weight: 800;
}

/* Main Layout */
.ht-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 60px 20px;
    flex-wrap: wrap;
    gap: 40px;
}

/* Brand */
.ht-footer-brand {
    flex: 1;
    min-width: 250px;
}

.logo-dark {
    color: #333;
}

.logo-gold {
    color: #FBAB2A;
}

.ht-footer-social {
    display: flex;
    gap: 10px;
}

.ht-footer-social a {
    text-decoration: none;
    color: #fff;
    background: #000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.ht-footer-social a:hover {
    opacity: 0.7;
}

/* Links */
.ht-footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.ht-footer-column h3 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.ht-footer-column ul {
    list-style: none;
    padding: 0;
}

.ht-footer-column ul li {
    margin-bottom: 12px;
}

.ht-footer-column ul li a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.ht-footer-column ul li a:hover {
    color: #FBAB2A;
}

/* Contact */
.ht-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.ht-footer-contact i {
    color: #FBAB2A;
}

/* Footer Bottom */
.ht-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #eee;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.ht-footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

.ht-footer-legal {
    display: flex;
    gap: 20px;
}

/* Interactive Footer Links */
.ht-footer-legal a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.ht-footer-legal a:hover {
    color: #FBAB2A;
    transform: scale(1.05);
}

.ht-footer-legal a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #FBAB2A;
    transition: width 0.3s ease;
}

.ht-footer-legal a:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ht-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .ht-footer-links {
        flex-direction: column;
        align-items: center;
    }

    .ht-footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .ht-footer-contact li {
        justify-content: center;
    }

    .ht-footer-legal {
        justify-content: center;
    }
}

/* Global footer compression overrides */
.ht-footer-cta {
    padding: 10px 15px !important;
    /* tighter */
    font-size: 0.95rem;
}

.ht-footer-container {
    padding: 30px 15px !important;
    /* reduced again */
}

.ht-footer-bottom {
    padding: 15px 15px !important;
    /* smallest vertical */
    font-size: 0.85rem;
}

/* Homepage-specific footer adjustments */
.main-footer {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* ensure logo cloud isn't creating extra bottom space */
.logo-cloud {
    margin-bottom: 20px;
}

/* reduce space between footer logo and social icons */
.ht-footer-logo {
    margin-bottom: 10px !important;
}

.cta-bar {
    background: #FBAB2A;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}

.cta-bar strong {
    font-weight: 800;
}

/* FOOTER CONTENT */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.logo-placeholder {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.logo-placeholder span:last-child {
    color: #FBAB2A;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    background: #000;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #FBAB2A;
}

.footer-links-wrapper {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.link-column h3 {
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    transition: 0.3s;
}

.link-column ul li a:hover {
    color: #FBAB2A;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact-info i {
    color: #FBAB2A;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    text-decoration: none;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
}

.legal-links a:hover {
    color: #FBAB2A;
}

/* MOBILE */
@media(max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ===== GLOBAL RESPONSIVE SAFEGUARDS ===== */
/* ensures layouts shrink gracefully at common breakpoints */
@media (max-width: 1400px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 20px 4%;
    }

    .nav-pill {
        gap: 20px;
        padding: 10px 30px;
    }

    .ms-panel {
        width: calc(100% - 80px);
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .ms-panel {
        width: 100% !important;
        text-align: left !important;
    }

    .ms-node {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    header {
        padding: 15px 3%;
    }
}

/* Styles from test.html for infographic */
.infographic-wrapper {
    display: flex;
    gap: 0;
    justify-content: center;
    padding: 60px 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--visual-size);
    position: relative;
}

.visual-header {
    width: var(--visual-size);
    height: var(--visual-size);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb {
    width: var(--orb-size);
    height: var(--orb-size);
    background: radial-gradient(circle at 35% 35%, #ffffff 30%, var(--orange-soft) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.orb img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.ribbon-path {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: var(--ribbon-thickness) solid var(--brand-orange);
    border-radius: 50%;
    z-index: 2;
}

.step:nth-child(odd) .ribbon-path {
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(-45deg);
}

.step:nth-child(even) .ribbon-path {
    border-top-color: transparent;
    border-right-color: transparent;
    transform: rotate(-45deg);
}

.connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    position: relative;
    /* Removes all gaps between circle container and line */
    margin-top: 0;
}

/* Logic to make the line reach the INNER circle */
.touch-inner {
    /* Moves the start point of the line up to the inner orb edge */
    margin-top: calc(((var(--visual-size) - var(--orb-size)) / 2) * -1);
}

.line {
    width: 2px;
    height: 60px;
    background-color: var(--brand-orange);
}

/* Adjusts height to keep dots aligned even when line starts higher */
.touch-inner .line {
    height: 100px;
}

.step .dot {
    width: 18px;
    height: 18px;
    background-color: #000;
    border-radius: 50%;
    margin-top: -1px;
    box-sizing: border-box;
    border: 2px solid var(--brand-orange);
}

.step .content {
    padding: 15px 30px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.step .content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-black);
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.step .content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.pillars-title {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.underline {
    width: 300px;
    height: 2px;
    background: #f5a623;
    margin: 10px auto 30px;
}

/* Reduce top spacing only on mobile screens */
@media (max-width: 768px) {
    .pillars-title {
        margin-top: 30px;
    }
}