@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #f6efe9;
    --card: #fff7f1;
    --card-2: #fff3ea;
    --orange: #ea7a18;
    --orange-dark: #d8640d;
    --green: #4a8a2b;
    --text: #2b2b2b;
    --muted: #6b6b6b;
    --border: #eadfd6;
    --shadow: 0 14px 26px rgba(97, 72, 45, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top, #fbf5ef, var(--bg));
}

.page {
    min-height: 100vh;
    background: radial-gradient(circle at 20% 10%, #fff9f3 0, rgba(255, 249, 243, 0.6) 45%, transparent 60%),
        radial-gradient(circle at 80% 15%, #fff1e6 0, rgba(255, 241, 230, 0.5) 40%, transparent 60%);
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #f7eee7;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

.brand-mark {
    font-family: 'Baloo 2', cursive;
    font-size: 28px;
    color: var(--orange);
    letter-spacing: 1px;
}

.brand-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: #b38a6c;
    margin-top: -4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    color: #53463b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.nav-link.active {
    color: var(--orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    box-shadow: 0 10px 18px rgba(214, 119, 46, 0.25);
}

.btn-primary {
    background: linear-gradient(180deg, #ff9a3e, var(--orange));
    color: white;
}

.btn-secondary {
    background: #f6e5d8;
    color: #9d5c2a;
    border: 1px solid #efcfb6;
    box-shadow: none;
}

.btn-green {
    background: linear-gradient(180deg, #6fa84d, var(--green));
    color: #fff;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #7b5b3e;
}

.hero {
    padding: 40px 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.hero-card {
    background: linear-gradient(160deg, #fff6ee, #fffaf6);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 201, 148, 0.7), rgba(255, 201, 148, 0));
}

.hero-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-title span {
    color: var(--orange);
}

.hero-list {
    margin: 16px 0 24px;
    display: grid;
    gap: 10px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.list-item .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e1f1d5;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 12px;
}

.quote-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.form-card,
.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 22px rgba(132, 93, 63, 0.12);
}

.form-title,
.info-title {
    font-weight: 700;
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 12px;
}

.input {
    background: #fff;
    border: 1px solid #eadfd6;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.form-card .btn {
    width: 100%;
    margin-top: 6px;
}

.info-list {
    display: grid;
    gap: 10px;
}

.info-pill {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #efe1d6;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.info-pill span {
    width: 22px;
    height: 22px;
    background: #fbe1c8;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--orange);
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin: 26px 0 18px;
}

.section-title span {
    color: var(--orange);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.badge-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(122, 85, 56, 0.1);
    font-size: 13px;
    font-weight: 600;
}

.badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #ffe6d1;
    display: grid;
    place-items: center;
    color: var(--orange);
}

.steps {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 20px;
    align-items: center;
}

.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
}

.step-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.step-visual {
    background: var(--card-2);
    border-radius: 18px;
    padding: 14px;
    min-height: 120px;
    position: relative;
}

.step-visual::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 14px;
    border: 1px dashed #e7cdb7;
}

.step-label {
    margin-top: 8px;
    font-weight: 600;
    color: #6f4e38;
}

.cta-card {
    background: #fff7f1;
    border: 1px solid #efdbc8;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(122, 85, 56, 0.12);
}

.cta-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--orange-dark);
}

.site-footer {
    padding: 22px 0 34px;
    background: #f6eee8;
    border-top: 1px solid var(--border);
    margin-top: 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    color: #805a3f;
}

.hero-illustration {
    background: linear-gradient(180deg, #fff7ef, #fff0e3);
    border-radius: 26px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px;
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: center;
}

.illustration-figure {
    width: 200px;
    height: 240px;
    background: radial-gradient(circle at 50% 20%, #ffd08b, #f4a94c);
    border-radius: 22px;
    position: relative;
}

.illustration-figure::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: #ffe8c7;
    border-radius: 50%;
    top: -40px;
    left: 40px;
    border: 6px solid #f8c57a;
}

.illustration-figure::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 100px;
    background: #2c7fc1;
    border-radius: 18px;
    bottom: 20px;
    left: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin: 8px 0;
    font-size: 18px;
}

.service-card ul {
    margin: 10px 0 16px;
    padding-left: 18px;
    color: #775944;
    font-size: 13px;
}

.service-thumb {
    height: 130px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f9e6d5, #fef9f6);
    border: 1px solid #f1d9c4;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.calc-phone {
    background: #fff;
    border-radius: 30px;
    border: 1px solid var(--border);
    padding: 18px;
    box-shadow: var(--shadow);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.calc-control {
    background: #f9f1ea;
    border-radius: 12px;
    padding: 8px 10px;
    border: 1px solid #eadfd6;
    font-weight: 600;
}

.calc-total {
    background: #eff6ea;
    border: 1px solid #cfe2c1;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    color: #3b6d22;
}

.ui-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.ui-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.ui-card h3 {
    margin: 10px 0;
}

.ui-list {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: #6c5240;
}

@media (max-width: 980px) {
    .nav {
        display: none;
        position: absolute;
        right: 4%;
        top: 78px;
        flex-direction: column;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 16px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-grid,
    .quote-panel,
    .steps,
    .calc-wrapper,
    .ui-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 620px) {
    .hero-title {
        font-size: 26px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .step-flow {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   HOMEPAGE REDESIGN — Paintoz Services Layout
   All classes prefixed with .hp- to avoid conflicts
================================================================ */

/* --- Hero Banner --- */
.hp-hero {
    position: relative;
    background: linear-gradient(135deg, #fff8f0 0%, #fef0e0 40%, #fde8cc 70%, #fbd8a8 100%);
    overflow: hidden;
    padding: 52px 0 44px;
}

.hp-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,122,24,0.18) 0%, rgba(234,122,24,0) 70%);
    pointer-events: none;
}

.hp-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234,122,24,0.12) 0%, rgba(234,122,24,0) 70%);
    pointer-events: none;
}

.hp-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hp-hero-breadcrumb {
    font-size: 13px;
    color: #8b6c57;
    margin-bottom: 12px;
}

.hp-hero-breadcrumb span {
    color: var(--orange);
    font-weight: 600;
}

.hp-hero-title {
    font-family: 'Baloo 2', 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #2b2010;
    margin-bottom: 10px;
}

.hp-hero-title span {
    color: var(--orange);
}

.hp-hero-subtitle {
    font-size: 15px;
    color: #7a5d49;
    margin-bottom: 20px;
}

.hp-hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.hp-hero-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #2b2010;
}

