/* ==================================================================
   base.css — design tokens, reset, typography, layout primitives, buttons
   Loaded first: everything else builds on these variables.
   ================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

.gs-root {
  --bg: #F6FAF8;
  --surface: #FFFFFF;
  --tint: #ECF7F0;
  --green: #000000;
  --green-dark: #000000;
  --green-deep: #06371C;
  --green-light: #D7F6E1;
  --mint: #E2F5E9;
  --brand: #22B14C;
  --ink: #0B0B0C;
  --muted: #5F6B66;
  --border: #E4EAE6;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(6,49,37,.04), 0 6px 18px rgba(6,49,37,.05);
  --shadow-md: 0 10px 30px rgba(6,49,37,.08), 0 2px 8px rgba(6,49,37,.05);
  --shadow-lg: 0 24px 60px rgba(6,49,37,.14);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.gs-root *, .gs-root *::before, .gs-root *::after { box-sizing: border-box; }
.gs-root h1, .gs-root h2, .gs-root h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--ink);
  margin: 0;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2 ;
  font-size: 45px;
}
.gs-root p { margin-bottom: 0px; font-size: 16px; line-height: 1.6; }
.gs-root a { text-decoration: none; margin-top: 0px; margin-bottom: 0; }
.gs-root ul { list-style: none; margin: 0; padding: 0; }
.gs-root img { max-width: 100%; display: block; }
.gs-root :focus-visible {
  outline: 3px solid rgba(11,107,75,.45);
  outline-offset: 3px;
  border-radius: 6px;
}



html { scroll-behavior: smooth; }
.gs-root section[id], .gs-root [id="top"] { scroll-margin-top: 92px; }

.gs-container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.gs-logo {
width: 42px;
height: 42px;
object-fit: contain;
display: block;
}
.gs-section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.gs-section-tint { background: var(--tint); }

/* Reveal */
.gs-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.gs-reveal.is-visible { opacity: 1; transform: none; }

/* Eyebrow */
.gs-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green);
  background: var(--mint); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px;
}
.gs-eyebrow-mark { font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 13px; }

/* Typography helpers */
.gs-h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 700; }
.gs-h2-invert { color: #fff; }
.gs-section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 60px); }
.gs-section-head .gs-eyebrow { margin-bottom: 18px; }
.gs-section-head .gs-h2 { margin-bottom: 16px; }
.gs-section-sub, .gs-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted); max-width: 60ch;
}

/* Buttons */
.gs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter'; font-weight: 600; font-size: 15px;
  border-radius: 999px; border: 1px solid transparent;
  padding: 12px 22px; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease),
    box-shadow .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.gs-btn-sm { padding: 9px 16px; font-size: 14px; }
.gs-btn-lg { padding: 15px 28px; font-size: 16px; }
.gs-btn-primary { background: linear-gradient(180deg, var(--green), var(--green-dark)); color: #fff; box-shadow: 0 8px 20px rgba(10,122,56,.30); }
.gs-btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(10,122,56,.34); }
.gs-btn-outline { background: #fff; color: var(--ink); border-color: var(--border); box-shadow: var(--shadow-sm); }
.gs-btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.gs-btn-ghost { background: var(--tint); color: var(--ink); border-color: var(--border); }
.gs-btn-ghost:hover { border-color: var(--green); color: var(--green); }
.gs-btn-onDark { background: #fff; color: var(--green-dark); }
.gs-btn-onDark:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.22); }
.gs-btn-outlineLight { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.gs-btn-outlineLight:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }


/* Floating Contact Buttons */

/* =========================================
   PREMIUM FLOATING CONTACT BUTTONS
========================================= */

.gs-floating-contact {
    position: fixed;

    right: 22px;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 99999;
}


/* =========================================
   PREMIUM BUTTON
========================================= */

