/* Homepage-only layout and responsive rules. */
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    padding-block: clamp(4rem, 10vw, 7rem);
    background: var(--bg);
}

.hero_inner {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero_text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Available pill */
.hero_pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--r_pill);
    background: var(--green_lo);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
}

.hero_pill_dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero_heading {
    font-family: var(--font_head);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.07;
    color: var(--green);
}

.hero_accent {
    color: var(--orange);
}

.hero_sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text_muted);
    line-height: 1.7;
    max-width: 36rem;
}

.hero_ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 0.5rem;
}

.hero_trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.trust_item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text_muted);
}

.trust_item i {
    color: var(--orange);
    font-size: 0.8rem;
}

.trust_dot {
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: var(--border_subtle);
    display: none;
}

/* Photo column */
.hero_photo_wrap {
    position: relative;
    width: min(18rem, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
}

.hero_photo_bg_1 {
    position: absolute;
    inset: 0;
    background: var(--bg_surface);
    border-radius: var(--r_2xl);
    transform: rotate(3deg);
    transform-origin: bottom right;
}

.hero_photo_bg_2 {
    position: absolute;
    inset: 0;
    background: var(--green);
    border-radius: var(--r_2xl);
    transform: rotate(-3deg);
    transform-origin: bottom left;
    opacity: 0.1;
}

.hero_photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r_2xl);
    border: 4px solid #fff;
    box-shadow: var(--shadow_xl);
    z-index: 10;
}

.hero_badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r_lg);
    box-shadow: var(--shadow_xl);
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.hero_badge_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--bg_surface);
    border-radius: 0.75rem;
    color: var(--green);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.hero_badge_title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}

.hero_badge_sub {
    font-size: 0.75rem;
    color: var(--text_muted);
}

/* ═══════════════════════════════════════════════════════════════
   PROOF STRIP
   ═══════════════════════════════════════════════════════════════ */
.proof_strip {
    background: var(--bg_surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-block: 2.5rem;
}

.proof_strip_label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text_muted);
    margin-bottom: 2rem;
}

.proof_strip_grid {
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.proof_stat + .proof_stat {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.proof_stat_num {
    font-family: var(--font_head);
    font-size: 2.5rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.proof_stat_label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text_muted);
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════════════ */
.problem {
    padding-block: var(--section_y);
    background: var(--bg);
}

.problem_grid {
    display: grid;
    gap: 1.5rem;
}

.problem_card {
    background: var(--bg_card);
    border: 1px solid var(--border);
    border-radius: var(--r_2xl);
    padding: 2rem;
    box-shadow: var(--shadow_sm);
    transition: box-shadow var(--ease_m), transform var(--ease_m);
}

.problem_card:hover {
    box-shadow: var(--shadow_md);
    transform: translateY(-2px);
}

.problem_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--r_md);
    background: var(--bg_surface);
    color: var(--orange);
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.problem_card_title {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--green);
    margin-bottom: 0.625rem;
}

.problem_card_body {
    color: var(--text_muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
    padding-block: var(--section_y);
    background: var(--bg_surface);
}

.services_header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.services_header_sub {
    font-size: 0.9375rem;
    color: var(--text_muted);
    max-width: 28rem;
    line-height: 1.7;
}

.services_grid {
    display: grid;
    gap: 1.5rem;
}

.service_card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r_2xl);
    padding: 2rem;
    overflow: hidden;
}

.service_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--r_md);
    background: var(--green);
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service_card_title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 0.875rem;
}

.service_card_body {
    color: var(--text_muted);
    line-height: 1.7;
    font-size: 0.9375rem;
    flex-grow: 1;
}

.service_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.service_card_price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green);
}

.service_card_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--bg_surface);
    color: var(--green);
    font-size: 0.75rem;
    text-decoration: none;
    transition: background var(--ease_f), color var(--ease_f);
    flex-shrink: 0;
}
.service_card_arrow:hover, .service_card_arrow:focus-visible {
    background: var(--orange);
    color: #fff;
}

/* Popular badge */
.service_card_popular_badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.875rem;
    border-bottom-left-radius: var(--r_md);
}

