/* ===================== HOME PAGE STYLES ===================== */

/* Shared */
.h-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.h-section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.h-section-head h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.h-section-head p {
    font-size: 1.1rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
}

.h-section-head--light h2 { color: #fff; }
.h-section-head--light p  { color: rgba(255,255,255,0.8); }

.h-label {
    display: inline-block;
    background: #FFF3E0;
    color: #FF8C00;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.h-label--light {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* ===================== HERO ===================== */
.h-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 60px;
}

.h-hero-left {
    flex: 1;
    max-width: 580px;
}

.h-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.h-hero-left h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.h-hero-left h1 span {
    color: #FF8C00;
}

.h-hero-left > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}

.h-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.h-stat {
    display: flex;
    flex-direction: column;
}

.h-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.h-stat span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    margin-top: 2px;
}

.h-stat-divider {
    width: 1px;
    height: 36px;
    background: #e0e0e0;
}

.h-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.h-btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.h-btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.h-btn-primary i { font-size: 1.4rem; }
.h-btn-primary div { display: flex; flex-direction: column; line-height: 1.2; }
.h-btn-primary small { font-size: 0.75rem; opacity: 0.7; }

.h-btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FF8C00;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 14px 4px;
    transition: gap 0.3s ease;
}

.h-btn-secondary:hover { gap: 14px; }

/* Hero Right */
.h-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.h-phone-wrap {
    position: relative;
    z-index: 2;
}