.gs-premium-contact {
    position: relative;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    font-size: 24px;

    text-decoration: none;

    border: 3px solid rgba(255, 255, 255, 0.85);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   WHATSAPP
========================================= */

.gs-whatsapp {
    background: linear-gradient(
        145deg,
        #2eea73,
        #0da94f
    );
}


/* =========================================
   CALL
========================================= */

.gs-call {
    background: linear-gradient(
        145deg,
        #2a91e6,
        #0568b5
    );

    font-size: 20px;
}


/* =========================================
   HOVER EFFECT
========================================= */

.gs-premium-contact:hover {
    color: #ffffff;

    transform: scale(1.12);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 0 0 6px rgba(255, 255, 255, 0.35);
}


/* =========================================
   TOOLTIP
========================================= */

.gs-tooltip {
    position: absolute;

    right: 68px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(10px);

    background: #101828;

    color: #ffffff;

    padding: 8px 13px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* Tooltip Arrow */

.gs-tooltip::after {
    content: "";

    position: absolute;

    right: -5px;

    top: 50%;

    transform: translateY(-50%) rotate(45deg);

    width: 9px;
    height: 9px;

    background: #101828;
}


/* Show Tooltip */

.gs-premium-contact:hover .gs-tooltip {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .gs-floating-contact {
        right: 14px;
        gap: 10px;
    }

    .gs-premium-contact {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .gs-call {
        font-size: 18px;
    }

    .gs-tooltip {
        display: none;
    }

}
/* ==================================================================
   Utilities
   Replace inline styles that were previously injected from JavaScript.
   ================================================================== */

/* Scroll-reveal stagger delays (were inline --reveal-delay) */
.gs-delay-60 { --reveal-delay: 60ms; }
.gs-delay-70 { --reveal-delay: 70ms; }
.gs-delay-80 { --reveal-delay: 80ms; }
.gs-delay-100 { --reveal-delay: 100ms; }
.gs-delay-120 { --reveal-delay: 120ms; }
.gs-delay-140 { --reveal-delay: 140ms; }
.gs-delay-160 { --reveal-delay: 160ms; }
.gs-delay-180 { --reveal-delay: 180ms; }
.gs-delay-210 { --reveal-delay: 210ms; }
.gs-delay-220 { --reveal-delay: 220ms; }
.gs-delay-240 { --reveal-delay: 240ms; }
.gs-delay-280 { --reveal-delay: 280ms; }
.gs-delay-300 { --reveal-delay: 300ms; }

/* Spacing helpers (were inline margin/padding).
   Scoped with .gs-root so they outrank the element resets above. */
.gs-root .gs-mb-12 { margin-bottom: 12px; }
.gs-root .gs-mb-18 { margin-bottom: 18px; }
.gs-root .gs-mt-32 { margin-top: 32px; }
.gs-root .gs-self-start { align-self: flex-start; }
.gs-root .gs-btn-block { width: 100%; }
.gs-root .gs-optional { color: var(--muted); font-weight: 500; }

/* Reduced top padding on the insights and contact content sections */
.gs-root .gs-section-tight { padding-top: clamp(24px, 4vw, 40px); }
.gs-root .gs-section-tighter { padding-top: clamp(20px, 3vw, 32px); }

/* Link/button resets (were inline background/border/cursor) */
.gs-root a.gs-article-card { text-align: left; }
.gs-root a.gs-flagship-learn,
/* .gs-root a.gs-founder-link { background: none; border: 0; cursor: pointer; } */

/* Navigational controls are now real links rather than JS-driven
   buttons. A <button> uses line-height:normal while an <a> inherits
   the body value, so pin it here to keep rendering identical. */
.gs-btn,
.gs-root a.gs-article-card,
.gs-root a.gs-flagship-learn,
/* .gs-root a.gs-founder-link { line-height: normal; } */


/* ==================================================================
   who we are
   ================================================================== */
   /* =========================================
   WHO WE ARE SECTION
========================================= */
/* 
.gs-section-tint {
    background: #f8faf9;
} */

.gs-mv-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.gs-eyebrow {
   
    margin-bottom: 12px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #08763e;
}

.gs-mv-intro h1 {
    margin: 0;

    font-size: clamp(30px, 4vw, 30px);
    line-height: 1.12;

    font-weight: 700;
    letter-spacing: -2px;

    color: #111827;
}

.gs-mv-intro h1 span {
    color: #08763e;
}

.gs-mv-intro p {
    max-width: 780px;

    margin: 20px auto 0;

    font-size: 17px;
    line-height: 1.6;

    color: #374151;
}


/* =========================================
   MISSION & VISION GRID
========================================= */

.mission-vision-grid {
    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 18px;

    width: 100%;
}


/* =========================================
   MISSION CARD
========================================= */

.mission-card {
    min-height: 330px;

    padding: 32px;

    display: flex;
    align-items: flex-start;

    gap: 25px;

    background: #ffffff;

    border: 1px solid #edf1ef;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 70, 40, 0.06);
}

.card-icon {
    width: 72px;
    height: 72px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #e8f4ee;

    color: #08763e;

    font-size: 32px;
}

.mission-content {
    flex: 1;
}

.card-label {
    display: block;

    margin: 12px 0 18px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.8px;

    color: #08763e;
}

.mission-content h2,
.vision-content h2 {
    margin: 0;

    font-size: 25px;
    line-height: 1.4;

    color: #101827;
}

.green-line {
    width: 45px;
    height: 2px;

    margin: 22px 0;

    background: #08763e;
}

.mission-content p,
.vision-content p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #374151;
}


/* =========================================
   VISION CARD
========================================= */

.vision-card {
    min-height: 330px;

    padding: 32px;

    display: flex;
    align-items: center;

    gap: 20px;

    position: relative;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #004c31,
        #00643d
    );

    border-radius: 20px;

    color: #ffffff;
}

.vision-content {
    width: 52%;

    position: relative;
    z-index: 2;
}

.vision-header {
    display: flex;
    align-items: center;

    gap: 18px;
}

.vision-header .card-label {
    margin: 0;

    color: #4ff08a;
}

.vision-icon {
    color: #63ed96;

    background: rgba(255, 255, 255, 0.1);
}

.vision-content h2 {
    margin-top: 20px;

    color: #ffffff;
}

.vision-content p {
    color: rgba(255, 255, 255, 0.85);
}


/* =========================================
   VISION PROCESS
========================================= */

.vision-process {
    width: 270px;
    height: 270px;

    position: relative;

    flex-shrink: 0;

    margin-left: auto;
}

.vision-process::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 190px;
    height: 190px;

    transform: translate(-50%, -50%);

    border: 1px dashed
        rgba(99, 237, 150, 0.8);

    border-radius: 50%;
}