/* Dark card (Strategy Call) */
.service_card_dark {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.service_card_dark .service_card_title {
    color: #fff;
}

.service_card_dark .service_card_body {
    color: var(--text_pale);
}

.service_card_dark .service_card_footer {
    border-top-color: var(--green_mid);
}

.service_card_icon_dark {
    background: var(--green_mid);
    color: var(--orange);
}

.service_card_price_free {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
}

.service_card_arrow_dark {
    background: var(--green_mid);
    color: #fff;
}
.service_card_arrow_dark:hover, .service_card_arrow_dark:focus-visible {
    background: var(--orange);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS (HOW I WORK)
   ═══════════════════════════════════════════════════════════════ */
.process {
    padding-block: var(--section_y);
    background: var(--bg);
}

.process_container {
    max-width: 52rem;
}

.process_steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

/* Vertical line along the left edge on mobile */
.process_steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.4375rem;   /* centers on the 3rem circle */
    width: 2px;
    background: var(--border);
    z-index: 0;
}

.process_step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.process_step_num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font_head);
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px var(--bg);
    z-index: 1;
    position: relative;
}

.process_step_num_accent {
    background: var(--orange);
}

.process_step_card {
    flex: 1;
    background: var(--bg_card);
    border: 1px solid var(--border);
    border-radius: var(--r_2xl);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow_sm);
    min-width: 0;
}

.process_step_title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green);
    margin-bottom: 0.625rem;
}

.process_step_body {
    font-size: 0.9375rem;
    color: var(--text_muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   WORK / PROJECTS
   ═══════════════════════════════════════════════════════════════ */
.work {
    padding-block: var(--section_y);
    background: var(--bg_surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.work_grid {
    display: grid;
    gap: 1.5rem;
}

.project_card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r_2xl);
    overflow: hidden;
    transition: box-shadow var(--ease_m), transform var(--ease_m);
}

.project_card:hover {
    box-shadow: var(--shadow_md);
    transform: translateY(-3px);
}

.project_card_img_wrap {
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.project_card_img_wrap_green {
    background: linear-gradient(135deg, rgba(27,67,50,0.07) 0%, rgba(192,86,33,0.05) 100%),
                var(--border);
}

.project_card_img_wrap_orange {
    background: linear-gradient(135deg, rgba(192,86,33,0.07) 0%, rgba(27,67,50,0.05) 100%),
                var(--border);
}

.project_card_icon_bg {
    font-size: 5rem;
    color: rgba(27, 67, 50, 0.18);
    transition: transform 0.5s ease;
}

.project_card:hover .project_card_icon_bg {
    transform: scale(1.08);
}

.project_card_body_wrap {
    padding: 2rem;
}

.project_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project_tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: var(--r_pill);
    background: var(--bg_surface);
    color: var(--text_muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.project_card_title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 0.625rem;
}

.project_card_desc {
    font-size: 0.9375rem;
    color: var(--text_muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project_card_link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--orange);
    text-decoration: none;
    transition: gap var(--ease_f), color var(--ease_f);
}
.project_card_link:hover, .project_card_link:focus-visible {
    gap: 0.6rem;
    color: var(--orange_dk);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
    padding-block: var(--section_y);
    background: var(--bg);
}

.about_grid {
    display: grid;
    gap: 3rem;
}

.about_photo_row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about_photo {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg_surface);
    box-shadow: var(--shadow_md);
    flex-shrink: 0;
}

.about_name {
    font-family: var(--font_head);
    font-size: 1.75rem;
    color: var(--green);
    line-height: 1.2;
}

.about_role {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--orange);
    margin-top: 0.2rem;
}

.about_body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.0625rem;
    color: var(--text_muted);
    line-height: 1.8;
}

.about_stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about_stat {
    background: var(--bg_card);
    border: 1px solid var(--border);
    border-radius: var(--r_lg);
    padding: 1.5rem;
    box-shadow: var(--shadow_sm);
    border-left-width: 4px;
    transition: box-shadow var(--ease_m);
}
.about_stat:hover { box-shadow: var(--shadow_md); }

.about_stat_green { border-left-color: var(--green); }
.about_stat_orange { border-left-color: var(--orange); }

.about_stat_wide {
    grid-column: 1 / -1;
}

.about_stat_num {
    font-family: var(--font_head);
    font-size: 2.25rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.about_stat_label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text_muted);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
    padding-block: var(--section_y);
    background: var(--bg_surface);
    border-top: 1px solid var(--border);
}

.contact_panel {
    position: relative;
    max-width: 46rem;
    margin-inline: auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r_2xl);
    box-shadow: var(--shadow_xl);
    overflow: hidden;
}

.contact_panel_deco {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
}

.contact_panel_deco_1 {
    top: -6rem;
    right: -6rem;
    background: var(--green_lo);
}

