*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bg-wash: #f5f2ed;
    --navy-main: #0d1b2b;
    --cta-orange: #ff6b00; 
    --white: #ffffff;
    --gold: #d7a83f;
    --gold-soft: #fff4d8;
    --green: #2f7d59;
    --green-soft: #e6f4ee;
    --line: #e1e4e8;
    --text-muted: #5e6877;
    --text-body: #3b4454;
    --navy-hover: #1a3050;
    --gold-hover: #E5B94D;
    --fs-2xs: clamp(9px, 0.5vw + 7px, 10px);
    --fs-xs: clamp(10px, 0.65vw + 8px, 11px);
    --fs-sm: clamp(12px, 0.5vw + 10px, 13px);
    --fs-base: clamp(13px, 0.45vw + 11.5px, 14px);
    --fs-body: clamp(14px, 0.45vw + 12px, 15px);
    --fs-body-lg: clamp(15px, 0.45vw + 13px, 16px);
    --fs-ui: clamp(13px, 0.4vw + 11px, 15px);
    --fs-copy: clamp(15px, 0.6vw + 13px, 17px);
    --fs-lead: clamp(16px, 0.9vw + 12px, 20px);
    --fs-nav: clamp(15px, 0.9vw + 11px, 18px);
    --fs-brand: clamp(16px, 1.05vw + 12px, 22px);
    --fs-card: clamp(12px, 0.8vw + 9px, 15px);
    --fs-title-sm: clamp(18px, 1vw + 13px, 22px);
    --fs-title-md: clamp(21px, 1.2vw + 15px, 28px);
    --fs-display-sm: clamp(26px, 4vw + 7px, 52px);
    --fs-display-md: clamp(26px, 4.7vw + 3px, 56px);
    --fs-display-lg: clamp(32px, 4.75vw + 10px, 58px);
    --fs-price: clamp(48px, 5.3vw + 16px, 76px);
    --fs-price-sup: clamp(21px, 2.45vw + 9px, 34px);
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-wash);
    color: var(--navy-main);
}

/* NAV */
.navbar {
    background: var(--navy-main);
    display: flex;
    justify-content: center;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}



.navbar-inner {
    max-width: 1240px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 89px;
    position: relative;
    margin-left: 10px;
}