.process-center {
    width: 70px;
    height: 70px;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #6af05c,
        #2dbd36
    );

    color: #00623b;

    font-size: 48px;
    font-weight: 800;
}

.process-item {
    position: absolute;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 6px;

    font-size: 11px;
    font-weight: 600;

    color: #ffffff;

    text-align: center;
}

.process-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid
        rgba(255, 255, 255, 0.25);

    background:
        rgba(255, 255, 255, 0.08);

    color: #8af6aa;

    font-size: 17px;
}


/* Process positions */

.process-research {
    top: 0;
    left: 50%;

    transform: translateX(-50%);
}

.process-validate {
    top: 55px;
    right: 0;
}

.process-build {
    right: 5px;
    bottom: 5px;
}

.process-monitor {
    bottom: 5px;
    left: 10px;
}

.process-action {
    top: 55px;
    left: 0;
}


/* =========================================
   DIFFERENT TITLE
========================================= */

.different-title {
    margin: 38px 0 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}

.different-title h2 {
    margin: 0;

    font-size: 20px;
    font-weight: 600;

    letter-spacing: 1px;

    text-align: center;
}

.different-title strong {
    color: #08763e;
}

.title-line {
    width: 100px;
    height: 1px;

    position: relative;

    background:
        linear-gradient(
            to right,
            transparent,
            #15904e
        );
}

.title-line span {
    width: 7px;
    height: 7px;

    position: absolute;

    right: 0;
    top: -3px;

    border-radius: 50%;

    background: #08763e;
}

.title-line.right {
    transform: rotate(180deg);
}


/* =========================================
   FEATURE GRID
========================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}

.feature-card {
    min-height: 220px;

    padding: 25px 28px;

    background: #ffffff;

    border: 1px solid #edf1ef;

    border-radius: 18px;

    box-shadow:
        0 8px 25px
        rgba(0, 70, 40, 0.04);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(0, 70, 40, 0.1);
}

.feature-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #e8f4ee;

    color: #08763e;

    font-size: 25px;
}

.feature-card h3 {
    margin: 18px 0 0;

    font-size: 18px;
    font-weight: 700;

    color: #111827;
}

.feature-line {
    width: 28px;
    height: 2px;

    margin: 12px 0;

    background: #08763e;
}

.feature-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    color: #4b5563;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .gs-mv-intro h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }

    .gs-mv-intro p {
        font-size: 15px;
    }


    /* Mission */

    .mission-card {
        flex-direction: column;

        padding: 25px;
    }


    /* Vision */

    .vision-card {
        flex-direction: column;

        padding: 25px;
    }

    .vision-content {
        width: 100%;
    }

    .vision-process {
        width: 260px;
        height: 260px;

        margin: 20px auto 0;
    }


    /* Different Title */

    .different-title {
        gap: 10px;
    }

    .different-title h2 {
        font-size: 15px;
    }

    .title-line {
        width: 35px;
    }


    /* Feature Cards */

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

}