.contact_panel_deco_2 {
    bottom: -6rem;
    left: -6rem;
    background: var(--orange_lo);
}

.contact_panel_inner {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
}

/* WhatsApp CTA block */
.contact_wa_wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact_wa_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: var(--r_md);
    background: var(--wa);
    color: #fff;
    font-family: var(--font_body);
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow_sm);
    transition: background var(--ease_f), transform var(--ease_f), box-shadow var(--ease_f);
}
.contact_wa_btn:hover, .contact_wa_btn:focus-visible {
    background: var(--wa_dk);
    transform: translateY(-2px);
    box-shadow: var(--shadow_md);
}

.contact_divider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact_divider_line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.contact_divider_text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text_muted);
    white-space: nowrap;
}

.contact_email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--green);
    text-decoration: none;
    transition: color var(--ease_f);
}
.contact_email:hover, .contact_email:focus-visible {
    color: var(--orange);
}



/* ═══════════════════════════════════════════════════════════════
   PROJECT CARD — real photo image support
   ═══════════════════════════════════════════════════════════════ */
.project_card_img_wrap_photo {
    background: var(--bg_surface);
}
.project_card_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* "Launching soon" / status badge overlaid on card image */
.project_card_badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.2rem 0.65rem;
    border-radius: var(--r_pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    pointer-events: none;
}
.project_card_badge_waiting {
    background: rgba(192, 86, 33, 0.12);
    color: var(--orange);
    border: 1px solid rgba(192, 86, 33, 0.25);
}

/* Two-link row inside a card (primary + secondary) */
.project_card_actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.project_card_link_secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text_muted);
    text-decoration: none;
    transition: color var(--ease_f);
}
.project_card_link_secondary:hover,
.project_card_link_secondary:focus-visible {
    color: var(--green);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≥ 640px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
    .proof_strip_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
    .proof_stat + .proof_stat {
        border-top: none;
        padding-top: 0;
        border-left: 1px solid var(--border);
        padding-left: 1.5rem;
    }
    .trust_dot { display: block; }

    .hero_ctas { flex-wrap: nowrap; }

    .form_grid { grid-template-columns: 1fr 1fr; }
    .contact_panel_inner { padding: 2.5rem; }

    .footer_inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    .footer_links_col {
        align-items: flex-start;
    }
    .footer_bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer_meta { justify-content: flex-end; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — desktop (≥ 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    /* Nav */
    .nav_list { display: flex; }
    .nav_link_cta { display: inline-flex; }
    .nav_toggle { display: none; }

    /* Hero: side by side */
    .hero_inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .hero_photo_wrap {
        width: auto;
        max-width: 26rem;
        margin-inline: 0 0 0 auto;
    }

    /* Problem */
    .problem_grid { grid-template-columns: repeat(3, 1fr); }

    /* Services */
    .services_header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .services_grid { grid-template-columns: repeat(3, 1fr); }

    /* Process — timeline on desktop (alternating left/right) */
    .process_steps::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .process_step {
        justify-content: space-between;
        gap: 0;
    }
    /* Cards take up ~45% width */
    .process_step_card {
        width: calc(50% - 2.5rem);
        flex: none;
    }
    /* Number stays centred on the line */
    .process_step_num {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0.75rem;
    }
    /* Odd steps: card on the right */
    .process_step:nth-child(odd) .process_step_card {
        order: 1;
        margin-left: auto;
    }
    /* Even steps: card on the left */
    .process_step:nth-child(even) .process_step_card {
        margin-right: auto;
    }

    /* Work */
    .work_grid { grid-template-columns: repeat(2, 1fr); }

    /* About */
    .about_grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 5rem;
    }

    /* Contact */
    .contact_panel_inner { padding: 3rem 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — large desktop (≥ 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    :root { --container_x: 2.5rem; }

    .hero_photo_wrap {
        width: 100%;
        max-width: none;
        aspect-ratio: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .js_scroll_reveal {
        opacity: 1;
        transform: none;
    }
}


@media (max-width: 680px) {
    .contact_page_form .container { width: 100%; padding-inline: .5rem; }
    .contact_page_form .contact_panel { border-radius: 1rem; padding: .75rem; }
    .contact_page_form .contact_panel_inner { padding: .75rem; }
}

/* Keep the homepage contact panel fluid without allowing desktop overflow. */
.contact_panel {
    width: min(100%, 46rem);
    min-width: 0;
}

.contact_panel_inner {
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 639px) {
    .contact_panel {
        width: 100%;
    }
}
