/* ============================================================
   CLONE STYLES — exact port of the reference React/Tailwind site
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/* ── CSS Variables (from tailwind.config.ts + index.css) ── */
:root {
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(220, 25%, 12%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 25%, 12%);
    --primary: hsl(207, 51%, 36%);
    --primary-fg: hsl(210, 40%, 98%);
    --secondary: hsl(100, 100%, 31%);
    --secondary-fg: hsl(0, 0%, 100%);
    --muted: hsl(210, 20%, 96%);
    --muted-fg: hsl(215, 16%, 47%);
    --accent: hsl(207, 70%, 94%);
    --accent-fg: hsl(207, 51%, 26%);
    --border: hsl(214, 32%, 91%);
    --radius: 0.75rem;
    --hero-start: hsl(207, 51%, 36%);
    --hero-end: hsl(207, 60%, 25%);
    --surface-cool: hsl(210, 30%, 97%);
    --shadow-card: 0 4px 24px -4px hsla(207, 51%, 36%, 0.08), 0 1px 4px hsla(207, 51%, 36%, 0.04);
    --shadow-hover: 0 12px 40px -8px hsla(207, 51%, 36%, 0.15), 0 4px 12px hsla(207, 51%, 36%, 0.06);
    --shadow-hero: 0 20px 60px -12px hsla(207, 60%, 25%, 0.4);
}

/* ── Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
span,
li {
    font-family: "Nunito Sans", sans-serif;
}

/* ── Utilities ── */

/* hero-gradient */
.hero-gradient {
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
}

/* surface-cool */
.surface-cool {
    background-color: var(--surface-cool);
}

/* card */
.bg-card {
    background-color: var(--card);
}

/* shadow-card */
.shadow-card {
    box-shadow: var(--shadow-card);
}

.shadow-card-hover {
    box-shadow: var(--shadow-hover);
}

.shadow-hero {
    box-shadow: var(--shadow-hero);
}

/* rounded-xl */
.rounded-xl {
    border-radius: var(--radius);
}

/* spacing helpers */
.py-20-px {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mb-14-px {
    margin-bottom: 3.5rem;
}

.mb-10-px {
    margin-bottom: 2.5rem;
}

/* line-clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* text-primary / text-secondary / text-muted */
.text-clone-primary {
    color: var(--primary);
}

.text-clone-secondary {
    color: var(--secondary);
}

.text-clone-muted {
    color: var(--muted-fg);
}

.text-clone-foreground {
    color: var(--foreground);
}

.text-clone-fg-white {
    color: var(--primary-fg);
}

/* ── Transition helpers ── */
.transition-all-300 {
    transition: all 0.3s ease;
}

/* ── Hover lift ── */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* ── Object fit cover ── */
.object-cover {
    object-fit: cover;
}

/* ── aspect-ratio helpers ── */
.aspect-4-3 {
    aspect-ratio: 4/3;
}

.aspect-16-10 {
    aspect-ratio: 16/10;
}

/* ── Scale on hover ── */
.img-hover-scale img,
.group:hover .group-scale {
    transform: scale(1.05);
}

.group-scale {
    transition: transform 0.5s ease;
}

/* ────────────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────────────── */
.clone-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
}

.clone-hero .hero-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.04;
    pointer-events: none;
}

.clone-hero .hero-inner {
    padding: 4rem 0 4.5rem;
    position: relative;
    z-index: 1;
}

/* Hero heading */
.clone-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--primary-fg);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

/* "Service" underline accent */
.clone-hero h1 .word-accent {
    position: relative;
    display: inline-block;
}

.clone-hero h1 .word-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    border-radius: 9999px;
}

.clone-hero .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(240, 248, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 30rem;
    line-height: 1.6;
}

/* Search box */
.clone-hero .search-wrapper {
    max-width: 42rem;
}

.clone-hero .search-box {
    display: flex;
    align-items: center;
    background: var(--card);
    border-radius: 9999px;
    padding: 6px;
    box-shadow: var(--shadow-hero);
}

.clone-hero .search-box .search-icon {
    margin-left: 1rem;
    margin-right: 0.5rem;
    color: var(--muted-fg);
    flex-shrink: 0;
    font-size: 1rem;
}

.clone-hero .search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    color: var(--foreground);
    font-family: "Nunito Sans", sans-serif;
}

.clone-hero .search-box input::placeholder {
    color: var(--muted-fg);
}

.clone-hero .search-box .search-btn {
    background: var(--secondary);
    color: var(--secondary-fg);
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: "Nunito Sans", sans-serif;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.clone-hero .search-box .search-btn:hover {
    background: hsl(100, 100%, 27%);
}

/* Popular tags */
.clone-hero .popular-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.clone-hero .popular-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(240, 248, 255, 0.6);
}

