:root {
    --green: #1a7a4a;
    --green-light: #22a35f;
    --green-pale: #e6f5ed;
    --yellow: #f5c518;
    --yellow-dark: #d4a800;
    --dark: #0f1a0f;
    --dark-2: #1c2e1c;
    --text: #1a2a1a;
    --text-muted: #4a6450;
    --border: rgba(26, 122, 74, 0.15);
    --white: #ffffff;
    --off-white: #f7faf8;
    --card-bg: #ffffff;
    --shadow: 0 4px 32px rgba(26, 122, 74, 0.10);
}


@font-face {
    font-family: 'Heavitas';
    src: url('../Heavitas.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

h1, h2, .section-title {
    font-family: 'Heavitas', sans-serif;
}

@font-face {
    font-family: 'Basic Sans';
  src: url('../fonnts.com-basicsansalt-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Sora', sans-serif; */
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    /* text-decoration: none; */
}

.nav-logo-img {
    width: 100px;
    /* adjust size as needed */
    height: 100px;
    margin-right: 8px;
    object-fit: contain;
}


.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-cta {
    background: #0f6a4e;
    color: white !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 400 !important;
    font-size: 16px !important;
    transition: background 0.2s !important;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--green-light) !important;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 5% 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/Hero-Banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.9;

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
    /* background: linear-gradient(135deg, rgba(15,26,15,0.97) 0%, rgba(15,26,15,0.85) 60%, rgba(26,122,74,0.4) 100%); */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.4);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-family: 'Heavitas';
    font-size: clamp(40px, 5.5vw, 55px);
    font-weight: 700;
    color: #075b2b;
    line-height: 1.0;
    margin-bottom: 30px;
    margin-top: 25px;
}

.hero h1 st {
    /* font-size: clamp(36px, 5.5vw, 64px); */
    font-weight: 700;
    font-family: 'Heavitas';
    color: #dea810;
    /* font-style: italic; */
}

.hero-sub {
    font-size: 18px;
    color: black;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.4;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;

}

.hero-hooks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hook-pill {
    background: #075b2b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.hook-pill strong {
    color: var(--yellow);
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fc761d;
    color: white;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: black;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f6a4e;
    color: white;
    font-family: 'Basic Sans';
    font-weight: 500;
    font-size: 14px;
    padding: 15px 32px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #009743;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    /* background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); */
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* STATS STRIP */
.stats-strip {
    background: #0f6a4e;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Heavitas';
    font-size: 20px;
    color: white;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    font-weight: 500;
    letter-spacing: 0.02em;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* SECTIONS */
.section {
    padding: 80px 5%;
    background-color: #fff9ed;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.section-title {
    font-family: 'Heavitas';
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: #ffc010;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title st {
    color: #015a54;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* PROBLEM SECTION */
.problem-section {
    background: var(--off-white);
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.insight-img {
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    position: relative;
}

.insight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 15, 0.6) 0%, transparent 60%);
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stat-card-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.stat-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.insight-tagline {
    grid-column: 1/-1;
    background: var(--dark);
    color: white;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.insight-tagline span {
    color: var(--yellow);
}

/* MODEL SECTION */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.pillar-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
}

.pillar-label {
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.4;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* VS TABLE */
.vs-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.vs-col {
    padding: 0;
}

.vs-header {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
}

.vs-header.bad {
    background: #f8f0f0;
    color: #8b2222;
}

.vs-header.good {
    background: var(--green);
    color: white;
}

.vs-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    border-top: 1px solid var(--border);
}

.vs-row.bad {
    background: #fdf8f8;
    color: #6b3030;
}

.vs-row.good {
    background: #f4faf7;
    color: #1a5c36;
    font-weight: 600;
}

.vs-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 10px;
}

.vs-dot.x {
    background: #fde8e8;
    color: #c0392b;
}

.vs-dot.check {
    background: var(--green-pale);
    color: var(--green);
    font-weight: 700;
}

/* PRODUCT SECTION */
.product-section {
    background: var(--dark);
}

.product-section .section-title {
    color: white;
}

.product-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.product-section .section-tag {
    color: var(--yellow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.menu-card {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    position: relative;
    cursor: pointer;
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover img {
    transform: scale(1.08);
}

.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
}

.menu-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 1;
    font-size: 12px;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.demand-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.demand-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}

.demand-pct {
    font-size: 30px;
    font-weight: 800;
    color: var(--yellow);
    display: block;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.demand-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* BUSSINESS MODEL */
.foco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.foco-img {
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
}

.foco-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foco-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foco-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.foco-num {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--green);
    color: white;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.foco-point h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.foco-point p {
    font-size: 14px;
    color: var(--text-muted);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* FRANCHISE CARDS */
.franchise-section {
    background: var(--off-white);
}

.franchise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.franchise-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.franchise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 122, 74, 0.15);
}



.feat-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.franchise-img {
    height: 160px;
    overflow: hidden;
}

.franchise-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.franchise-card:hover .franchise-img img {
    transform: scale(1.06);
}

.franchise-body {
    padding: 24px;
}

.franchise-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.franchise-name {
    font-family: 'Heavitas';
    font-size: 20px;
    font-weight: 700;
    color: #ffc010;
    margin-bottom: 6px;
}

.franchise-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.franchise-invest {
    font-family: 'Heavitas';
    font-size: 40px;
    color: #0f6a4e;
    margin-bottom: 16px;
}

.franchise-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.franchise-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
}

.franchise-row span:first-child {
    color: var(--text-muted);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.franchise-row span:last-child {
    font-weight: 600;
    color: var(--text);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.franchise-tag {
    display: inline-block;
    margin-top: 16px;
    background: #0f6a4e;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
    
}

.franchise-card.featured .franchise-tag {
    /* background: var(--green); */
    color: white;
}

/* ROI SECTION */
.roi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.roi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.roi-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.roi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.roi-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.roi-val {
    font-family: 'Heavitas';
    font-size: 35px;
    color: #0f6a4e;
    margin-bottom: 6px;
}

.roi-sub {
    font-size: 12px;
    color: var(--text-muted);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* ECONOMICS */
.econ-section {
    background: var(--dark);
}

.econ-section .section-title {
    color: white;
}

.econ-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.econ-section .section-tag {
    color: var(--yellow);
}

.econ-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.econ-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.econ-kpi {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 14px;
}

.econ-kpi-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--yellow);
    display: block;
    font-family: 'Heavitas';
}

.econ-kpi-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.econ-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.econ-bar-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.econ-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.econ-bar-header span:first-child {
    color: rgba(255, 255, 255, 0.7);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.econ-bar-header span:last-child {
    font-weight: 500;
    color: white;
    font-family: 'Heavitas';
}

.econ-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.econ-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--green-light);
    transition: width 1.5s ease;
}

.econ-bar-fill.red {
    background: #e24b4a;
}

.econ-bar-fill.amber {
    background: var(--yellow-dark);
}

.econ-advantages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.econ-adv {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.econ-adv-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(26, 122, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.econ-adv h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.econ-adv p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* TRUST SECTION */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.trust-img {
    border-radius: 16px;
    overflow: hidden;
    height: 440px;
}

.roi-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ff781d;
}

.econ-adv-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffc010;
}

.trust-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.trust-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: 'Heavitas';
}

.trust-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* PROCESS SECTION */
.process-section {
    background: var(--off-white);
}

.steps-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: #fff9ed;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}

.step-num-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--green);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Heavitas';
}

