/* ===== HOMEPAGE ===== */

.section-white { background: #fff; }

/* About-style band — every other homepage section */
.page-home .home-section-alt-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(21, 101, 192, 0.06), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f3f7fc 100%);
}

.page-home .home-section-alt-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 86, 168, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 86, 168, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
    pointer-events: none;
}

.page-home .home-section-alt-bg > .container {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
}
.section-eyebrow-light { color: rgba(255,255,255,0.85); }
.section-header-left { text-align: left; margin-bottom: 24px; }
.section-header-left p { margin: 0; }
.section-header-light h2,
.section-header-light p { color: #fff; }
.section-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-light {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 700;
}
.btn-light:hover { background: #f5f8fc; color: var(--brand-dark); }
.hero-actions .btn-secondary {
    background: transparent;
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    box-shadow: none;
}
.hero-actions .btn-secondary:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
}
.hero-actions .btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: none;
}
.hero-actions .btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
}
.btn-hero-call {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-hero-call:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* ===== HERO + STATS (Kingwell brand blue) ===== */
.page-home .site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    width: 100%;
    z-index: 1000;
}

.page-home main {
    padding-top: 0;
}

.hero-block {
    position: relative;
    min-height: calc(100dvh - 122px);
    min-height: calc(100svh - 122px);
}

.home-hero {
    min-height: calc(100dvh - 122px);
    min-height: calc(100svh - 122px);
    padding: clamp(40px, 6vh, 72px) 0 clamp(92px, 10vh, 108px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--brand-darker);
}

.hero-bg-image,
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
    background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 45%, var(--brand) 100%);
}

.hero-slide:nth-child(2) {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-darker) 100%);
}

.hero-slide:nth-child(3) {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 55%, var(--brand-darker) 100%);
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slider-nav {
    position: absolute;
    right: 24px;
    bottom: 96px;
    z-index: 4;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.hero-slider-dot:hover {
    border-color: #fff;
    transform: scale(1.15);
}

.hero-slider-dot.is-active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--brand-darker);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    display: none;
}

.home-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    width: 100%;
    display: block;
    text-align: left;
    --hero-glow: 0 0 2px #fff, 0 0 10px rgba(255, 255, 255, 0.95), 0 0 22px rgba(255, 255, 255, 0.85);
}

.hero-eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 61, 122, 0.14);
    color: var(--brand-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(7, 40, 73, 0.1);
}

.hero-chip-gold {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(212, 160, 23, 0.4);
    color: #9a7209;
}

.hero-brand-line {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: 10px;
    text-shadow: var(--hero-glow);
}

.hero-title {
    font-family: 'DM Serif Display', var(--font);
    font-size: clamp(1.85rem, 4.2vw, 2.7rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--brand-darker);
    margin-bottom: 12px;
    text-shadow: var(--hero-glow);
}

.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.7;
    color: var(--brand-dark);
    max-width: 520px;
    margin-bottom: 24px;
    text-shadow: var(--hero-glow);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-actions .btn {
    border-radius: 999px;
    min-height: 48px;
    padding: 12px 28px;
}

.hero-actions .btn-lg {
    padding: 13px 30px;
    font-size: 0.92rem;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-dark);
    padding-top: 16px;
    border-top: 1px solid rgba(12, 61, 122, 0.2);
    text-shadow: var(--hero-glow);
}

.hero-trust-row span {
    background: rgba(255, 255, 255, 0.88);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(7, 40, 73, 0.08);
}

/* Stats strip — overlays bottom of full-height hero */
.hero-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
    border-top: 3px solid var(--brand-light);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-stat-item {
    text-align: center;
    padding: 22px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat-item strong {
    display: block;
    font-size: clamp(1.5rem, 3vw, 1.95rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-item span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
}

.hero-dots,
.hero-grain,
.hero-badges,
.hero-brand,
.home-hero::after,
.home-hero::before {
    display: none;
}

/* About block */
.section-about-home {
    padding: clamp(64px, 8vw, 96px) 0;
}

.about-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 5vw, 64px);
    align-items: center;
}

.about-block-text h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.35rem);
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-lead {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-desc-secondary {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-points-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.about-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.55;
}

.about-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--green);
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.about-inline-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.about-stat-box {
    text-align: center;
    background: #fff;
    border: 1px solid #e0ede1;
    border-radius: 12px;
    padding: 16px 10px;
}

.about-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
    margin-bottom: 8px;
}

.about-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    line-height: 1.35;
    word-break: normal;
}

.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-green {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green-dark);
    font-weight: 700;
}

.btn-outline-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

/* About — premium showcase */
.about-premium-showcase {
    position: relative;
    isolation: isolate;
}

.about-premium-glow {
    position: absolute;
    inset: 8% 0 12%;
    background:
        radial-gradient(circle at 20% 20%, rgba(21, 101, 192, 0.14), transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(12, 61, 122, 0.18), transparent 48%);
    filter: blur(24px);
    z-index: 0;
}

.about-premium-ring {
    position: absolute;
    top: 18px;
    right: -18px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(21, 101, 192, 0.24);
    border-radius: 50%;
    z-index: 0;
}

.about-premium-main {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    padding-bottom: 48px;
}