.h-phone-wrap img {
    width: 300px;
    max-width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.h-badge {
    position: absolute;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 3;
}

.h-badge i { color: #FF8C00; font-size: 1rem; }
.h-badge-1 { top: 10%; left: -10%; }
.h-badge-2 { top: 50%; right: -8%; }
.h-badge-3 { bottom: 12%; left: -8%; }

/* ===================== WHO WE SERVE ===================== */
.h-serve {
    padding: 90px 0;
    background: #fafafa;
}

.h-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.h-serve-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1.5px solid #f0f0f0;
    transition: all 0.3s ease;
}

.h-serve-card:hover {
    border-color: #FF8C00;
    box-shadow: 0 15px 50px rgba(255,140,0,0.1);
    transform: translateY(-4px);
}

.h-serve-card--highlight {
    border-color: #4CAF50;
    box-shadow: 0 10px 40px rgba(76,175,80,0.12);
}

.h-serve-card--highlight:hover {
    border-color: #2E7D32;
    box-shadow: 0 15px 50px rgba(76,175,80,0.18);
}

.h-serve-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.h-serve-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.h-serve-card > p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.h-serve-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.h-serve-card ul li {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.h-serve-card ul li i {
    color: #4CAF50;
    font-size: 0.85rem;
}

/* ===================== WHO WINS ===================== */
.h-wins {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.h-wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.h-win-card {
    border-radius: 24px;
    padding: 0;
    border: 2px solid transparent;
    transition: all 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.h-win-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.13);
}

.h-win-green  { background: #fff; border-color: #A5D6A7; }
.h-win-orange { background: #fff; border-color: #FFCC80; }
.h-win-blue   { background: #fff; border-color: #90CAF9; }

.h-win-green:hover  { border-color: #4CAF50; }
.h-win-orange:hover { border-color: #FF8C00; }
.h-win-blue:hover   { border-color: #1976D2; }

/* Top coloured band */
.h-win-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 1.8rem 1.4rem;
}

.h-win-green  .h-win-top { background: linear-gradient(135deg, #E8F5E9, #F1F8E9); }
.h-win-orange .h-win-top { background: linear-gradient(135deg, #FFF3E0, #FFF8F0); }
.h-win-blue   .h-win-top { background: linear-gradient(135deg, #E3F2FD, #EEF7FF); }

.h-win-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.h-win-green  .h-win-badge { background: #4CAF50; color: #fff; box-shadow: 0 6px 18px rgba(76,175,80,0.35); }
.h-win-orange .h-win-badge { background: #FF8C00; color: #fff; box-shadow: 0 6px 18px rgba(255,140,0,0.35); }
.h-win-blue   .h-win-badge { background: #1976D2; color: #fff; box-shadow: 0 6px 18px rgba(25,118,210,0.35); }

.h-win-title-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.h-win-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.h-win-green  .h-win-tag { color: #388E3C; }
.h-win-orange .h-win-tag { color: #E65100; }
.h-win-blue   .h-win-tag { color: #1565C0; }

.h-win-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.h-win-divider {
    height: 2px;
    margin: 0 1.8rem;
}
.h-win-green  .h-win-divider { background: linear-gradient(90deg, #4CAF50, transparent); }
.h-win-orange .h-win-divider { background: linear-gradient(90deg, #FF8C00, transparent); }
.h-win-blue   .h-win-divider { background: linear-gradient(90deg, #1976D2, transparent); }

.h-win-card ul {
    list-style: none;
    padding: 1.4rem 1.8rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex: 1;
}

.h-win-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.91rem;
    color: #444;
    line-height: 1.6;
}

.h-check {
    font-size: 0.8rem;
    font-weight: 900;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.h-win-green  .h-check { background: #E8F5E9; color: #2E7D32; }
.h-win-orange .h-check { background: #FFF3E0; color: #E65100; }
.h-win-blue   .h-check { background: #E3F2FD; color: #1565C0; }

.h-win-card ul li strong { color: #1a1a1a; font-weight: 700; }

.h-win-footer {
    margin: 0 1.8rem 1.6rem;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.h-win-footer--green  { background: #E8F5E9; color: #2E7D32; }
.h-win-footer--orange { background: #FFF3E0; color: #E65100; }
.h-win-footer--blue   { background: #E3F2FD; color: #1565C0; }

/* ===================== HOW IT WORKS ===================== */
.h-howitworks {
    padding: 90px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d4a2d 100%);
}

.h-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.h-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.h-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #FF8C00;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-step-icon {
    font-size: 2.5rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.h-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.h-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.h-step-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 1.5rem;
    align-self: center;
    flex-shrink: 0;
    margin-top: 1rem;
}

/* Vertical steps */
.h-steps-v {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.h-step-v {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s ease;
}

.h-step-v:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,140,0,0.5);
    transform: translateY(-3px);
}

.h-step-v .h-step-num {
    position: static;
    transform: none;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
}

.h-step-v-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.h-step-v-icon {
    font-size: 1.6rem;
    color: #FF8C00;
    flex-shrink: 0;
    margin-top: 2px;
}

.h-step-v h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.h-step-v p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
}

@media (max-width: 680px) {
    .h-steps-v { grid-template-columns: 1fr; }
}

/* ===================== FEATURES ===================== */
.h-features {
    padding: 90px 0;
    background: white;
}

.h-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.h-feature {
    padding: 2rem;
    border-radius: 18px;
    background: #fafafa;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.h-feature:hover {
    background: white;
    border-color: #FF8C00;
    box-shadow: 0 10px 40px rgba(255,140,0,0.1);
    transform: translateY(-3px);
}

.h-feature i {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 1rem;
    display: block;
}

.h-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.h-feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.h-features-grid--7 {
    grid-template-columns: repeat(4, 1fr);
}

.h-features-grid--7 .h-feature:nth-child(n+5) {
    grid-column: span 1;
}

.h-features-grid--7 .h-feature:last-child:nth-child(4n+1) {
    grid-column: 2 / span 1;
}

.h-feature--highlight {
    background: linear-gradient(135deg, #FFF3E0, #FFF8F0) !important;
    border: 2px solid #FF8C00 !important;
    position: relative;
}

.h-feature--highlight::before {
    content: '★ Key Feature';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF8C00;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.h-feature--highlight i { color: #E65100 !important; }
.h-feature--highlight h4 { color: #E65100; }

.h-feature--green {
    background: linear-gradient(135deg, #F1F8E9, #F9FBE7) !important;
    border: 2px solid #4CAF50 !important;
    position: relative;
}

.h-feature--green::before {
    content: 'Planet Friendly';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.h-feature--green i { color: #2E7D32 !important; }
.h-feature--green h4 { color: #2E7D32; }

@media (max-width: 968px) {
    .h-features-grid--7 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .h-features-grid--7 { grid-template-columns: 1fr; }
}

/* ===================== METRICS ===================== */
.h-metrics {
    padding: 90px 0;
    background: linear-gradient(135deg, #FF8C00 0%, #E65100 100%);
}

.h-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.h-metric {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.h-metric:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.h-metric-icon {
    display: block;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.6rem;
}

.h-metric-val {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.h-metric-desc {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    line-height: 1.5;
}

/* ===================== CTA ===================== */
.h-cta {
    padding: 80px 0;
    background: #fafafa;
}

.h-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    border: 1.5px solid #f0f0f0;
    flex-wrap: wrap;
}

.h-cta-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.h-cta-text p {
    color: #666;
    font-size: 1rem;
}

.h-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.h-btn-white {
    padding: 14px 28px;
    border-radius: 14px;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.h-btn-white:hover {
    background: #1a1a1a;
    color: white;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 968px) {
    .h-hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 3rem; }
    .h-hero-left { max-width: 100%; align-items: center; display: flex; flex-direction: column; }
    .h-hero-left h1 { font-size: 2.8rem; }
    .h-hero-left > p { text-align: center; }
    .h-hero-stats { justify-content: center; }
    .h-hero-right { min-height: 380px; width: 100%; }
    .h-badge-1 { left: 0; }
    .h-badge-3 { left: 0; }
    .h-serve-grid { grid-template-columns: 1fr; }
    .h-wins-grid { grid-template-columns: 1fr; }
    .h-features-grid { grid-template-columns: repeat(2, 1fr); }
    .h-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .h-steps { flex-direction: column; align-items: center; }
    .h-step-arrow { display: none; }
    .h-cta-inner { flex-direction: column; text-align: center; }
    .h-section-head h2 { font-size: 2rem; }
}

@media (max-width: 580px) {
    .h-hero-left h1 { font-size: 2.2rem; }
    .h-features-grid { grid-template-columns: 1fr; }
    .h-metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .h-metric-val { font-size: 2.2rem; }
    .h-phone-wrap img { width: 220px; }
    .h-badge-1, .h-badge-2, .h-badge-3 { display: none; }
}
