/* ================================================================
   ABOUT PAGE — Foods Farming  |  about.css  v2
   ================================================================ */

.about-page *, .about-page *::before, .about-page *::after { box-sizing: border-box; }
.about-page { font-family: 'Open Sans', 'Lato', sans-serif; color: #2d2d2d; line-height: 1.7; }
.about-page img { max-width: 100%; display: block; }
.about-page a { text-decoration: none; }
.about-page ul { margin: 0; padding: 0; list-style: none; }
.about-page h1, .about-page h2, .about-page h3, .about-page h4 { margin-top: 0; line-height: 1.3; }
.about-page p { margin-top: 0; }

/* ── Global text colour resets (override parent theme) ── */
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 { color: #111; }
.about-page p { color: #555; }
.about-page a { color: #6ab43e; }
/* buttons must keep their explicit text colours, not inherit the link override */
.about-page .ff-btn-green,
.about-page .ff-btn-dark,
.about-page .ff-btn-outline-white,
.about-page .ff-report-btn { color: #fff; }
.about-page .ff-btn-white { color: #214c07; }
.about-page .ff-btn-green:hover,
.about-page .ff-btn-dark:hover,
.about-page .ff-btn-outline-white:hover,
.about-page .ff-report-btn:hover { color: #fff; }
.about-page .ff-btn-white:hover { color: #214c07; }

/* dark-section text must stay white */
.about-page .ff-editorial h1,
.about-page .ff-editorial h2,
.about-page .ff-editorial h3,
.about-page .ff-editorial h4,
.about-page .ff-cta h1,
.about-page .ff-cta h2,
.about-page .ff-cta h3 { color: #fff; }
.about-page .ff-editorial p,
.about-page .ff-editorial li,
.about-page .ff-cta p { color: rgba(255,255,255,.82); }

/* hero breadcrumb links — semi-white on dark bg */
.about-page .ff-breadcrumb,
.about-page .ff-breadcrumb a { color: rgba(255,255,255,.7); }
.about-page .ff-breadcrumb a:hover { color: #fff; }

/* stat numbers stay dark green */
.about-page .ff-stat-num { color: #214c07; }
.about-page .ff-stat-lbl { color: #888; }

/* ── layout ── */
.ff-wrap { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.ff-wrap-sm { max-width: 1000px; margin: 0 auto; padding: 0 30px; }

/* ── section tag ── */
.ff-tag {
    display: inline-block;
    background: #e8f5df; color: #3a7a0e;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}

/* ── section heading ── */
.ff-heading {
    font-size: 32px; font-weight: 800; color: #111;
    font-family: 'Montserrat', 'OpenSansRegular', sans-serif; margin-bottom: 0;
    display: block; position: relative;
}
.ff-heading::after {
    content: ''; display: block; width: 52px; height: 4px;
    background: #6ab43e; border-radius: 2px; margin-top: 12px;
}
.ff-center {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ff-center .ff-heading::after { margin-left: auto; margin-right: auto; }

/* ── icon circle ── */
.ff-icon-circle {
    width: 64px; height: 64px; border-radius: 50%; background: #6ab43e;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background .25s, transform .25s;
}
.ff-icon-circle i { font-size: 24px; color: #fff; }
.ff-icon-circle.sm { width: 48px; height: 48px; }
.ff-icon-circle.sm i { font-size: 18px; }
.ff-icon-circle.lg { width: 72px; height: 72px; }
.ff-icon-circle.lg i { font-size: 28px; }

/* ── buttons ── */
.ff-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 26px; border-radius: 7px; font-size: 15px; font-weight: 700;
    transition: all .25s; cursor: pointer; border: none;
}
.ff-btn-green { background: #6ab43e; color: #fff; }
.ff-btn-green:hover { background: #559530; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(106,180,62,.35); }
.ff-btn-dark { background: #214c07; color: #fff; }
.ff-btn-dark:hover { background: #163005; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(33,76,7,.35); }
.ff-btn-white { background: #fff; color: #214c07; }
.ff-btn-white:hover { background: #e8f5df; color: #214c07; transform: translateY(-2px); }
.ff-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.65); }
.ff-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

/* ================================================================
   1. HERO
   ================================================================ */
.ff-hero {
    position: relative; background-size: cover; background-position: center;
    min-height: 520px; display: flex; align-items: center; overflow: hidden;
}
.ff-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.15) 100%);
}
.ff-hero-inner {
    position: relative; z-index: 2; display: flex; align-items: center;
    justify-content: flex-start; width: 100%; max-width: 1200px;
    margin: 0 auto; padding: 80px 30px;
}
.ff-hero-text { max-width: 620px; }
.ff-breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.ff-breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.ff-breadcrumb a:hover { color: #fff; }
.ff-breadcrumb i { font-size: 10px; }
.ff-hero-text h1 {
    font-size: 50px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 18px;
    font-family: 'Montserrat', 'OpenSansRegular', sans-serif;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.ff-hero-text h1 span { color: #a8db6e; }
.ff-hero-text p { font-size: 17px; color: rgba(255,255,255,.88); line-height: 1.75; margin-bottom: 32px; max-width: 540px; }
.ff-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* removed: .ff-hero-img */
.ff-hero-img img {
    width: 100%; height: 400px; object-fit: cover;
    border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

/* ── Stats Bar ── */
.ff-stats {
    background: #fff; border-top: 5px solid #6ab43e;
    box-shadow: 0 6px 30px rgba(0,0,0,.08); position: relative; z-index: 10;
}
.ff-stats-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: grid; grid-template-columns: repeat(4,1fr);
}
.ff-stat {
    padding: 30px 24px; display: flex; align-items: center; gap: 16px;
    justify-content: center; border-right: 1px solid #f0f0f0; transition: background .2s;
}
.ff-stat:last-child { border-right: none; }
.ff-stat:hover { background: #f9fdf6; }
.ff-stat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, #6ab43e, #478a41);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 4px 14px rgba(106,180,62,.3);
}
.ff-stat-icon i { font-size: 20px; color: #fff; }
.ff-stat-num { font-size: 26px; font-weight: 800; color: #214c07; line-height: 1; }
.ff-stat-lbl { font-size: 12px; color: #888; margin-top: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* ================================================================
   2. MISSION
   ================================================================ */
.ff-mission { background: #fff; padding: 90px 0; }
.ff-mission-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: center;
}
.ff-mission-img-wrap { position: relative; }
.ff-mission-img-wrap img {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 20px; box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.ff-mission-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: #6ab43e; color: #fff; width: 110px; height: 110px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(106,180,62,.4); font-size: 12px; font-weight: 700;
    text-align: center; line-height: 1.3; border: 4px solid #fff;
}
.ff-mission-badge span { font-size: 28px; font-weight: 800; line-height: 1; }
.ff-mission-content h2 {
    font-size: 34px; font-weight: 800; color: #111; line-height: 1.25; margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
.ff-mission-content p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.ff-mission-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.ff-pillar { text-align: center; padding: 20px 12px; border-radius: 12px; background: #f9fdf6; border: 1px solid #e4f0d9; }
.ff-pillar .ff-icon-circle { margin: 0 auto 12px; width: 52px; height: 52px; }
.ff-pillar .ff-icon-circle i { font-size: 20px; }
.ff-pillar h4 { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.ff-pillar p { font-size: 13px; color: #777; margin: 0; line-height: 1.5; }

/* ================================================================
   3. WHAT WE OFFER
   ================================================================ */
.ff-offer { background: #f4faf0; padding: 90px 0; }
.ff-offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.ff-offer-card {
    background: #fff; border-radius: 16px; padding: 36px 28px; text-align: center;
    border-top: 4px solid #6ab43e; box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow .3s, transform .3s;
}
.ff-offer-card:hover { box-shadow: 0 14px 44px rgba(106,180,62,.18); transform: translateY(-6px); }
.ff-offer-card .ff-icon-circle { margin: 0 auto 18px; }
.ff-offer-card h3 { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 10px; }
.ff-offer-card p { font-size: 14px; color: #666; line-height: 1.75; margin: 0; }

/* ================================================================
   4. OUR STORY  — text left + VERTICAL timeline right
   ================================================================ */
.ff-story { background: #fff; padding: 90px 0; }
.ff-story-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.ff-story-text h2 {
    font-size: 34px; font-weight: 800; color: #111; margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}
.ff-story-text p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.ff-timeline { position: relative; padding-left: 0; margin-top: 8px; }
.ff-timeline::before {
    content: ''; position: absolute;
    left: 32px; top: 32px; bottom: 32px;
    width: 2px; background: linear-gradient(to bottom, #6ab43e, #c8e4b4);
}
.ff-tl-step { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 36px; position: relative; z-index: 1; }
.ff-tl-step:last-child { margin-bottom: 0; }
.ff-tl-step .ff-icon-circle { flex-shrink: 0; box-shadow: 0 0 0 5px #fff, 0 0 0 7px #c8e4b4; }
.ff-tl-step:hover .ff-icon-circle { background: #478a41; transform: scale(1.08); }
.ff-tl-body { padding-top: 14px; }
.ff-tl-body h4 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.ff-tl-body p { font-size: 14px; color: #666; margin: 0; line-height: 1.65; }

/* ================================================================
   5. ACCURACY & TRUST — horizontal card strips
   ================================================================ */
.ff-accuracy { background: #f4faf0; padding: 90px 0; }
.ff-accuracy-intro {
    font-size: 15px; color: #666; margin-top: 14px; max-width: 680px;
    margin-left: auto; margin-right: auto; line-height: 1.75; text-align: center;
}
.ff-accuracy-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.ff-accuracy-card {
    background: #fff; border-radius: 14px; padding: 26px 32px;
    display: grid; grid-template-columns: 56px 200px 1fr; gap: 24px; align-items: center;
    box-shadow: 0 2px 14px rgba(0,0,0,.05); border-left: 5px solid #6ab43e;
    transition: box-shadow .25s, transform .25s;
}
.ff-accuracy-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateX(4px); }
.ff-accuracy-num {
    font-size: 28px; font-weight: 800; color: #d0e8c0;
    font-family: 'Montserrat', sans-serif; line-height: 1;
}
.ff-accuracy-title { font-size: 15px; font-weight: 700; color: #214c07; line-height: 1.4; }
.ff-accuracy-desc { font-size: 14px; color: #666; line-height: 1.7; }

/* ================================================================
   6. TRUSTED SOURCES
   ================================================================ */
.ff-sources { background: #fff; padding: 90px 0; }
.ff-sources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.ff-source-card {
    border-radius: 16px; padding: 32px 26px; border: 2px solid #e8f0e0; background: #fff;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    display: flex; flex-direction: column; gap: 14px;
}
.ff-source-card:hover { border-color: #6ab43e; box-shadow: 0 10px 32px rgba(106,180,62,.14); transform: translateY(-4px); }
.ff-source-top { display: flex; align-items: center; gap: 14px; }
.ff-source-badge {
    width: 54px; height: 54px; border-radius: 12px;
    background: linear-gradient(135deg, #214c07, #478a41);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: #fff; text-align: center;
    line-height: 1.2; letter-spacing: .5px; flex-shrink: 0;
}
.ff-source-card h4 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0; }
.ff-source-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* ================================================================
   7. CORE VALUES
   ================================================================ */
.ff-values { background: #f4faf0; padding: 90px 0; }
.ff-values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 50px; }
.ff-value-card {
    background: #fff; border-radius: 16px; padding: 28px 26px;
    display: flex; gap: 18px; align-items: flex-start;
    box-shadow: 0 2px 14px rgba(0,0,0,.05);
    transition: box-shadow .25s, transform .25s;
}
.ff-value-card:hover { box-shadow: 0 10px 30px rgba(106,180,62,.14); transform: translateY(-3px); }
.ff-value-card .ff-icon-circle { flex-shrink: 0; }
.ff-value-body h4 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.ff-value-body p { font-size: 14px; color: #666; line-height: 1.75; margin: 0; }

/* ================================================================
   8. WHAT WE ARE NOT
   ================================================================ */
.ff-not { background: #fff; padding: 90px 0; }
.ff-not-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
.ff-not-card {
    background: #fffdf6; border: 1px solid #f5e0a0; border-left: 5px solid #f0a830;
    border-radius: 12px; padding: 22px 26px;
    display: flex; gap: 18px; align-items: flex-start; transition: box-shadow .25s;
}
.ff-not-card:hover { box-shadow: 0 6px 20px rgba(240,168,48,.1); }
.ff-not-icon {
    width: 42px; height: 42px; border-radius: 10px; background: #fff3cc;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ff-not-icon i { font-size: 18px; color: #d98b00; }
.ff-not-body strong { font-size: 15px; font-weight: 700; color: #1a1a1a; display: block; margin-bottom: 5px; }
.ff-not-body span { font-size: 14px; color: #666; line-height: 1.7; }

/* ================================================================
   9. EDITORIAL POLICY
   ================================================================ */
.ff-editorial { background: linear-gradient(145deg, #1a3f05 0%, #214c07 60%, #2d6610 100%); padding: 90px 0; }
.ff-editorial-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 30px;
    display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start;
}
.ff-editorial-main h2 {
    font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}
.ff-editorial-main > p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 28px; }
.ff-editorial-list { display: flex; flex-direction: column; gap: 14px; }
.ff-editorial-list li {
    display: flex; gap: 14px; align-items: flex-start;
    font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.65;
}
.ff-editorial-list li .chk-wrap {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(106,180,62,.3); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.ff-editorial-list li .chk-wrap i { font-size: 11px; color: #a8db6e; }
.ff-editorial-sidebar {
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px; padding: 36px; backdrop-filter: blur(4px);
}
.ff-editorial-sidebar .ff-icon-circle { margin-bottom: 20px; background: rgba(106,180,62,.5); }
.ff-editorial-sidebar h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.35; }
.ff-editorial-sidebar h3 .acc { color: #a8db6e; }
.ff-editorial-sidebar p { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 24px; }
.ff-report-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: #6ab43e; color: #fff; padding: 12px 24px; border-radius: 8px;
    font-weight: 700; font-size: 15px; transition: background .25s, transform .25s;
}
.ff-report-btn:hover { background: #559530; color: #fff; transform: translateY(-2px); }

/* ================================================================
   10. GET IN TOUCH
   ================================================================ */
.ff-contact { background: #f4faf0; padding: 90px 0; }
.ff-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    margin-top: 50px; align-items: stretch;
}
.ff-contact-grid--solo {
    grid-template-columns: 1fr; justify-items: center;
}
.ff-contact-grid--solo .ff-contact-form-wrap { width: 100%; max-width: 560px; }
.ff-contact-form-wrap {
    background: #fff; border-radius: 20px; padding: 48px 36px;
    border: 1px solid #e4f0d9; box-shadow: 0 4px 24px rgba(0,0,0,.06);
    height: 100%; display: flex; align-items: center; justify-content: center;
}
.ff-contact-cta {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.ff-contact-cta .ff-icon-circle { margin-bottom: 22px; box-shadow: 0 10px 28px rgba(106,180,62,.28); }
.ff-contact-cta h3 {
    font-size: 22px; font-weight: 800; color: #1a1a1a; margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}
.ff-contact-cta p {
    font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 30px; max-width: 420px;
}
.ff-contact-cta .ff-btn { padding: 14px 32px; }

/* ================================================================
   11. CTA BANNER
   ================================================================ */
.ff-cta {
    background: linear-gradient(135deg, #1a3f05 0%, #3a7a1a 50%, #214c07 100%);
    padding: 90px 0; position: relative; overflow: hidden;
}
.ff-cta::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.ff-cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; text-align: center; position: relative; z-index: 2; }
.ff-cta h2 {
    font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}
.ff-cta > div > p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; }
.ff-cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* success message */
.ff-success-msg {
    background: #e8f5df; border: 2px solid #6ab43e; border-radius: 12px;
    padding: 16px 22px; display: flex; align-items: center; gap: 12px;
    font-size: 15px; color: #214c07; font-weight: 600; margin-bottom: 20px;
}
.ff-success-msg i { font-size: 20px; color: #6ab43e; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── Large tablet (≤1100px) ── */
@media (max-width: 1100px) {
    .ff-hero-text h1 { font-size: 40px; }
    .ff-mission-grid { gap: 48px; }
    .ff-story-grid { gap: 48px; }
    .ff-not-grid { gap: 48px; }
}

/* ── Tablet landscape (≤1024px) ── */
@media (max-width: 1024px) {
    .ff-hero-text h1 { font-size: 36px; }
    .ff-hero-text p { font-size: 16px; }
    .ff-offer-grid { grid-template-columns: repeat(2,1fr); }
    .ff-accuracy-card { grid-template-columns: 56px 1fr; }
    .ff-accuracy-title { grid-column: 2; }
    .ff-accuracy-desc { grid-column: 1 / -1; padding-left: 80px; }
    .ff-values-grid { grid-template-columns: repeat(2,1fr); }
    .ff-not-grid { grid-template-columns: 1fr; }
    .ff-not-list { grid-template-columns: repeat(2,1fr); }
    .ff-contact-grid { gap: 32px; }
}

/* ── Tablet portrait (≤820px) ── */
@media (max-width: 820px) {
    /* Hero */
    .ff-hero { min-height: 420px; }
    .ff-hero-inner { padding: 50px 24px; }
    .ff-hero-text { max-width: 100%; }
    .ff-hero-text h1 { font-size: 32px; }
    .ff-hero-btns { gap: 10px; }

    /* Stats */
    .ff-stats-grid { grid-template-columns: repeat(2,1fr); }
    .ff-stat:nth-child(2) { border-right: none; }

    /* Mission */
    .ff-mission { padding: 60px 0; }
    .ff-mission-grid { grid-template-columns: 1fr; gap: 0; }
    .ff-mission-img-wrap img { height: 300px; }
    .ff-mission-badge { bottom: 16px; right: 16px; width: 90px; height: 90px; }
    .ff-mission-badge span { font-size: 22px; }
    .ff-mission-content { padding-top: 40px; }
    .ff-mission-pillars { grid-template-columns: repeat(3,1fr); }

    /* Offer */
    .ff-offer { padding: 60px 0; }
    .ff-offer-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }

    /* Story */
    .ff-story { padding: 60px 0; }
    .ff-story-grid { grid-template-columns: 1fr; }
    .ff-story-text { padding-bottom: 40px; border-bottom: 1px solid #eee; }

    /* Accuracy */
    .ff-accuracy { padding: 60px 0; }
    .ff-accuracy-card { display: block; }
    .ff-accuracy-num { font-size: 20px; margin-bottom: 4px; }
    .ff-accuracy-desc { padding-left: 0; margin-top: 8px; }

    /* Sources */
    .ff-sources { padding: 60px 0; }
    .ff-sources-grid { grid-template-columns: repeat(2,1fr); }

    /* Values */
    .ff-values { padding: 60px 0; }
    .ff-values-grid { grid-template-columns: repeat(2,1fr); }

    /* Not */
    .ff-not { padding: 60px 0; }
    .ff-not-list { grid-template-columns: 1fr; }

    /* Editorial */
    .ff-editorial { padding: 60px 0; }
    .ff-editorial-grid { grid-template-columns: 1fr; }
    .ff-editorial-sidebar {
        border-top: 1px solid rgba(255,255,255,.15);
        padding-top: 32px; margin-top: 8px;
        text-align: center;
        align-items: center;
    }

    /* Contact */
    .ff-contact { padding: 60px 0; }
    .ff-contact-grid { grid-template-columns: 1fr; gap: 32px; }

    /* CTA */
    .ff-cta { padding: 60px 0; }
    .ff-cta h2 { font-size: 28px; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
    .ff-wrap, .ff-wrap-sm { padding: 0 18px; }

    /* Hero */
    .ff-hero { min-height: 380px; }
    .ff-hero-inner { padding: 40px 18px; }
    .ff-hero-text h1 { font-size: 28px; }
    .ff-hero-text p { font-size: 15px; }
    .ff-hero-btns { flex-direction: column; gap: 10px; }
    .ff-btn { justify-content: center; width: 100%; }

    /* Stats */
    .ff-stats-grid { grid-template-columns: 1fr 1fr; }
    .ff-stat { padding: 20px 12px; }
    .ff-stat-num { font-size: 20px; }

    /* Mission */
    .ff-mission-pillars { grid-template-columns: 1fr; gap: 12px; }
    .ff-mission-img-wrap img { height: 240px; }

    /* Offer */
    .ff-offer-grid { grid-template-columns: 1fr; }

    /* Story timeline */
    .ff-tl-step { padding-left: 48px; }
    .ff-tl-dot { width: 36px; height: 36px; font-size: 13px; left: 6px; }
    .ff-tl-line::before { left: 24px; }

    /* Accuracy */
    .ff-accuracy-grid { gap: 16px; }

    /* Sources */
    .ff-sources-grid { grid-template-columns: 1fr; }

    /* Values */
    .ff-values-grid { grid-template-columns: 1fr; }

    /* Heading */
    .ff-heading { font-size: 24px; }
    .ff-section-sub { font-size: 14px; }

    /* CTA */
    .ff-cta h2 { font-size: 22px; }
    .ff-cta-btns { flex-direction: column; align-items: center; }
    .ff-cta-btns .ff-btn { width: 100%; justify-content: center; max-width: 280px; }
}

/* ── Small mobile (≤380px) ── */
@media (max-width: 380px) {
    .ff-hero-text h1 { font-size: 24px; }
    .ff-stats-grid { grid-template-columns: 1fr; }
    .ff-stat { border-right: none; border-bottom: 1px solid #f0f0f0; }
    .ff-stat:last-child { border-bottom: none; }
    .ff-offer-card { padding: 24px 18px; }
    .ff-heading { font-size: 22px; }
}
