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

.section-white { background: #fff; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    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(--green-dark);
    font-weight: 700;
}
.btn-light:hover { background: #f5f5f5; color: var(--green-dark); }
.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 (matches site green → blue brand) ===== */
.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(88dvh - 68px);
    min-height: calc(88svh - 68px);
}

.home-hero {
    min-height: calc(88dvh - 68px);
    min-height: calc(88svh - 68px);
    padding: clamp(40px, 6vh, 72px) 0 clamp(100px, 12vh, 120px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
    transform: scale(1.04);
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    animation: heroSlideZoom 7s ease-out forwards;
}

@keyframes heroSlideZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.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(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(27, 94, 32, 0.72) 0%,
        rgba(27, 94, 32, 0.55) 45%,
        rgba(46, 125, 50, 0.3) 75%,
        rgba(27, 94, 32, 0.12) 100%
    );
    z-index: 1;
}

.home-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    width: 100%;
    display: block;
    text-align: left;
}

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

.hero-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.hero-chip-gold {
    background: rgba(245, 124, 0, 0.25);
    border-color: rgba(255, 193, 7, 0.45);
    color: #ffe082;
}

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

.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: #fff;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin-bottom: 24px;
}

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

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

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* 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(--green-dark) 0%, #1a4d1e 100%);
    border-top: 4px solid var(--orange);
    position: relative;
    z-index: 4;
}

.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: var(--orange);
    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;
    background: linear-gradient(180deg, #fff 0%, #f9fbf9 100%);
}

.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: #e8f5e9;
    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-side-card {
    background: #fff;
    border: 1px solid #e3ece4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(27, 94, 32, 0.1);
}

.about-side-image {
    height: 240px;
    overflow: hidden;
    background: var(--green-dark);
}

.about-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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: #f8fbf8;
    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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-dark), var(--green) 50%, var(--orange));
}

.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;
}

.categories-grid-premium {
    gap: 22px;
    margin-bottom: 56px;
}

.category-tile-premium {
    border: 1px solid rgba(27, 94, 32, 0.1);
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(27, 94, 32, 0.07);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.25s;
}

.category-tile-premium:hover {
    border-color: rgba(46, 125, 50, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(27, 94, 32, 0.14);
}

.category-tile-premium .category-tile-image {
    height: 190px;
    position: relative;
    background: linear-gradient(145deg, #eef5ef, #f8faf8);
}

.category-tile-premium .category-tile-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(27, 94, 32, 0.22) 100%);
    pointer-events: none;
    z-index: 1;
}

.category-tile-num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(27, 94, 32, 0.75);
    backdrop-filter: blur(4px);
    padding: 5px 9px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.category-tile-premium .category-tile-image img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.category-tile-premium .category-tile-body {
    padding: 22px 20px 24px;
}

.category-tile-premium h3 {
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-tile-premium p {
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-tile-premium .category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    padding: 9px 16px;
    background: linear-gradient(135deg, #fff8f0, #fff3e0);
    border: 1px solid rgba(245, 124, 0, 0.2);
    border-radius: 100px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    width: fit-content;
}

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

.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(27, 94, 32, 0.06);
}

.product-grid-premium {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card-home {
    border: 1px solid rgba(27, 94, 32, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(27, 94, 32, 0.08);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.25s;
    overflow: hidden;
}

.product-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(27, 94, 32, 0.15);
    border-color: rgba(46, 125, 50, 0.4);
}

.product-card-home .product-card-image {
    height: 210px;
    background: linear-gradient(160deg, #eef5ef 0%, #f7faf7 50%, #eef5ef 100%);
}

.product-card-home .product-card-image img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    object-fit: contain;
    padding: 12px;
}

.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(--orange), #e65100);
    padding: 6px 13px;
    font-size: 0.78rem;
    border-radius: 100px;
    box-shadow: 0 4px 14px rgba(245, 124, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card-home .product-card-body {
    padding: 20px 18px 18px;
    background: #fff;
}

.product-card-home h3 {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 2.8em;
    margin-bottom: 14px;
}

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

.product-card-home .spec-item {
    background: #f8fbf8;
    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 .spec-item span {
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 800;
}

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

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

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

.section-cta-premium .btn {
    padding: 14px 32px;
    box-shadow: 0 6px 20px rgba(27, 94, 32, 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(--orange);
}

.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(--green);
    box-shadow: none;
    position: relative;
    padding-top: 36px;
}
.why-num {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #e8f5e9;
    color: var(--green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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(76, 175, 80, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 85%, rgba(27, 94, 32, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f4f9f5 38%, #eef5ef 72%, #f5f5f0 100%);
}

.home-pair-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%231b5e20' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

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

/* Process — light premium cards (brand green + orange) */
.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(--orange), 0 8px 20px rgba(27, 94, 32, 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(27, 94, 32, 0.12);
    border-color: rgba(46, 125, 50, 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(27, 94, 32, 0.08);
    border: 1px solid rgba(46, 125, 50, 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: #e8f5e9;
    color: var(--green-dark);
    border: 1px solid rgba(46, 125, 50, 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(27, 94, 32, 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 + Blog split */
.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.gallery-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.gallery-thumb {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    padding: 8px;
}
.gallery-thumb-icon { font-size: 28px; }
.blog-list-home { display: grid; gap: 12px; }
.blog-row {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-row:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    color: inherit;
}
.blog-row-icon { font-size: 1.8rem; flex-shrink: 0; }
.blog-row h3 {
    font-size: 0.9rem;
    color: var(--green-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}
.blog-row p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 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; }

/* Final CTA */
.home-final-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-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); }
    .product-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .why-grid-home { grid-template-columns: repeat(2, 1fr); }
    .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(85dvh - 68px);
        min-height: calc(85svh - 68px);
    }

    .home-hero {
        min-height: calc(85dvh - 68px);
        min-height: calc(85svh - 68px);
        padding: clamp(32px, 5vh, 48px) 0 clamp(130px, 15vh, 170px);
    }

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

    .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-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .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-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%; }

    .why-grid-home { grid-template-columns: 1fr; }

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

    .blog-row { padding: 14px; }
}

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

    .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-grid-compact { grid-template-columns: repeat(2, 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; }
    .home-split-col .btn { width: 100%; }
}

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