.hp-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e1f1d5;
    color: #4a8a2b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.hp-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hp-hero-btn {
    padding: 12px 28px;
    font-size: 15px;
}

.hp-learn-btn {
    background: rgba(255,255,255,0.7);
    color: #7a4320;
    border: 1.5px solid #efcfb6;
    padding: 12px 24px;
    font-size: 15px;
    box-shadow: none;
}

.hp-learn-btn:hover {
    background: #fff;
    border-color: var(--orange);
    color: var(--orange);
}

/* Painter illustration (CSS art) */
.hp-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-painter-wrap {
    position: relative;
    width: 260px;
    height: 300px;
}

.hp-painter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hp-painter-hat {
    width: 60px;
    height: 22px;
    background: var(--orange);
    border-radius: 50% 50% 0 0;
    position: relative;
    z-index: 2;
}

.hp-painter-hat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 76px;
    height: 8px;
    background: #d8640d;
    border-radius: 4px;
}

.hp-painter-head {
    width: 54px;
    height: 56px;
    background: #f5c898;
    border-radius: 50%;
    margin-top: -4px;
    position: relative;
    z-index: 1;
    border: 2px solid #e8b07a;
}

.hp-painter-head::before {
    content: '😊';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    line-height: 1;
}

.hp-painter-body {
    width: 70px;
    height: 90px;
    background: #3b88c3;
    border-radius: 12px 12px 0 0;
    position: relative;
    margin-top: 2px;
}