.navbar-brand {
    color: white;
    font-size: var(--fs-brand);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: var(--fs-nav);
    font-weight: 400;
    transition: color 0.15s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.navbar-toggle {
    display: none;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    border-radius: 0;
    width: 44px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
}

.navbar-toggle-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.navbar-toggle-icon path {
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(rgba(245,242,237,0.75), rgba(245,242,237,0.75)),
    url('../images/farmer.webp');
    background-size: cover;
    background-position: center;
}

.hero-inner {
    max-width: 960px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE TEXT */
.hero-text h1 {
    font-size: var(--fs-display-lg);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text p {
    font-size: var(--fs-lead);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.5;
    color: var(--text-body);
}

.btn-cta {
    display: inline-block;
    background: #ff6b00;
    color: white;
    padding: 22px 48px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-nav);
    box-shadow: 0 10px 30px rgba(255,107,0,0.25);
    transition: all 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,107,0,0.35);
}

/* TRUST ROW WITH ICONS */
.trust-row {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    font-size: var(--fs-body-lg);
    color: var(--navy-main);
    flex-wrap: wrap;
    border-top: 1px solid rgba(13, 27, 43, 0.1);
    padding-top: 30px;
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.trust-row svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

/* RIGHT SIDE CARD */
.report-preview-container {
    display: flex;
    justify-content: center;
}

.report-card {
    background: var(--white);
    width: 100%;
    max-width: 460px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(13,27,43,0.12);
    overflow: hidden;
    border: 1px solid var(--line);
    font-size: var(--fs-card);
}

.report-card-header {
    background: var(--navy-main);
    color: white;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-card-header .brand { 
    font-size: 1em; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

.report-card-header .date { 
    font-size: 0.75em; 
    opacity: 0.7; 
    font-weight: 400; 
}

.report-card-body { 
    padding: 32px; 
}

.report-kicker { 
    font-size: 0.8125em; 
    font-weight: 700; 
    color: var(--gold); 
    text-transform: uppercase; 
    margin-bottom: 8px; 
    letter-spacing: 2px;
}

.report-h2 { 
    font-size: 2em; 
    font-weight: 900; 
    color: var(--navy-main); 
    margin: 0 0 24px; 
    letter-spacing: -0.5px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.signal-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    background: #fbfcfe;
}

.signal-name { 
    font-size: 1em; 
    font-weight: 700; 
    margin-bottom: 8px; 
    display: block; 
    color: var(--navy-main); 
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.badge.hold { 
    background: var(--gold-soft); 
    color: #8a6114; 
    border: 1px solid rgba(215,168,63,0.3); 
}

.badge.sell { 
    background: var(--green-soft); 
    color: var(--green); 
    border: 1px solid rgba(47,125,89,0.3); 
}

.bottom-line-box {
    background: var(--navy-main);
    color: white;
    padding: 24px;
    border-radius: 18px;
    text-align: left;
}

.bottom-line-box strong { 
    font-size: 0.92em; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 8px; 
    color: var(--gold); 
    letter-spacing: 1px; 
}

.bottom-line-box p { 
    font-size: 1.12em; 
    margin: 0; 
    opacity: 0.9; 
    line-height: 1.5; 
    font-weight: 400; 
}

/* SHARED SECTION LAYOUT */
.features,
.proof-section,
.testimonials-section,
.pricing-section,
.faq-section {
    display: flex;
    justify-content: center;
    padding: 96px 20px;
}

/* FEATURES SECTION */
.features {
    background: var(--bg-wash);
}

.features-inner {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    text-align: center;
    font-size: var(--fs-display-sm);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}

.section-sub {
    text-align: center;
    font-size: clamp(16px, 1.2vw + 11px, 21px);
    color: var(--text-muted);
    margin: 0 0 80px;
}

.signal-strip-inner {
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Mobile overrides below */
}

@media (max-width: 1024px) {
    .signal-strip-inner {
        max-width: 480px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
        justify-items: start;
    }
}

.strip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-right: 1px solid var(--line);
}

.strip-item:first-child {
    padding-left: 0;
}

.strip-item:last-child {
    border-right: none;
}

.strip-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 0 0 1em;
}

.strip-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.strip-text h4 {
    font-size: var(--fs-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy-main);
    margin: 0 0 12px;
}

.strip-text p {
    font-size: var(--fs-copy);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* SHARED CARD REVEAL ANIMATION */
.perf-card,
.testi-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.perf-card.is-visible,
.testi-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.perf-card:hover,
.testi-card:hover {
    transform: translateY(-4px);
}

.perf-card.is-visible:hover,
.testi-card.is-visible:hover {
    transform: translateY(-4px);
}

/* PROOF / PERFORMANCE SECTION */
.proof-section {
    background: var(--white);
}

.proof-inner {
    max-width: 960px;
    width: 80%;
    text-align: center;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.perf-card {
    background: var(--bg-wash);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 38px 28px;
    text-align: left;
    box-shadow: 0 4px 24px rgba(13,27,43,0.07);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.perf-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,43,0.12);
}

.perf-crop-title {
    font-size: var(--fs-title-sm);
    font-weight: 900;
    color: var(--navy-main);
    text-align: center;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
}

.perf-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0 0 20px;
}

.perf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.perf-label-signal {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perf-label-avg {
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--text-muted);
}

.perf-value-main {
    font-size: var(--fs-ui);
    font-weight: 900;
    color: var(--navy-main);
}

.perf-value-sub {
    font-size: var(--fs-body-lg);
    font-weight: 500;
    color: var(--text-muted);
}

.perf-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
}

.perf-outperformance-label {
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-main);
}

.perf-badge {
    background: var(--green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: var(--fs-base);
    font-weight: 700;
    white-space: nowrap;
}

.proof-disclaimer {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.8;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: var(--bg-wash);
}

.testimonials-inner {
    max-width: 960px;
    width: 100%;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 4px 24px rgba(13,27,43,0.06);
}

.testi-card:hover {
    box-shadow: 0 12px 40px rgba(13,27,43,0.11);
}

.testi-quote-mark {
    color: var(--gold);
    font-size: var(--fs-display-md);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    font-family: Georgia, serif;
}

.testi-headline {
    font-size: var(--fs-copy);
    font-weight: 700;
    color: var(--navy-main);
    margin: 0;
    line-height: 1.4;
}

.testi-body {
    font-size: var(--fs-body-lg);
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-body-lg);
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.testi-author-name {
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--navy-main);
    margin: 0 0 2px;
}

.testi-author-detail {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: 0;
}

/* PRICING SECTION */
.pricing-section {
    background: var(--white);
}

.pricing-inner {
    max-width: 1150px;
    width: 100%;
    text-align: center;
}

.pricing-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 64px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-wash);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(17,24,39,.12);
    border-color: var(--navy-main);
}