.about-premium-photo {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(17, 52, 20, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.about-premium-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.about-premium-showcase:hover .about-premium-photo img {
    transform: scale(1.06);
}

.about-premium-photo-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 28, 12, 0.08) 0%, rgba(8, 28, 12, 0) 38%),
        linear-gradient(0deg, rgba(8, 28, 12, 0.82) 0%, rgba(8, 28, 12, 0.18) 48%, transparent 72%);
    pointer-events: none;
}

.about-premium-badge {
    position: absolute;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.about-premium-badge-gold {
    top: 18px;
    left: 18px;
    color: #fff;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.95), rgba(13, 71, 161, 0.95));
}

.about-premium-badge-green {
    top: 18px;
    right: 18px;
    color: #fff;
    background: linear-gradient(135deg, rgba(12, 61, 122, 0.92), rgba(26, 86, 168, 0.92));
}

.about-premium-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.about-premium-caption strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
}

.about-premium-caption span {
    display: block;
    font-size: 0.88rem;
    opacity: 0.92;
    font-weight: 500;
}

.about-premium-facility-float {
    position: absolute;
    left: -8px;
    bottom: -24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(240px, 72%);
    padding: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 14px 32px rgba(17, 52, 20, 0.16);
}

.about-premium-facility-float img {
    width: 78px;
    height: 58px;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 10px;
    flex-shrink: 0;
}

.about-premium-facility-float strong {
    display: block;
    font-size: 0.78rem;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 2px;
}

.about-premium-facility-float span {
    display: block;
    font-size: 0.66rem;
    color: var(--text-light);
    line-height: 1.35;
}

.about-premium-product-float {
    position: absolute;
    right: -10px;
    bottom: -28px;
    width: 118px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 36px rgba(17, 52, 20, 0.16);
    text-align: center;
    z-index: 3;
}

.about-premium-product-float img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    margin: 0 auto 6px;
}

.about-premium-product-float span {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green-dark);
}

.about-premium-certs {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.about-premium-cert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
    border: 1px solid #dfece1;
    box-shadow: 0 8px 22px rgba(12, 61, 122, 0.06);
}

.about-premium-cert-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.about-premium-cert strong {
    display: block;
    font-size: 0.78rem;
    color: var(--green-dark);
    line-height: 1.25;
    margin-bottom: 2px;
}

.about-premium-cert span {
    display: block;
    font-size: 0.68rem;
    color: var(--text-light);
    line-height: 1.35;
}

.about-premium-pillars {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(12, 61, 122, 0.96) 0%, rgba(26, 86, 168, 0.92) 100%);
    box-shadow: 0 18px 40px rgba(17, 52, 20, 0.18);
}

.about-premium-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-premium-pillar-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 2px;
}

.about-premium-pillar strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 3px;
}

.about-premium-pillar span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    line-height: 1.45;
}

.about-side-card {
    background: #fff;
    border: 1px solid #e3ece4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(12, 61, 122, 0.1);
}

.about-side-image {
    height: 260px;
    overflow: hidden;
    background: #eef4fb;
}

.about-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.about-side-body {
    padding: 26px 26px 24px;
}

.about-side-body h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.about-side-sub {
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.about-side-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-side-checklist {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.about-side-checklist li {
    background: #f6f8fb;
    border: 1px solid #e8f0e9;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.45;
}

.about-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid #edf2ed;
}

.about-trust-strip span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--green-dark);
    background: #fff;
    border: 1px solid #d5e8d7;
    padding: 7px 12px;
    border-radius: 100px;
    line-height: 1.2;
}

/* Products — premium home section */
.section-products-home {
    padding: clamp(72px, 9vw, 100px) 0;
    background: linear-gradient(180deg, #f7faf7 0%, #fff 45%, #f9fbf9 100%);
    position: relative;
    overflow: hidden;
}

.section-products-home-header {
    margin-bottom: 0;
}

.section-products-home-footer {
    padding-top: 8px;
}

.section-header-premium {
    margin-bottom: 48px;
}

.section-header-premium h2 {
    font-size: clamp(2rem, 3.5vw, 2.55rem);
    letter-spacing: -0.02em;
}

.section-header-premium p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

/* Our Products — full-width single-line auto-scroll */
.products-marquee-wrap {
    width: 100%;
    margin-bottom: 56px;
    padding: 8px 0;
}

.products-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.products-marquee.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.products-marquee.is-paused {
    cursor: default;
}

.products-marquee::-webkit-scrollbar {
    display: none;
}

.products-marquee-track {
    display: flex;
    gap: clamp(14px, 1.5vw, 18px);
    width: max-content;
    padding: 4px clamp(12px, 2vw, 24px) 12px;
}

.marquee-product-card {
    flex: 0 0 clamp(220px, 18vw, 280px);
    width: clamp(220px, 18vw, 280px);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e3ece4;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 18px rgba(12, 61, 122, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.marquee-product-card:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

.marquee-product-card:hover {
    transform: translateY(-4px);
    border-color: #c5daf0;
    box-shadow: 0 12px 28px rgba(12, 61, 122, 0.12);
    color: inherit;
}

.marquee-product-image {
    position: relative;
    height: 170px;
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
}

.marquee-product-image img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
}

.marquee-product-card:hover .marquee-product-image img {
    transform: scale(1.05);
}

.marquee-product-hp {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 5px 10px;
    border-radius: 100px;
    box-shadow: 0 3px 10px rgba(21, 101, 192, 0.32);
}

.marquee-product-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.marquee-product-cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green);
}

