/* ===========================================
   GLOBAL – WHITE THEME
=========================================== */
:root {
    --bg: #ffffff;
    --txt: #111111;
    --muted: #555555;
    --primary: #0d7d27;
    --accent: #1e88ff;
    --lime: #0abf53;
    --glass: rgba(0,0,0,.04);
    --br: 16px;
}

.ga {
    background: #fff;
    color: var(--txt);
}

.ga-wrap {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* ===========================================
   HERO
=========================================== */
.ga-hero {
    padding: 80px 0 30px;
    background:rgba(0, 87, 194, 0.1)
        
}

.ga-hero .ga-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.ga-col {
    position: relative;
    z-index: 1;
}

.ga-kicker {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 800;
    font-size: 12px;
}

#ga-hero-title {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.1;
    margin: 10px 0;
    color: var(--primary);
}

.ga-sub {
    color: var(--muted);
    margin: 10px 0 14px;
    font-size: clamp(15px, 2vw, 18px);
}

.ga-visual .ga-figure {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.ga-img {
    display: block;
    border-radius: 12px;
}

/* ===========================================
   HERO – MOBILE CTA FIX
=========================================== */
@media (max-width: 680px) {

    .ga-hero .cta-actions,
    .ga-hero .ga-cta-actions,
    .cta-actions {
        display: flex;
        flex-direction: column !important;
        width: 100%;
        gap: 14px;
        margin-top: 16px;
    }

    .ga-hero .cta-actions a,
    .ga-hero .ga-cta-actions a,
    .cta-actions a {
        width: 100%;
        text-align: center;
        white-space: normal;
        padding: 14px 0;
    }

    .ga-hero .btn,
    .cta-actions .btn {
        font-size: 15px !important;
    }

    .ga-hero .cta-content {
        text-align: center;
        width: 100%;
    }
}

/* ===========================================
   SOCIAL & LOGOS
=========================================== */
.ga-social {
    padding: 20px 0 40px;
}

.ga-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
}

.ga-stats li {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 10px 16px;
    min-width: 150px;
}

.ga-stats strong {
    font-size: 22px;
    color: var(--lime);
}

.ga-logos {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ga-logos img {
    height: 26px;
    opacity: .9;
    filter: drop-shadow(0 0 6px rgba(255,255,255,.12));
}

/* ===========================================
   BULLETS
=========================================== */
.ga-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    padding: 0;
    margin: 14px 0 22px;
}

.ga-bullets li {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f6f8fa;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 10px 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(0,87,194,.45);
}

/* ===========================================
   BUTTONS
=========================================== */
.btn {
    cursor: pointer;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

.btn:hover {
    background: #eaf3ff;
}

.btn-primary {
    border: none;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 0 12px rgba(30,136,255,.35);
}

.btn-primary:hover {
    filter: brightness(1.08);
}

.btn-ghost {
    backdrop-filter: saturate(140%) blur(6px);
    background: #fff;
}

/* ===========================================
   SECTION BASE
=========================================== */
.ga-section {
    padding: 70px 0;
    background: #fff;
}

.ga-h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    color: var(--primary);
}

/* GRID SYSTEM */
.ga-grid {
    display: grid;
    gap: 22px;
}

.ga-3 {
    grid-template-columns: repeat(3, minmax(0,1fr));
}

.ga-4 {
    grid-template-columns: repeat(4, minmax(0,1fr));
}

.ga-6 {
    grid-template-columns: repeat(6, minmax(0,1fr));
}

/* ===========================================
   CARD
=========================================== */
.ga-card,
.price-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    padding: 20px;
    transition: .35s;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
}

.ga-card:hover,
.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0,87,194,.18);
}

.ga-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--primary);
}

.ga-card p {
    color: var(--muted);
    font-size: 14px;
}

/* ===========================================
   PRICING
=========================================== */
.price-card header h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--primary);
}

.price-card header p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.price-card .price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 14px 0;
}

.price-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0,87,194,.20);
}

/* ===========================================
   CASE STUDIES
=========================================== */
.cards-img .pf {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.cards-img .pf img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .5s;
}

.cards-img .pf:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.cards-img .pf h3 {
    margin: 10px 12px 4px;
    font-size: 16px;
    color: var(--primary);
}

.cards-img .pf p {
    margin: 0 12px 14px;
    color: #444;
    font-size: 14px;
}

/* ===========================================
   PROCESS TIMELINE
=========================================== */
.ga-timeline-pro {
    background: #ffffff;
    padding: 80px 16px;
}