.pricing-card.pricing-includes:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
    cursor: default;
}

.pricing-card.featured {
    border-color: var(--navy-main);
    border-width: 2px;
}

.pricing-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(17,24,39,.18);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-badge.green {
    background: var(--navy-main);
    color: var(--white);
}

.pricing-badge.gold {
    background: var(--gold);
    color: var(--navy-main);
}

.pricing-plan-name {
    font-size: var(--fs-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    color: var(--text-muted);
}



.pricing-price {
    font-size: var(--fs-price);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0 0 4px;
    color: var(--navy-main);
}



.pricing-price sup {
    font-size: var(--fs-price-sup);
    font-weight: 700;
    letter-spacing: 0;
    vertical-align: super;
}

.pricing-period {
    font-size: var(--fs-body-lg);
    color: var(--text-muted);
    margin: 0 0 28px;
    font-weight: 500;
}



.pricing-desc {
    font-size: var(--fs-copy);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 36px;
    min-height: 48px;
}



.pricing-btn {
    display: block;
    width: 100%;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: var(--fs-ui);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid var(--navy-main);
    color: var(--navy-main);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    box-sizing: border-box;
}

.pricing-btn:hover {
    background: var(--navy-main);
    color: var(--white);
}

.pricing-card.featured .pricing-btn {
    background: var(--navy-main);
    color: var(--white);
    border-color: var(--navy-main);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--navy-hover);
    border-color: var(--navy-hover);
}



.pricing-cancel {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin: 16px 0 0;
}



.pricing-includes {
    text-align: left;
}

.pricing-includes-title {
    font-size: var(--fs-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.pricing-includes ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-body-lg);
    font-weight: 500;
    color: var(--navy-main);
}

.pricing-includes li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-soft);
    border: 1.5px solid rgba(47,125,89,0.3);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232f7d59' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* FARMER CTA BANNER */
.farmer-banner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/farmer.webp') center/cover no-repeat;
}

.farmer-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,27,43,0.82) 0%, rgba(13,27,43,0.45) 40%, rgba(13,27,43,0.0) 70%);
}

.farmer-banner-inner {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
    max-width: 680px;
}

.farmer-banner-inner h2 {
    font-size: var(--fs-display-md);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 40px;
}

.farmer-banner-inner .btn-cta {
    font-size: var(--fs-ui);
    padding: 18px 40px;
}

/* FAQ SECTION */
.faq-section {
    background: var(--navy-main);
}

.faq-inner {
    max-width: 800px;
    width: 100%;
}

.faq-heading {
    text-align: center;
    font-size: var(--fs-display-sm);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--white);
    margin: 0 0 64px;
}