.marquee-product-body h3 {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--green-dark);
    margin: 0;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.marquee-product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.marquee-product-specs span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-dark);
    background: #f3f8f4;
    border: 1px solid #e5efe6;
    padding: 4px 8px;
    border-radius: 6px;
}

.marquee-product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid var(--green-dark);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}

.marquee-product-card:hover .marquee-product-link,
.marquee-product-card:focus-visible .marquee-product-link {
    background: var(--green-dark);
    color: #fff;
}

/* Top Models — slider section */
.top-models-section {
    margin-top: 12px;
}

.top-models-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-models-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 16px;
    flex: 1;
}

.top-models-slider::-webkit-scrollbar {
    display: none;
}

.top-models-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #d5e8d7;
    background: #fff;
    color: var(--green-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(12, 61, 122, 0.08);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.top-models-nav:hover {
    background: var(--green-dark);
    color: #fff;
    border-color: var(--green-dark);
}

.top-model-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e3ece4;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 24px rgba(12, 61, 122, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
}

.top-model-card:hover {
    transform: translateY(-5px);
    border-color: #c5daf0;
    box-shadow: 0 16px 40px rgba(12, 61, 122, 0.12);
    color: inherit;
}

.top-model-image {
    position: relative;
    height: 210px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.top-model-image img {
    max-width: 100%;
    max-height: 175px;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.1));
}

.top-model-card:hover .top-model-image img {
    transform: scale(1.06);
}

.top-model-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 6px 13px;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(21, 101, 192, 0.35);
}

.top-model-body {
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.top-model-cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green);
    margin-bottom: 8px;
}

.top-model-body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--green-dark);
    margin: 0 0 14px;
    min-height: 2.8em;
}

.top-model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.top-model-spec {
    background: #f6f8fb;
    border: 1px solid #e5efe6;
    border-radius: 10px;
    padding: 10px 12px;
}

.top-model-spec strong {
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green);
    margin-bottom: 4px;
}

.top-model-spec span {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--green-dark);
}

.top-model-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 11px 16px;
    background: #fff;
    color: var(--green-dark);
    border: 1.5px solid var(--green-dark);
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.25s, color 0.25s;
}

.top-model-card:hover .top-model-link {
    background: var(--green-dark);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .products-marquee-track {
        padding-bottom: 8px;
    }
}


.category-tile-premium {
    border: 1px solid #e3ece4;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(12, 61, 122, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
    height: 100%;
    color: var(--text);
    overflow: hidden;
}

.category-tile-premium:hover {
    border-color: #c5daf0;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(12, 61, 122, 0.1);
    color: var(--text);
}

.category-tile-premium .category-tile-image {
    height: 200px;
    position: relative;
    background: #f3f6f4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-tile-premium .category-tile-image::after {
    display: none;
}

.category-tile-num {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--green-dark);
    padding: 5px 10px;
    border-radius: 8px;
}

.category-tile-premium .category-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 14px;
    display: block;
    transition: transform 0.4s ease;
}

.category-tile-premium:hover .category-tile-image img {
    transform: scale(1.04);
}

.category-tile-premium .category-tile-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-tile-premium h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--green-dark);
    line-height: 1.35;
}

.category-tile-premium:hover h3 {
    color: var(--green-dark);
}

.category-tile-premium p {
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--text-light);
    flex: 1;
}

.category-tile-premium:hover p {
    color: var(--text-light);
}

.category-tile-premium .category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    width: 100%;
    margin-top: auto;
}

.category-tile-premium .category-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.products-featured-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.products-featured-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b9d9bb 20%, #b9d9bb 80%, transparent);
}

.products-featured-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green-dark);
    white-space: nowrap;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #d5e8d7;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(12, 61, 122, 0.06);
}