.hp-painter-arm-left {
    position: absolute;
    left: -20px;
    top: 10px;
    width: 20px;
    height: 50px;
    background: #3b88c3;
    border-radius: 10px;
}

.hp-painter-arm-right {
    position: absolute;
    right: -20px;
    top: 10px;
    width: 20px;
    height: 50px;
    background: #3b88c3;
    border-radius: 10px;
}

.hp-roller-handle {
    position: absolute;
    right: -8px;
    bottom: 0;
    width: 6px;
    height: 30px;
    background: #6b4c28;
    border-radius: 3px;
}

.hp-roller-head {
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 28px;
    height: 14px;
    background: var(--orange);
    border-radius: 4px;
    transform: rotate(-20deg);
}

.hp-painter-legs {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hp-leg {
    width: 22px;
    height: 50px;
    background: #2b5c8a;
    border-radius: 0 0 8px 8px;
}

/* Paint splash decorations */
.hp-paint-splash {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hp-splash-1 {
    width: 80px;
    height: 40px;
    background: radial-gradient(circle, rgba(234,122,24,0.6), rgba(234,122,24,0));
    top: 30px;
    right: 20px;
    transform: rotate(-20deg);
    border-radius: 50% 30% 50% 30%;
}

.hp-splash-2 {
    width: 60px;
    height: 30px;
    background: radial-gradient(circle, rgba(234,122,24,0.4), rgba(234,122,24,0));
    top: 10px;
    left: 10px;
    transform: rotate(15deg);
    border-radius: 40% 60% 40% 60%;
}

.hp-splash-3 {
    width: 50px;
    height: 25px;
    background: radial-gradient(circle, rgba(248,180,80,0.5), rgba(248,180,80,0));
    bottom: 60px;
    right: 10px;
    transform: rotate(10deg);
    border-radius: 50% 30% 50% 30%;
}

/* --- Section Shared Styles --- */
.hp-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.hp-section-title {
    font-family: 'Baloo 2', 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #2b2010;
    text-align: center;
    margin: 0 0 8px;
}

.hp-section-title span,
.hp-section-title strong {
    color: var(--orange);
}

.hp-section-sub {
    color: #7a5d49;
    font-size: 14px;
    text-align: center;
}

/* --- Services Section --- */
.hp-services {
    background: #fff;
    padding: 52px 0;
}

.hp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hp-svc-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(97,72,45,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hp-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(234,122,24,0.18);
    border-color: var(--orange);
}

.hp-svc-img {
    height: 160px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.hp-svc-img-interior {
    background: linear-gradient(135deg, #fde9d0 0%, #f9c98a 40%, #f5e4c8 100%);
}

.hp-svc-img-exterior {
    background: linear-gradient(135deg, #d4eaf9 0%, #a8d4f0 40%, #cce8f8 100%);
}

.hp-svc-img-waterproof {
    background: linear-gradient(135deg, #d5f0e8 0%, #a0ddc8 40%, #c8f0e4 100%);
}

.hp-svc-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hp-svc-img-label {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
    position: relative;
    z-index: 1;
}

.hp-svc-body {
    padding: 18px 18px 20px;
}

.hp-svc-title {
    font-size: 19px;
    font-weight: 700;
    color: #2b2010;
    margin: 0 0 6px;
}

.hp-svc-desc {
    font-weight: 600;
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 2px;
}

.hp-svc-desc span {
    color: var(--orange);
}

.hp-svc-sub {
    font-size: 12px;
    color: #7a5d49;
    margin-bottom: 12px;
}

.hp-svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hp-svc-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #4a3728;
}

.hp-feat-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fbe1c8;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.hp-svc-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.hp-brand-chip {
    background: #f6efe8;
    border: 1px solid #e8d8c8;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #7a5d49;
    white-space: nowrap;
}

.hp-svc-price {
    font-size: 13px;
    color: #8d6b55;
    margin-bottom: 14px;
}

.hp-svc-price strong {
    color: #5a3e2e;
}

.hp-svc-btn {
    width: 100%;
    text-align: center;
    padding: 11px 20px;
    font-size: 14px;
}

/* --- Why Choose Section --- */
.hp-why {
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e6 100%);
    padding: 44px 0;
}

.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.hp-why-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(122,85,56,0.10);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hp-why-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.hp-why-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #ffe6d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hp-why-text {
    font-size: 13px;
    font-weight: 600;
    color: #2b2010;
    line-height: 1.3;
}

/* --- How It Works Section --- */
.hp-how {
    background: #fdf7f0;
    padding: 52px 0;
    border-top: 1px solid #f0e4d4;
    border-bottom: 1px solid #f0e4d4;
}

.hp-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 36px;
}

.hp-step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(234,122,24,0.35);
}

.hp-step-indicator-text {
    font-size: 18px;
    color: #4a3728;
}

.hp-step-indicator-text strong {
    color: var(--orange);
}

.hp-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.hp-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 220px;
}