.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.faq-question-text {
    font-size: var(--fs-lead);
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(21px, 0.8vw + 18px, 24px);
    font-weight: 300;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.faq-item.is-open .faq-icon {
    opacity: 1;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 28px;
    font-size: var(--fs-body-lg);
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
}

.faq-item.is-open .faq-answer {
    max-height: 400px;
}

/* FOOTER */
.site-footer {
    background: var(--navy-main);
    padding: 60px 20px 0;
}

.footer-inner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: baseline;
    row-gap: 10px;
    column-gap: 60px;
    padding-bottom: 16px;
}

.footer-heading {
    font-size: var(--fs-title-md);
    font-weight: 900;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: var(--fs-body);
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.footer-col-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 6px;
}

.footer-contact-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    margin: 0 0 10px;
}

.footer-contact-email {
    font-size: var(--fs-copy);
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-email:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 12px 0 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding: 20px 0 40px;
    font-size: var(--fs-2xs);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 680px;
    background: var(--navy-main);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 40px rgba(13,27,43,0.35);
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
}

.cookie-banner-text {
    font-size: var(--fs-base);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    color: rgba(255,255,255,0.85);
}

.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: var(--fs-base);
    font-weight: 700;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.7);
}

.cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.85);
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--navy-main);
    border-color: var(--gold);
}

.cookie-btn-accept:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}

/* UTILITY */
.link-gold {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 480px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }
}