.product-grid-premium {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.product-card-home {
    border: 1px solid #e3ece4;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(12, 61, 122, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s;
    overflow: hidden;
    color: var(--text);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(12, 61, 122, 0.1);
    border-color: #c5daf0;
    color: var(--text);
}

.product-card-home .product-card-image {
    height: 220px;
    background: #fff;
}

.product-card-home .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-home:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-home .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    padding: 6px 13px;
    font-size: 0.78rem;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(21, 101, 192, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card-home .product-card-body {
    padding: 20px 18px 18px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-home h3 {
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 2.8em;
    margin-bottom: 14px;
    color: var(--green-dark);
}

.product-card-home:hover h3 {
    color: var(--green-dark);
}

.product-card-home .product-specs-compact {
    gap: 10px;
    margin-bottom: 16px;
}

.product-card-home .spec-item {
    background: #f6f8fb;
    border: 1px solid #e5efe6;
    border-radius: 10px;
    padding: 10px 12px;
}

.product-card-home .spec-item strong {
    color: var(--green);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-card-home:hover .spec-item strong {
    color: var(--green);
}

.product-card-home .spec-item span {
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 800;
}

.product-card-home:hover .spec-item span {
    color: var(--green-dark);
}

.product-card-home.product-card-link .product-view-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: auto;
    padding: 11px 16px;
    background: #fff;
    color: var(--green-dark);
    border: 1.5px solid var(--green-dark);
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.25s, color 0.25s;
}

.product-card-home .product-view-link:hover {
    background: var(--green-dark);
    color: #fff;
}

.section-cta-premium {
    margin-top: 44px;
}

.section-cta-premium .btn {
    padding: 14px 32px;
    box-shadow: 0 6px 20px rgba(12, 61, 122, 0.2);
}

/* Categories — base */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.category-tile {
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.category-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-tile-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-tile h3 {
    color: var(--green-dark);
}

.category-link {
    color: var(--accent);
}

.product-card-top {
    position: relative;
}

.product-specs-compact {
    margin-bottom: 12px;
}

/* Why home */
.why-grid-home {
    grid-template-columns: repeat(5, 1fr);
}
.why-card-home {
    border: 1px solid var(--border);
    border-top: 4px solid var(--brand);
    box-shadow: 0 8px 24px rgba(12, 61, 122, 0.06);
    position: relative;
    padding-top: 36px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card-home::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateY(-101%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.why-card-home:nth-child(1)::before {
    background: linear-gradient(180deg, #1a56a8 0%, #0c3d7a 100%);
}

.why-card-home:nth-child(2)::before {
    background: linear-gradient(180deg, #1565c0 0%, #0c3d7a 100%);
}

.why-card-home:nth-child(3)::before {
    background: linear-gradient(180deg, #0c3d7a 0%, #072849 100%);
}

.why-card-home:nth-child(4)::before {
    background: linear-gradient(180deg, #1e88e5 0%, #1a56a8 100%);
}

.why-card-home:nth-child(5)::before {
    background: linear-gradient(180deg, #072849 0%, #1a56a8 100%);
}

.why-card-home:hover,
.why-card-home:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12, 61, 122, 0.16);
    border-color: transparent;
}

.why-card-home:hover::before,
.why-card-home:focus-within::before {
    transform: translateY(0);
}

.why-card-home .why-num,
.why-card-home .why-icon,
.why-card-home h3,
.why-card-home p {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.why-card-home:hover .why-num,
.why-card-home:focus-within .why-num {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.why-card-home:hover .why-icon,
.why-card-home:focus-within .why-icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.why-card-home:hover h3,
.why-card-home:focus-within h3 {
    color: #fff;
}

.why-card-home:hover p,
.why-card-home:focus-within p {
    color: rgba(255, 255, 255, 0.88);
}

@media (prefers-reduced-motion: reduce) {
    .why-card-home::before {
        transition: none;
    }

    .why-card-home:hover::before,
    .why-card-home:focus-within::before {
        transform: translateY(0);
    }
}
.why-num {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 24px;
    height: 24px;
    background: var(--brand-soft);
    color: var(--green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Customer trust section — reference mockup layout */
.section-trust-mockup {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f8fb 0%, #fff 45%, #f6f8fb 100%);
    padding: clamp(72px, 9vw, 100px) 0 clamp(56px, 7vw, 72px);
}

.section-trust-mockup .trust-mockup-bg {
    display: none;
}

.trust-mockup-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.trust-mockup-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.trust-mockup-blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: rgba(165, 214, 167, 0.35);
}

.trust-mockup-blob--2 {
    width: 360px;
    height: 360px;
    top: 40%;
    right: -100px;
    background: rgba(129, 199, 132, 0.25);
}

.trust-mockup-blob--3 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: 35%;
    background: rgba(200, 230, 201, 0.4);
}

.section-trust-mockup > .container {
    position: relative;
    z-index: 1;
}

.trust-mockup-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
}

.trust-mockup-cert-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.trust-mockup-cert-row span {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #c5daf0;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(12, 61, 122, 0.06);
}

.trust-mockup-showcase {
    margin-bottom: 44px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dde4ef;
    box-shadow: 0 4px 24px rgba(12, 61, 122, 0.06);
}

.trust-mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border: 1px solid #c5daf0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, var(--brand-soft));
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    box-shadow: 0 4px 14px rgba(26, 86, 168, 0.12);
}

.trust-mockup-badge-icon {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.trust-mockup-title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 800;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.trust-mockup-brand {
    color: var(--green);
    position: relative;
    display: inline-block;
}

.trust-mockup-brand::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: -2px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M2 10 Q60 2 118 10' stroke='%231a56a8' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    pointer-events: none;
}

.trust-mockup-pumps {
    display: inline;
}

.trust-mockup-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

.trust-mockup-subtitle strong {
    color: var(--green);
    font-weight: 700;
}

.trust-mockup-visuals {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 24px;
    min-height: 380px;
}

.trust-mockup-pumps-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 24px 12px 32px;
}

.trust-mockup-pumps-glow {
    display: none;
}

@keyframes trustGlowPulse {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.trust-mockup-pumps-pedestal {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(340px, 88%);
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(12, 61, 122, 0.15) 0%, transparent 72%);
    pointer-events: none;
}

.trust-mockup-pumps-cluster {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    padding-bottom: 28px;
}

.trust-mockup-pump-slot {
    flex-shrink: 0;
    background: #fff;
    border-radius: 14px;
    padding: 14px 10px 8px;
    border: 1px solid #dde4ef;
    box-shadow: 0 12px 32px rgba(12, 61, 122, 0.08);
    margin-left: -24px;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.trust-mockup-pump-slot:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(12, 61, 122, 0.15);
    z-index: 10 !important;
}

.trust-mockup-pump-slot:first-child {
    margin-left: 0;
    z-index: 1;
}

.trust-mockup-pump-slot--2 { z-index: 2; }
.trust-mockup-pump-slot--3 { z-index: 3; }
.trust-mockup-pump-slot--4 { z-index: 4; }

.section-trust-mockup .trust-mockup-pump {
    display: block;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.trust-mockup-pump-slot:hover .trust-mockup-pump {
    filter: drop-shadow(0 10px 18px rgba(12, 61, 122, 0.2));
}

.trust-mockup-pump-slot--1 .trust-mockup-pump { height: 200px; }
.trust-mockup-pump-slot--2 .trust-mockup-pump { height: 230px; }
.trust-mockup-pump-slot--3 .trust-mockup-pump { height: 260px; }
.trust-mockup-pump-slot--4 .trust-mockup-pump { height: 290px; }

.trust-mockup-farmer-badge {
    position: absolute;
    left: 56%;
    bottom: 4%;
    transform: translateX(-50%) rotate(-4deg);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 148px;
    padding: 16px 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand) 0%, var(--brand-dark) 55%, var(--brand-darker) 100%);
    color: #fff;
    text-align: center;
    box-shadow:
        0 14px 36px rgba(12, 61, 122, 0.45),
        0 0 0 5px rgba(255, 255, 255, 0.95);
    animation: trustBadgeFloat 3s ease-in-out infinite;
}

@keyframes trustBadgeFloat {
    0%, 100% { transform: translateX(-50%) rotate(-4deg) translateY(0); }
    50% { transform: translateX(-50%) rotate(-4deg) translateY(-6px); }
}

.trust-mockup-farmer-badge-title {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    opacity: 0.95;
}

.trust-mockup-farmer-badge strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin: 2px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-mockup-farmer-badge-sub {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.trust-mockup-farmer-stars {
    font-size: 0.75rem;
    color: #ffd54f;
    letter-spacing: 3px;
    line-height: 1;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.trust-mockup-map-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 10px;
    min-height: 340px;
}

.trust-mockup-map-glow {
    display: none;
}

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

.trust-mockup-map-ring {
    position: absolute;
    width: min(300px, 86%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(26, 86, 168, 0.12);
    box-shadow: inset 0 0 0 8px rgba(238, 244, 251, 0.65);
}

.trust-mockup-map {
    width: min(340px, 100%);
    height: auto;
    position: relative;
    z-index: 1;
}

.trust-mockup-map-shape {
    filter: none;
}

.trust-mockup-pin {
    animation: trustPinPulse 3s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.trust-mockup-pin:nth-child(2) { animation-delay: 0.35s; }
.trust-mockup-pin:nth-child(3) { animation-delay: 0.7s; }
.trust-mockup-pin:nth-child(4) { animation-delay: 1.05s; }
.trust-mockup-pin:nth-child(5) { animation-delay: 1.4s; }
.trust-mockup-pin:nth-child(6) { animation-delay: 1.75s; }
.trust-mockup-pin:nth-child(7) { animation-delay: 2.1s; }

@keyframes trustPinPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.88; transform: scale(1.12); }
}

.trust-mockup-map-label {
    position: absolute;
    bottom: 10%;
    right: 6%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 118px;
    padding: 14px 18px 12px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 244, 251, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-left: 4px solid var(--accent);
    box-shadow:
        0 4px 8px rgba(12, 61, 122, 0.06),
        0 18px 36px rgba(12, 61, 122, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    text-align: center;
    backdrop-filter: blur(8px);
}

.trust-mockup-map-label-flag {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 2px;
}

.trust-mockup-map-label strong {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-mockup-map-label span:last-child {
    font-size: 0.62rem;
    font-weight: 800;
    color: #5a6578;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.trust-mockup-card {
    position: relative;
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 16px;
    padding: 20px 20px 20px 18px;
    box-shadow: 0 4px 16px rgba(12, 61, 122, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-mockup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(12, 61, 122, 0.1);
    border-color: #c5daf0;
}

.trust-mockup-card-num {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
}

.trust-mockup-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-top: 28px;
}

.trust-mockup-diamond {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--brand-soft) 0%, #c5daf0 100%);
    border: 1px solid #c5daf0;
    border-radius: 6px;
}

.trust-mockup-diamond svg,
.trust-mockup-diamond .trust-mockup-flag,
.trust-mockup-diamond .trust-mockup-warranty-text,
.trust-mockup-diamond .trust-mockup-emoji {
    transform: rotate(-45deg);
}

.trust-mockup-diamond svg {
    width: 26px;
    height: 26px;
    color: var(--green-dark);
}

.trust-mockup-warranty-text {
    font-size: 0.55rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    color: var(--green-dark);
}

.trust-mockup-flag {
    font-size: 1.35rem;
    line-height: 1;
}

.trust-mockup-emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.trust-mockup-card-copy h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.trust-mockup-card-copy p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.trust-mockup-card-corner {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 22px 22px;
    border-color: transparent transparent var(--green) transparent;
}

.trust-mockup-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 12px;
    padding: 24px 32px;
    margin: 0;
    border: 1px solid #c5daf0;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7fc 100%);
    box-shadow: 0 4px 20px rgba(12, 61, 122, 0.06);
}

.trust-mockup-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 160px;
    min-width: 0;
}

.trust-mockup-stat-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--green-dark);
}

.trust-mockup-stat-icon svg {
    width: 20px;
    height: 20px;
}

.trust-mockup-stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* Unified band — process + coverage share one seamless background */
.home-pair-band {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 10% 15%, rgba(26, 86, 168, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 85%, rgba(12, 61, 122, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 38%, #eef4fb 72%, #f6f8fb 100%);
}

.home-pair-band::before {
    display: none;
}

.home-pair-band > section {
    position: relative;
    z-index: 1;
}

/* Process — light premium cards (brand green + blue) */
.page-home .home-pair-band .section-process {
    background: transparent !important;
    color: var(--text);
    padding-bottom: 32px;
}

.section-process {
    position: relative;
    overflow: visible;
}

.section-process::before {
    display: none;
}

.process-header h2 {
    font-family: 'DM Serif Display', 'Noto Sans Gujarati', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 400;
    color: var(--green-dark);
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step-marker {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}

.process-circle {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--accent), 0 8px 20px rgba(12, 61, 122, 0.25);
    position: relative;
    z-index: 2;
}

.process-connector {
    position: absolute;
    top: 50%;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--green-light), rgba(76, 175, 80, 0.25));
    transform: translateY(-50%);
    z-index: 1;
}

.process-step-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px 24px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
}

.process-step-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.process-step:hover .process-step-body {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 61, 122, 0.12);
    border-color: rgba(26, 86, 168, 0.3);
}

.process-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.process-step-body h3 {
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.process-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-cta .btn-lg {
    min-width: 200px;
    justify-content: center;
}

/* Coverage — continues same band (no separate bg) */
.page-home .home-pair-band .coverage-section {
    background: transparent !important;
    color: var(--text) !important;
    padding: 72px 0;
}

.coverage-section::before {
    display: none;
}

.coverage-section {
    position: relative;
}

.coverage-block {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: stretch;
}

.coverage-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 12px 40px rgba(12, 61, 122, 0.08);
    border: 1px solid rgba(26, 86, 168, 0.12);
}

.coverage-content-card h2 {
    font-family: 'DM Serif Display', 'Noto Sans Gujarati', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.coverage-lead {
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.6;
}

.coverage-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.7;
}

.coverage-section .states-tags {
    margin: 20px 0 28px;
}

.coverage-section .state-tag {
    background: var(--brand-soft);
    color: var(--green-dark);
    border: 1px solid rgba(26, 86, 168, 0.2);
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
}

.coverage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-outline-green {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
}

.coverage-visual-card {
    display: flex;
    align-items: stretch;
}

.coverage-map-inner {
    flex: 1;
    background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(12, 61, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.coverage-map-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.coverage-map-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.coverage-map-inner .map-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.coverage-map-inner strong {
    font-size: 1.35rem;
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.coverage-map-inner > p {
    opacity: 0.88;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 260px;
    margin-bottom: 28px;
}

.coverage-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.coverage-mini-stats div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 10px;
    backdrop-filter: blur(8px);
}

.coverage-mini-stats strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.coverage-mini-stats span {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    display: block;
}

/* Testimonials home */
.testimonial-card-home footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial-card-home footer strong {
    display: block;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.testimonial-card-home footer span {
    font-size: 0.85rem;
    color: var(--text-light);
}
.testimonial-card-home p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
}

/* Gallery + Farmer Guide */
.section-resources-home {
    padding: clamp(64px, 8vw, 96px) 0;
    background: #f6f8fb;
}

.home-resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.home-resources-panel {
    background: #fff;
    border: 1px solid #e3ece4;
    border-radius: 18px;
    padding: clamp(24px, 3vw, 32px);
    box-shadow: 0 6px 28px rgba(12, 61, 122, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-resources-head {
    margin-bottom: 24px;
}

.home-resources-head h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    color: var(--green-dark);
    margin-bottom: 10px;
    line-height: 1.25;
}

.home-resources-head p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}

.gallery-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    text-decoration: none;
    color: #fff;
    display: block;
}

.gallery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-showcase-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 61, 122, 0.75) 100%);
    pointer-events: none;
}

.gallery-showcase-item:hover img {
    transform: scale(1.06);
}

.gallery-showcase-label {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.guide-list-home {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
    flex: 1;
}

.guide-item-home {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px 16px 14px;
    background: #f6f8fb;
    border: 1px solid #e5efe6;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.guide-item-home:hover {
    border-color: var(--green);
    box-shadow: 0 6px 20px rgba(12, 61, 122, 0.08);
    transform: translateX(4px);
    color: inherit;
}

.guide-item-num {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-top: 3px;
}

.guide-item-text {
    flex: 1;
    min-width: 0;
}

.guide-item-text h3 {
    font-size: 0.92rem;
    color: var(--green-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.guide-item-home:hover .guide-item-text h3 {
    color: var(--green-dark);
}

.guide-item-text p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-item-home:hover .guide-item-text p {
    color: var(--text-light);
}

.guide-item-arrow {
    flex-shrink: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2px;
    transition: transform 0.2s;
}

.guide-item-home:hover .guide-item-arrow {
    transform: translateX(3px);
}

.home-resources-panel .btn {
    width: fit-content;
    margin-top: auto;
}

/* Legacy split (unused) */
.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Dual cards */
.dual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.dual-card {
    border-radius: 16px;
    padding: 36px 32px;
    color: #fff;
}
.dual-card-green {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.dual-card-blue {
    background: linear-gradient(135deg, var(--blue), #0d47a1);
}
.dual-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.dual-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.dual-card p { opacity: 0.9; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.6; }

/* Premium Quote */
.section-premium-quote {
    padding: 0 0 64px;
    background: linear-gradient(180deg, #fff 0%, #f4f9f5 100%);
}

.premium-quote-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 42%, var(--brand-dark) 100%);
    box-shadow: 0 24px 60px rgba(12, 61, 122, 0.22);
}

.premium-quote-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.premium-quote-glow--left {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 68%);
}

.premium-quote-glow--right {
    width: 280px;
    height: 280px;
    bottom: -100px;
    right: -60px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
}

.premium-quote-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 420px);
    gap: 32px;
    padding: 40px 36px;
    align-items: center;
}

.premium-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffe082;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.premium-quote-copy h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
}

.premium-quote-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    max-width: 480px;
}