.hp-step-img {
    width: 100%;
    height: 140px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    border: 1px dashed #e7cdb7;
}

.hp-step-img-1 {
    background: linear-gradient(135deg, #fde9d0, #f9c98a);
}

.hp-step-img-2 {
    background: linear-gradient(135deg, #fff0e0, #fad6a8);
}

.hp-step-img-3 {
    background: linear-gradient(135deg, #f5ece0, #f0d8b8);
}

.hp-step-icon {
    font-size: 40px;
}

.hp-step-num {
    font-size: 14px;
    font-weight: 700;
    color: #7a5d49;
}

.hp-step-label {
    font-size: 15px;
    font-weight: 600;
    color: #2b2010;
    margin-top: 2px;
}

.hp-step-arrow {
    font-size: 24px;
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 50px;
    opacity: 0.7;
}

.hp-how-cta {
    text-align: center;
    margin-top: 36px;
}

.hp-wide-btn {
    padding: 14px 56px;
    font-size: 16px;
    border-radius: 50px;
    display: inline-block;
}

/* --- Featured Products Section --- */
.hp-products {
    background: var(--bg);
    padding: 52px 0;
}

.hp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 4px;
}

.hp-products-cta {
    text-align: center;
    margin-top: 28px;
}

/* --- Reviews Section --- */
.hp-reviews {
    background: #fff;
    padding: 52px 0;
    border-top: 1px solid var(--border);
}

.hp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.hp-review-card {
    background: #fffaf5;
    border: 1.5px solid #f0e4d4;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(97,72,45,0.08);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.hp-review-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
}

.hp-review-stars {
    font-size: 16px;
    margin-bottom: 10px;
}

.hp-review-text {
    font-size: 13px;
    color: #4a3728;
    line-height: 1.6;
    margin: 0 0 16px;
    font-style: italic;
}

.hp-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #d8640d);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hp-review-name {
    font-size: 13px;
    font-weight: 600;
    color: #2b2010;
}

.hp-review-location {
    font-size: 11px;
    color: #8d6b55;
}

/* ================================================================
   HOMEPAGE RESPONSIVE — Breakpoints
================================================================ */

@media (max-width: 980px) {
    .hp-hero-inner {
        grid-template-columns: 1fr;
    }

    .hp-hero-right {
        display: none;
    }

    .hp-services-grid {
        grid-template-columns: 1fr;
    }

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

    .hp-steps-row {
        flex-direction: column;
        align-items: center;
    }

    .hp-step-item {
        max-width: 100%;
        width: 100%;
    }

    .hp-step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

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

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

@media (max-width: 620px) {
    .hp-hero {
        padding: 36px 0 30px;
    }

    .hp-hero-title {
        font-size: 30px;
    }

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

    .hp-products-grid {
        grid-template-columns: 1fr;
    }

    .hp-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hp-wide-btn {
        padding: 13px 32px;
        font-size: 15px;
    }

    .hp-section-title {
        font-size: 22px;
    }
}