.step-day {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.step-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;

}

/* TESTIMONIALS */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.stars {
    color: var(--yellow);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    /* font-style: italic; */
}

.testi-author {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
}

.testi-role {
    font-size: 12px;
    color: var(--text-muted);
}

.testi-city {
    font-size: 11px;
    color: var(--green);
    font-weight: 600;
}

/* FINAL CTA */
.cta-section {
    background: url(../images/bg.png);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.cta-section h2 {
    font-family: 'Heavitas';
    font-size: clamp(22px, 4vw, 44px);
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 36px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--green);
    /* font-family: 'Sora', sans-serif; */
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.btn-white:hover {
    background: #dea810;
    color: var(--dark);
    transform: translateY(-2px);
}

/* LEAD FORM */
.form-section {
    padding: 80px 5%;
    background: var(--dark);
}

.form-inner {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.form-section .section-tag {
    color: var(--green);
}

.form-section .section-title {
    color: var(--text);
}

.form-section .section-sub {
    color: var(--text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 1.5px solid #e0e8e4;
    border-radius: 10px;
    /* font-family: 'Sora', sans-serif; */
    font-size: 14px;
    color: var(--text);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 122, 74, 0.12);
    background: white;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 16px;
    background: #0f6a4e;
    color: white;
    /* font-family: 'Basic Sans'; */
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
     font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    background: var(--green-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 122, 74, 0.25);
}

.form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #dea810;
    /* change if needed */
    color: #fff;
}

/* Logo Styling */
.footer-logo {
    margin-bottom: 20px;
    /* font-family: 'Basic Sans'; */
     font-family: 'Inter', sans-serif;
}

.footer-logo img {
    width: 120px;
    /* adjust based on your logo */
    height: auto;
    margin-top: -20px;
    margin-bottom: -10px;
}





/* RESPONSIVE */
@media (max-width: 900px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-grid,
    .foco-grid,
    .trust-grid,
    .econ-grid {
        grid-template-columns: 1fr;
    }

    .insight-img,
    .foco-img,
    .trust-img {
        height: 280px;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .demand-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .franchise-grid {
        grid-template-columns: 1fr;
    }

    .roi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-track {
        grid-template-columns: 1fr 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-inner {
        padding: 28px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 120px 5% 80px;
        min-height: auto;
        background: #f4f1e5;
        /* Matching light beige from the image background */
    }

    .hero-bg {
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
        opacity: 1;
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .steps-track {
        grid-template-columns: 1fr;
    }

    .stat-cards {
        grid-template-columns: 1fr 1fr;
    }

    .econ-kpis {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .hero {
        padding: 80px 5% 60px;
        background: #f4f1e5;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-bg {
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
    }
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}