.premium-quote-perks {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-quote-perks li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.premium-quote-perk-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.15rem;
}

.premium-quote-perks strong {
    display: block;
    font-size: 0.92rem;
    color: #fff;
    margin-bottom: 2px;
}

.premium-quote-perks span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}

.premium-quote-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.premium-quote-quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.premium-quote-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.premium-quote-card-head {
    margin-bottom: 20px;
    text-align: center;
}

.premium-quote-card-head h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.premium-quote-card-head p {
    font-size: 0.84rem;
    color: var(--text-light);
    margin: 0;
}

.premium-quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
}

.premium-quote-form-full {
    grid-column: 1 / -1;
}

.premium-quote-form .form-group {
    margin-bottom: 0;
}

.premium-quote-form .form-group label {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.premium-quote-form input,
.premium-quote-form select {
    font-size: 0.9rem;
    padding: 10px 12px;
}

.premium-quote-submit {
    width: 100%;
    margin-top: 18px;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.premium-quote-note {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.76rem;
    color: var(--text-light);
    line-height: 1.45;
}

.premium-quote-form .form-success {
    text-align: center;
    padding: 24px 12px;
    color: var(--green-dark);
    font-weight: 600;
}

/* Final CTA */
.home-final-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    padding: 56px 0;
}
.home-final-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.home-final-inner h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 8px;
}
.home-final-inner p { opacity: 0.9; max-width: 480px; }
.home-final-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .top-model-card { flex: 0 0 calc(50% - 10px); min-width: 260px; }
    .why-grid-home { grid-template-columns: repeat(2, 1fr); }
    .trust-mockup-showcase { padding: 20px 16px; }
    .trust-mockup-visuals { grid-template-columns: 1fr 1fr; gap: 20px; }
    .trust-mockup-pump-slot--1 .trust-mockup-pump { height: 150px; }
    .trust-mockup-pump-slot--2 .trust-mockup-pump { height: 170px; }
    .trust-mockup-pump-slot--3 .trust-mockup-pump { height: 190px; }
    .trust-mockup-pump-slot--4 .trust-mockup-pump { height: 210px; }
    .trust-mockup-farmer-badge { width: 120px; height: 120px; }
    .trust-mockup-stats { flex-wrap: wrap; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-item:nth-child(2) { border-right: none; }
    .hero-stat-item:nth-child(1),
    .hero-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 992px) {
    .hero-block {
        min-height: calc(100dvh - 118px);
        min-height: calc(100svh - 118px);
    }

    .home-hero {
        min-height: calc(100dvh - 118px);
        min-height: calc(100svh - 118px);
        padding: clamp(32px, 5vh, 48px) 0 clamp(100px, 12vh, 120px);
    }

    .home-hero .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-overlay {
        display: none;
    }

    .hero-eyebrow { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }

    .hero-actions {
        justify-content: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-trust-row {
        justify-content: center;
    }

    .hero-slider-nav {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 108px;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stat-item {
        padding: 20px 12px;
    }

    .about-block,
    .coverage-block,
    .home-resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-resources-panel .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-block-text { text-align: center; }
    .about-points-list {
        text-align: left;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-inline-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-cta-row {
        justify-content: center;
    }
    .about-cta-row .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-premium-showcase {
        max-width: 560px;
        margin: 0 auto;
    }

    .about-premium-certs {
        grid-template-columns: 1fr;
    }

    .about-premium-photo img {
        height: 280px;
    }

    .about-premium-facility-float {
        left: 12px;
        bottom: -18px;
        width: calc(100% - 24px);
    }

    .about-premium-product-float {
        right: 12px;
        bottom: -22px;
    }

    .about-side-image { height: 200px; }

    .process-steps { grid-template-columns: 1fr; gap: 28px; }
    .process-connector { display: none; }
    .process-step-marker { margin-bottom: 12px; }

    .process-cta {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }

    .process-cta .btn { width: 100%; }

    .page-home .home-pair-band .coverage-section {
        padding-bottom: 48px;
    }

    .coverage-section::before {
        margin-bottom: 32px;
    }

    .coverage-content-card {
        padding: 28px 22px;
        text-align: center;
    }

    .coverage-actions {
        justify-content: center;
        flex-direction: column;
    }

    .coverage-actions .btn { width: 100%; max-width: 280px; margin: 0 auto; }

    .coverage-map-inner { padding: 32px 24px; }

    .section-cta {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-cta .btn { width: 100%; }

    .states-tags { justify-content: center; }

    .dual-cards { grid-template-columns: 1fr; }

    .home-final-cta { padding: 40px 0; }

    .home-final-inner {
        flex-direction: column;
        text-align: center;
    }

    .home-final-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .home-final-actions .btn { width: 100%; }

    .premium-quote-layout {
        grid-template-columns: 1fr;
        padding: 28px 20px;
    }

    .premium-quote-form-grid {
        grid-template-columns: 1fr;
    }

    .why-grid-home { grid-template-columns: 1fr; }
    .trust-mockup-showcase { padding: 16px 12px; border-radius: 18px; }
    .trust-mockup-visuals { grid-template-columns: 1fr; min-height: auto; gap: 28px; }
    .trust-mockup-pumps-wrap { min-height: 300px; }
    .trust-mockup-pump-slot { margin-left: -16px; padding: 10px 8px 6px; }
    .trust-mockup-pump-slot--1 .trust-mockup-pump { height: 140px; }
    .trust-mockup-pump-slot--2 .trust-mockup-pump { height: 158px; }
    .trust-mockup-pump-slot--3 .trust-mockup-pump { height: 176px; }
    .trust-mockup-pump-slot--4 .trust-mockup-pump { height: 194px; }
    .trust-mockup-map-wrap { min-height: 280px; }
    .trust-mockup-map-label { bottom: 8%; right: 50%; transform: translateX(50%); }
    .trust-mockup-grid { grid-template-columns: 1fr; }
    .trust-mockup-stats { flex-direction: column; align-items: stretch; padding: 18px 16px; }
    .trust-mockup-stat { flex: 1 1 auto; }
    .trust-mockup-farmer-badge { width: 118px; height: 118px; left: 52%; }
    .trust-mockup-cert-row span { font-size: 0.65rem; padding: 5px 10px; }

    .gallery-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 576px) {
    .categories-grid { grid-template-columns: 1fr; }

    .products-marquee-track {
        padding-left: 12px;
        padding-right: 12px;
    }

    .marquee-product-card {
        flex: 0 0 220px;
        width: 220px;
    }

    .marquee-product-image { height: 150px; }

    .top-models-nav { display: none; }

    .top-model-card {
        flex: 0 0 85%;
        min-width: 240px;
    }

    .about-premium-photo img {
        height: 240px;
    }

    .about-premium-badge-green {
        top: auto;
        bottom: 72px;
        right: 12px;
    }

    .about-premium-product-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 12px 14px;
    }

    .about-premium-product-float img {
        margin: 0;
        width: 56px;
        height: 56px;
    }

    .about-premium-ring {
        display: none;
    }

    .hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-stat-item strong { font-size: 1.4rem; }
    .hero-stat-item span { font-size: 0.65rem; }

    .gallery-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .about-inline-stats { grid-template-columns: repeat(2, 1fr); }

    .dual-card { padding: 28px 22px; }

    .coverage-map-inner { padding: 28px 18px; }
    .coverage-map-inner .map-icon { font-size: 52px; }
    .coverage-mini-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .coverage-mini-stats strong { font-size: 1.2rem; }

    .featured-label { font-size: 0.78rem; }

    .section-header-left { text-align: center; }
}

/* Assurance — farmers & dealers */
.section-assurance {
    border-top: 1px solid var(--border);
}

.page-home .section-assurance.home-section-alt-bg,
.page-home .section-resources-home.home-section-alt-bg,
.page-home .section-seo-faq.home-section-alt-bg {
    border-top: none;
}

.assurance-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.assurance-panel {
    background: #fff;
    border: 1px solid #e0e8e2;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 28px rgba(12, 61, 122, 0.06);
}

.assurance-panel--customer {
    border-top: 4px solid var(--green);
}

.assurance-panel--dealer {
    border-top: 4px solid var(--blue);
}

.assurance-panel-head {
    margin-bottom: 20px;
}

.assurance-panel-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--brand-soft);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.assurance-panel--dealer .assurance-panel-icon {
    background: #e3f2fd;
}

.assurance-panel-head h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.assurance-panel--dealer .assurance-panel-head h3 {
    color: var(--blue);
}

.assurance-panel-head p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

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

.assurance-list-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2ee;
}

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

.assurance-list-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f4f9f5;
    font-size: 1.1rem;
}