.clone-hero .popular-tag {
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(240, 248, 255, 0.15);
    color: var(--primary-fg);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.clone-hero .popular-tag:hover {
    background: rgba(240, 248, 255, 0.25);
    color: var(--primary-fg);
}

/* Hero image */
.clone-hero .hero-img-wrap {
    display: flex;
    justify-content: center;
}

.clone-hero .hero-img-wrap img {
    width: 100%;
    max-width: 28rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

/* ────────────────────────────────────────────────
   TRUST INDICATORS
   ──────────────────────────────────────────────── */
.clone-trust {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}

.clone-trust .trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .clone-trust .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clone-trust .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
    cursor: default;
}

.clone-trust .trust-item:hover {
    transform: translateY(-4px);
}

.clone-trust .trust-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: background 0.3s, color 0.3s;
}

.clone-trust .trust-item:hover .trust-icon-wrap {
    background: var(--primary);
}

.clone-trust .trust-icon-wrap i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: color 0.3s;
}

.clone-trust .trust-item:hover .trust-icon-wrap i {
    color: var(--primary-fg);
}

.clone-trust .trust-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    transition: color 0.3s;
}

.clone-trust .trust-item:hover .trust-value {
    color: var(--primary);
}

.clone-trust .trust-label {
    font-size: 0.875rem;
    color: var(--muted-fg);
}

/* ────────────────────────────────────────────────
   HOW IT WORKS
   ──────────────────────────────────────────────── */
.clone-how {
    background-color: var(--surface-cool);
    padding: 5rem 0;
}

.clone-how .section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.clone-how .section-head h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.clone-how .section-head p {
    color: var(--muted-fg);
    font-size: 1.125rem;
    max-width: 26rem;
    margin: 0 auto;
}

.clone-how .steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 52rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .clone-how .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clone-how .step-item {
    text-align: center;
}

.clone-how .step-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.clone-how .step-circle {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--primary-fg);
}

.clone-how .step-circle.grad-1 {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(207, 51%, 48%) 100%);
    box-shadow: 0 10px 30px -5px hsla(207, 51%, 36%, 0.35);
}

.clone-how .step-circle.grad-2 {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(100, 100%, 40%) 100%);
    box-shadow: 0 10px 30px -5px hsla(100, 100%, 31%, 0.35);
}

.clone-how .step-circle.grad-3 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 10px 30px -5px hsla(207, 51%, 36%, 0.25);
}

.clone-how .step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.clone-how .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.clone-how .step-desc {
    color: var(--muted-fg);
    line-height: 1.6;
    font-size: 0.95rem;
}

.clone-how .how-cta {
    text-align: center;
    margin-top: 3rem;
}

.clone-how .how-cta a,
.clone-how .how-cta button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    background: transparent;
    text-decoration: none;
    font-family: "Nunito Sans", sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.clone-how .how-cta a:hover,
.clone-how .how-cta button:hover {
    background: var(--primary);
    color: var(--primary-fg);
}

/* ────────────────────────────────────────────────
   SECTION HEADER (shared)
   ──────────────────────────────────────────────── */
.clone-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.clone-section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 1.875rem);
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.clone-section-header p {
    color: var(--muted-fg);
    margin: 0;
}

.clone-section-header .view-all-link {
    display: none;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.2s;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .clone-section-header .view-all-link {
        display: inline-flex;
    }
}

.clone-section-header .view-all-link:hover {
    gap: 0.5rem;
}

/* centered section header variant */
.clone-section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.clone-section-header-center h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.clone-section-header-center p {
    color: var(--muted-fg);
    font-size: 1.125rem;
}

/* ────────────────────────────────────────────────
   SERVICE CARD  (exact match)
   ──────────────────────────────────────────────── */
.clone-service-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clone-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.clone-service-card .sc-img {
    aspect-ratio: 4/3;
    min-height: 10rem;
    overflow: hidden;
    background: var(--muted);
}

.clone-service-card .sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.clone-service-card:hover .sc-img img {
    transform: scale(1.05);
}

.clone-service-card .sc-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.clone-service-card .sc-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.clone-service-card .sc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clone-service-card .sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.clone-service-card .sc-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.clone-service-card .sc-rating i {
    color: #f59e0b;
    font-size: 0.875rem;
}

.clone-service-card .sc-rating span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.clone-service-card .sc-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
}

/* ────────────────────────────────────────────────
   CONTRACTOR CARD  (exact match)
   ──────────────────────────────────────────────── */
.clone-contractor-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clone-contractor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.clone-contractor-card .cc-img {
    height: 11rem;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

.clone-contractor-card .cc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.clone-contractor-card:hover .cc-img img {
    transform: scale(1.05);
}

.clone-contractor-card .cc-img .cc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.7) 0%, transparent 100%);
}

.clone-contractor-card .cc-img .cc-info {
    position: absolute;
    bottom: 0.75rem;
    left: 1rem;
    right: 1rem;
}

.clone-contractor-card .cc-img .cc-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-fg);
    margin: 0;
    line-height: 1.3;
}

.clone-contractor-card .cc-img .cc-specialty {
    font-size: 0.8rem;
    color: rgba(240, 248, 255, 0.8);
    margin: 0;
}