/* MOBILE */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 32px;
    }

    .trust-row {
        justify-content: center;
        gap: 20px;
    }

    .report-preview-container {
        justify-content: center;
        margin-top: 40px;
    }

    .faq-heading {
        margin-bottom: 48px;
    }

    .signal-strip-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strip-item {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 40px;
    }

    .strip-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .strip-icon {
        width: 52px;
        height: 52px;
    }

    .strip-icon svg {
        width: 22px;
        height: 22px;
    }

    .performance-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto 32px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 48px 36px;
    }

    .pricing-includes {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 14px;
    }

    .navbar-inner {
        height: 74px;
    }

    .navbar-brand {
        letter-spacing: 0.9px;
    }

    .navbar-links {
        gap: 20px;
    }

    .testimonials-section {
        padding: 72px 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
        gap: 18px;
    }

    .testi-card {
        padding: 24px;
        gap: 16px;
    }

    .testi-body {
        line-height: 1.6;
    }

    .testi-footer {
        gap: 12px;
        padding-top: 16px;
    }

    .site-footer {
        padding-top: 42px;
    }

    /* Mobile Footer Ordering */
    .footer-top {
        display: flex;
        flex-direction: column;
    }

    /* This makes the inner items break out of their columns for mobile reordering */
    .footer-col-left, 
    .footer-col-right {
        display: contents;
    }

    /* 1. Contact */
    .footer-heading { 
        order: 1; 
        margin-bottom: 8px; 
    }
    
    /* 2. Questions? Reach out... */
    .footer-tagline { 
        order: 2; 
        font-size: var(--fs-body); 
        margin-bottom: 32px; /* Space before Email */
    }

    /* 3. Email Label */
    .footer-contact-label { 
        order: 3; 
        margin-bottom: 8px; 
    }

    /* 4. research@stellarius.com */
    .footer-contact-email { 
        order: 4; 
        margin-bottom: 32px; 
        font-size: var(--fs-body); /* This makes it smaller */
    }

    /* 5. X Logo */
    .footer-social { 
        order: 5; 
        margin-top: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-legal {
        gap: 14px;
        flex-wrap: wrap;
    }

    /* Hero */
    .hero {
        padding: 56px 16px;
        background-position: 68% center;
    }

    .hero-text h1 {
        letter-spacing: -1px;
    }

    .hero-text p {
        margin-bottom: 24px;
    }

    .btn-cta {
        padding: 16px 32px;
    }

    .trust-row {
        flex-direction: column;
        gap: 14px;
        padding-top: 20px;
        align-items: flex-start;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-row span {
        justify-content: flex-start;
    }

    .desktop-br {
        display: none;
    }

    /* Report card */
    .report-card-body {
        padding: 24px;
    }

    /* Section paddings */
    .features {
        padding: 64px 16px;
    }

    .proof-section {
        padding: 64px 16px;
    }

    .perf-card {
        padding: 28px 20px;
    }

    .pricing-section {
        padding: 64px 16px;
    }

    /* FAQ */
    .faq-section {
        padding: 64px 16px;
    }

    .faq-heading {
        margin-bottom: 40px;
    }

    /* Farmer CTA banner */
    .farmer-banner {
        min-height: 340px;
    }

    .farmer-banner-inner {
        padding: 40px 24px;
        max-width: 100%;
    }

    .farmer-banner-inner h2 {
        letter-spacing: -0.5px;
        margin-bottom: 28px;
    }
}

@media (max-width: 900px) {
    .navbar {
        padding: 0 12px; /* Standard mobile padding */
    }

    .navbar-inner {
        height: 77px; /* Header height */
        position: relative; /* Anchor for the absolute-positioned menu */
    }

    .navbar-brand {
        letter-spacing: 0.6px;
        max-width: calc(100% - 48px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navbar-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        flex-shrink: 0;
    }

    /* DROPDOWN - MATCHES HEADER WIDTH */
    .navbar-links {
        display: none;
        position: absolute;
        left: -50px;           /* Offset navbar padding to match header edges */
        right: -12px;          /* Offset navbar padding to match header edges */
        top: 100%;             /* Drops down from the bottom of the 77px header */
        width: auto;           /* Spans between left/right offsets */
        box-sizing: border-box;
        padding: 8px 0;
        gap: 0;
        flex-direction: column;
        background: var(--navy-main); /* Matches header color */
        border-top: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 14px 30px rgba(13,27,43,0.26);
        z-index: 1000;
    }

    .navbar.is-menu-open .navbar-links {
        display: flex;
    }

    .navbar-links li {
        width: 100%;
    }

    .navbar-links a {
        display: block;
        padding: 14px 20px;
        border-radius: 0;
        text-align: right;      /* Aligns text to the right as in original mobile design */
        font-size: var(--fs-nav);
    }

    .navbar-links a:hover,
    .navbar-links a.active {
        background: rgba(255,255,255,0.1);
    }
}

@media (max-width: 480px) {
    .section-sub {
        margin-bottom: 48px;
    }


    /* .pricing-plan-name {
        font-size: 1.15em;
    }

    .pricing-cancel {
        font-size: 1.08em;
    } */

    .testimonials-section {
        padding: 56px 12px;
    }

    .testi-card {
        padding: 20px;
    }

    .strip-icon {
        width: 44px;
        height: 44px;
    }

    .strip-icon svg {
        width: 18px;
        height: 18px;
    }

    .site-footer {
        padding: 34px 16px 0;
    }

    .footer-disclaimer {
        padding: 16px 0 24px;
    }

    /* Hero */
    .hero {
        padding: 40px 12px;
        background-position: 68% center;
    }

    .hero-text h1 {
        letter-spacing: -0.5px;
    }

    .btn-cta {
        padding: 14px 24px;
    }

    /* Report card */
    .report-card-body {
        padding: 20px;
    }

    /* Sections */
    .features,
    .proof-section,
    .pricing-section {
        padding: 48px 12px;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-card {
        padding: 40px 28px;
    }
    
    .pricing-desc {
        margin-bottom: 10px;
    }
    .pricing-btn {
        font-size: var(--fs-base);
        padding: 14px 16px;
        margin-top: 0;
    }

    /* FAQ */
    .faq-section {
        padding: 48px 12px;
    }

    .faq-heading {
        margin-bottom: 32px;
    }

    /* Farmer CTA banner */
    .farmer-banner {
        min-height: 260px;
    }

    .farmer-banner-inner {
        padding: 32px 16px;
    }

    .farmer-banner-inner h2 {
        margin-bottom: 20px;
    }

    .farmer-banner-inner .btn-cta {
        padding: 13px 22px;
    }
}