.assurance-list-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 4px;
}

.assurance-list-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.assurance-panel-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eef2ee;
}

/* Trust FAQ */
.section-trust-faq {
    background: #fff;
    border-top: 1px solid var(--border);
}

.trust-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 36px;
    align-items: start;
}

.trust-faq-intro h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: var(--green-dark);
    margin-bottom: 12px;
}

.trust-faq-intro > p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.trust-faq-contact {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 14px;
    padding: 18px;
}

.trust-faq-contact p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.trust-faq-contact .btn {
    width: 100%;
    margin-bottom: 8px;
    justify-content: center;
}

.trust-faq-contact .btn:last-child {
    margin-bottom: 0;
}

.trust-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-faq-item {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 12px;
    overflow: hidden;
}

.trust-faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.trust-faq-question::-webkit-details-marker {
    display: none;
}

.trust-faq-question::after {
    content: '+';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--green-dark);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.trust-faq-item[open] .trust-faq-question::after {
    content: '−';
}

.trust-faq-answer {
    padding: 0 18px 16px;
}

.trust-faq-answer p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .assurance-dual { grid-template-columns: 1fr; }
    .trust-faq-layout { grid-template-columns: 1fr; }
    .dealer-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
    .trust-bar-grid { grid-template-columns: 1fr; }
    .hero-image-badge strong { font-size: 1rem; }
}