.ga-title-pro {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0b6a2b;
}

/* Layout */
.ga-tl-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Timeline line */
.ga-tl-line {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #dcefe2;
    overflow: hidden;
}

.ga-tl-line-progress {
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, rgba(0,170,60,0.3), #00c957, rgba(0,170,60,0.3));
    animation: progress-run 4s linear infinite;
}

@keyframes progress-run {
    0% { width: 0%; opacity: 0.35; }
    40% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0.4; }
}

/* Step */
.ga-tl-step {
    width: calc(100% / 6);
    text-align: center;
    position: relative;
}

.tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00c957;
    display: inline-block;
    box-shadow: 0 0 12px rgba(0,201,87,0.5);
    opacity: 0.3;
    transform: scale(1);
    transition: 0.25s;
}

/* Dot animation */
.ga-tl-step[data-step="1"] .tl-dot { animation: dot-anim 4s infinite 0s; }
.ga-tl-step[data-step="2"] .tl-dot { animation: dot-anim 4s infinite 0.3s; }
.ga-tl-step[data-step="3"] .tl-dot { animation: dot-anim 4s infinite 0.6s; }
.ga-tl-step[data-step="4"] .tl-dot { animation: dot-anim 4s infinite 0.9s; }
.ga-tl-step[data-step="5"] .tl-dot { animation: dot-anim 4s infinite 1.2s; }
.ga-tl-step[data-step="6"] .tl-dot { animation: dot-anim 4s infinite 1.5s; }

@keyframes dot-anim {
    0%   { opacity: 0.3; transform: scale(1) }
    20%  { opacity: 1;   transform: scale(1.35) }
    40%  { opacity: 0.6; transform: scale(1.1) }
    100% { opacity: 0.3; transform: scale(1) }
}

/* ===========================================
   TECH STACK
=========================================== */
#ga-tech {
    padding: 80px 0;
    background: #ffffff;
}

#ga-tech .ga-h2 {
    text-align: center;
    color: #0b6a2b;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* GRID */
#ga-tech .tech {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

#ga-tech .tech figure {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px) saturate(160%);
    padding: 22px 10px;
    border-radius: 18px;
    border: 1px solid rgba(200,220,210,0.35);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: .25s;
}

#ga-tech .tech figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: rgba(0,150,70,0.35);
}

#ga-tech .tech figure img {
    max-width: 80px;
    margin-bottom: 8px;
}

#ga-tech .tech figure figcaption {
    margin-top: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #0b6a2b;
}

/* MOBILE */
@media (max-width: 820px) {
    #ga-tech .tech {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    #ga-tech .tech figure {
        padding: 18px 10px;
    }

    #ga-tech .tech figure img {
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    #ga-tech .tech {
        gap: 16px;
    }

    #ga-tech .tech figure img {
        max-width: 62px;
    }
}

/* ===========================================
   FEEDBACK SLIDER
=========================================== */
.fb-snap {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.fb-snap::-webkit-scrollbar {
    display: none;
}

.fb-item {
    min-width: 320px;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.fb-item strong {
    display: block;
    margin-top: 8px;
    color: var(--primary);
}

/* ===========================================
   FAQ
=========================================== */
.faq {
    display: grid;
    gap: 10px;
}

.faq details {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    padding: 10px 14px;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
}

.faq p {
    margin-top: 8px;
    color: #444;
    font-size: 14px;
}

/* ===========================================
   CTA
=========================================== */
.ga-cta {
    padding: 80px 0 110px;
    background: radial-gradient(800px 500px at 70% -50%, rgba(0,87,194,.10), transparent);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 22px;
    padding: 30px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.cta-title {
    margin-bottom: 6px;
    font-size: 28px;
    color: var(--primary);
}

.cta-sub {
    margin: 0;
    color: #444;
}

/* MOBILE CTA FIX */
@media (max-width: 680px) {

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px;
    }

    .cta-content {
        width: 100%;
    }

    .cta-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 14px;
    }

    .cta-actions a {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }

    .cta-title {
        font-size: 22px;
        line-height: 1.35;
    }

    .cta-sub {
        font-size: 15px;
    }
}

/* ===========================================
   RESPONSIVE GRIDS
=========================================== */
@media(max-width: 1024px) {

    .ga-hero .ga-wrap {
        grid-template-columns: 1fr;
    }

    .ga-3 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .ga-4 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .ga-6 {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media(max-width: 680px) {

    .ga-bullets,
    .ga-3,
    .ga-4,
    .ga-6 {
        grid-template-columns: 1fr;
    }
}