.clone-contractor-card .cc-body {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clone-contractor-card .cc-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.clone-contractor-card .cc-rating i {
    color: #f59e0b;
    font-size: 0.875rem;
}

.clone-contractor-card .cc-rating .cc-score {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.clone-contractor-card .cc-rating .cc-reviews {
    font-size: 0.75rem;
    color: var(--muted-fg);
}

.clone-contractor-card .cc-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--muted-fg);
    font-size: 0.75rem;
}

/* ────────────────────────────────────────────────
   CATEGORIES
   ──────────────────────────────────────────────── */
.clone-category-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clone-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.clone-category-card .cat-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s, color 0.3s;
}

.clone-category-card:hover .cat-icon-wrap {
    background: var(--primary);
}

.clone-category-card .cat-icon-wrap i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: color 0.3s;
}

.clone-category-card:hover .cat-icon-wrap i {
    color: var(--primary-fg);
}

.clone-category-card .cat-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.clone-category-card .cat-subs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    flex: 1;
}

.clone-category-card .cat-subs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-fg);
    margin-bottom: 0.375rem;
}

.clone-category-card .cat-subs li i {
    font-size: 0.7rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.clone-category-card .cat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.clone-category-card .cat-link:hover {
    gap: 0.5rem;
}

/* ────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────── */
.clone-testimonials {
    background-color: var(--surface-cool);
    padding: 5rem 0;
}

.clone-testimonial-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clone-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.clone-testimonial-card .tc-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.clone-testimonial-card .tc-stars i {
    font-size: 0.875rem;
    color: #f59e0b;
}

.clone-testimonial-card .tc-quote {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.clone-testimonial-card .tc-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.clone-testimonial-card .tc-author img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    object-fit: cover;
}

.clone-testimonial-card .tc-author .tc-name {
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.875rem;
    margin: 0;
}

.clone-testimonial-card .tc-author .tc-role {
    font-size: 0.75rem;
    color: var(--muted-fg);
    margin: 0;
}

/* ────────────────────────────────────────────────
   BLOG SECTION
   ──────────────────────────────────────────────── */
.clone-blog-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clone-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.clone-blog-card .bc-img {
    aspect-ratio: 16/10;
    min-height: 11rem;
    overflow: hidden;
    position: relative;
    background: var(--muted);
}

.clone-blog-card .bc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.clone-blog-card:hover .bc-img img {
    transform: scale(1.05);
}

.clone-blog-card .bc-cat-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: var(--primary-fg);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.clone-blog-card .bc-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.clone-blog-card .bc-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    color: var(--muted-fg);
    margin-bottom: 0.5rem;
}

.clone-blog-card .bc-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.clone-blog-card .bc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.clone-blog-card:hover .bc-title {
    color: var(--primary);
}

.clone-blog-card .bc-excerpt {
    font-size: 0.875rem;
    color: var(--muted-fg);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clone-blog-card .bc-footer {
    padding: 0 1.25rem 1.25rem;
}

.clone-blog-card .bc-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s;
}

.clone-blog-card .bc-footer a:hover {
    gap: 0.5rem;
}

/* ────────────────────────────────────────────────
   CTA SECTION
   ──────────────────────────────────────────────── */
.clone-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
    padding: 5rem 0;
}

.clone-cta .cta-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.06;
    pointer-events: none;
}

.clone-cta .cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.clone-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-fg);
    margin-bottom: 1rem;
}

.clone-cta p {
    color: rgba(240, 248, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.clone-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 576px) {
    .clone-cta .cta-buttons {
        flex-direction: row;
    }
}

.clone-cta .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: var(--secondary-fg);
    border: none;
    border-radius: 9999px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: "Nunito Sans", sans-serif;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.2s;
}

.clone-cta .cta-btn-primary:hover {
    background: hsl(100, 100%, 27%);
    transform: translateY(-1px);
    color: var(--secondary-fg);
}

.clone-cta .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(240, 248, 255, 0.15);
    color: var(--primary-fg);
    border: 1px solid rgba(240, 248, 255, 0.2);
    border-radius: 9999px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: "Nunito Sans", sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.clone-cta .cta-btn-secondary:hover {
    background: rgba(240, 248, 255, 0.25);
    color: var(--primary-fg);
}

/* ────────────────────────────────────────────────
   SECTION SPACING
   ──────────────────────────────────────────────── */
.clone-section {
    padding: 5rem 0;
}

.clone-section-alt {
    padding: 5rem 0;
    background-color: var(--background);
}

/* ────────────────────────────────────────────────
   GRID HELPERS
   ──────────────────────────────────────────────── */
.clone-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .clone-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .clone-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.clone-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .clone-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.clone-grid-2-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .clone-grid-2-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .clone-grid-2-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ────────────────────────────────────────────────
   RESPONSIVE HERO FIXES
   ──────────────────────────────────────────────── */
@media (max-width: 992px) {
    .clone-hero h1 {
        text-align: center;
    }

    .clone-hero .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .clone-hero .popular-wrap {
        justify-content: center;
    }

    .clone-hero .hero-img-wrap {
        justify-content: center;
        margin-bottom: 2rem;
        order: -1;
    }

    .clone-hero .hero-img-wrap img {
        max-width: 18rem;
    }
}