/* =========================================================
   Furniture Swap.ai — main stylesheet (v2)
   Mobile-first responsive design
   Breakpoints: 480 / 640 / 768 / 1024 / 1280
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --green-900: #000000;
    --green-800: #000000;
    --green-700: #000000;
    --green-50:  #ffffff;
    --green-bg:  #f7f7f7;

    --ink-900:   #0b1220;
    --ink-700:   #1f2937;
    --ink-500:   #4b5563;
    --ink-400:   #6b7280;
    --ink-300:   #9ca3af;
    --ink-200:   #e5e7eb;
    --ink-100:   #f3f4f6;
    --ink-50:    #f7f7f7;

    --white:     #ffffff;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(15, 61, 46, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 61, 46, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 61, 46, 0.12);

    --container: 1200px;
    --header-h:  76px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { opacity: .85; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-900); box-shadow: var(--shadow-md); }

.arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Brand ---------- */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-900);
    font-weight: 700;
    line-height: 1.1;
}
.brand img{
	height:80px;
	}

.brand-mark {
    height: 62px;
}
.brand-name { font-size: 14px; }
.brand--light { color: var(--white); }
.brand--light .brand-mark { border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--white);
    border-bottom: 1px solid var(--ink-100);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 12px;
}

/* Main nav — default desktop look; mobile drawer kicks in below 1024px */
.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-size: 15px;
    color: var(--ink-700);
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}
.nav-link.is-active { color: var(--green-900); font-weight: 700; }
.nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--green-900);
    border-radius: 2px;
}
.nav-link:hover { color: var(--green-800); opacity: 1; }

/* Header utility icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--ink-700);
    transition: background .2s ease, color .2s ease;
}
.icon-btn:hover { background: var(--ink-100); color: var(--green-900); opacity: 1; }
.icon-btn svg { width: 22px; height: 22px; }

/* On the smallest screens, hide some icons to keep header tidy */
.icon-btn--search, .icon-btn--location { display: none; }

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--ink-700);
    transition: background .2s ease;
}
.nav-toggle:hover { background: var(--ink-100); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
    background: var(--green-bg);
    padding: 40px 0 56px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.eyebrow {
    color: var(--green-800);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 800;
    color: var(--ink-900);
    margin-bottom: 18px;
    line-height: 1.15;
}
.text-accent { color: var(--green-800); }
.hero-lede {
    font-size: 16px;
    color: var(--ink-500);
    max-width: 480px;
    line-height: 1.65;
}
.hero-media { display: flex; justify-content: center; }
.hero-image { width: 100%; max-width: 640px; }

/* ---------- Section titles ---------- */
.section-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 34px);
    color: var(--ink-900);
    margin-bottom: 32px;
}
.section-title-sm {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--green-800);
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.section-lede {
    text-align: center;
    color: var(--ink-500);
    max-width: 560px;
    margin: -16px auto 32px;
    font-size: 16px;
}

p.let-your-customers {
    padding: 80px 0 0;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    
}

section#how-it-works {
    background: #f7f7f7;
    margin: 80px 0 0;
}

/* ---------- Steps ---------- */
.steps-section { padding: 56px 0; background: var(--white); }
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    justify-items: center;
}
.step-card { width: 100%; max-width: 280px; text-align: left; }
.step-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    min-height: 56px;
}
.step-number {
    width: 32px; height: 32px;
    border-radius: 50%;
    background-color: #000;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-900);
    margin: 4px 0 0;
    line-height: 1.35;
}
.step-image-wrap { display: flex; justify-content: center; }
.step-image { max-height: 320px; width: auto; }
.step-arrow { display: none; }

/* ---------- Results carousel ---------- */
.results-section { padding: 56px 0; background: #ffffff; }
.carousel { position: relative; display: flex; align-items: center; gap: 8px; }
.carousel-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
}
.carousel-track {
    display: flex;
    transition: transform .4s ease;
    will-change: transform;
}
.result-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 4px;
}
.result-card {
	/* aspect-ratio: 3 / 4;  */
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--ink-200);
    margin: 0;
    box-shadow: var(--shadow-sm);
}
.result-slide--landscape .result-card {
	/* aspect-ratio: 4 / 3; */
}
.result-image {
    /* width: 100%;
    height: 220px; */
	width: 100%;
	height: 100%;
    object-fit: cover;
	display: block;
}
.result-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--ink-100);
    color: var(--ink-700);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    z-index: 2;
}
.result-badge--after {
    background: var(--green-800);
    color: var(--white);
}
.carousel-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink-700);
    box-shadow: var(--shadow-md);
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s ease;
}
.carousel-arrow:hover { background: var(--green-50); }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ink-300);
    transition: background .2s ease, transform .2s ease;
    cursor: pointer;
}
.dot.is-active { background: var(--green-800); transform: scale(1.2); }

/* ---------- Video section ---------- */
.video-section { padding: 56px 0; background: #ffffff; }
.video-wrap {
    max-width: 400px;
    margin: 0 auto;
    /* border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--ink-900); */
}
.video-wrap video {
    width: 100%;
     height: auto;
    display: block;
      border-radius: 20px;
      background: #000;
    aspect-ratio: 10 / 16;
    object-fit: cover;
	 box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 11px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--green-800);
    color: var(--white);
    padding: 48px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
.footer-tagline {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 20px;
}
.footer-copy {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    margin: 0;
}
.footer-heading {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 700;
}
.footer-list li { margin-bottom: 10px; }
.footer-list a {
    color: rgba(255,255,255,.8);
    font-size: 14px;
}
.footer-list a:hover { color: var(--white); opacity: 1; }

.footer-cta-text {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.footer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}
.footer-cta-link:hover { opacity: 1; }
.play-circle {
    display: inline-flex;
    width: 32px; height: 32px;
    border: 1.5px solid rgba(255,255,255,.8);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.play-circle svg { width: 14px; height: 14px; }
.footer-cta-link:hover .play-circle { background: rgba(255,255,255,.15); }

/* ---------- Error pages ---------- */
.error-section { padding: 80px 0; text-align: center; }
.error-section .btn { margin-top: 24px; }

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* ---- Small phones up ---- */
@media (min-width: 480px) {
    .container { padding: 0 24px; }
    .result-image { /* height: 260px; */ }
    .icon-btn--search { display: inline-flex; }
}

/* ---- Large phones / small tablets ---- */
@media (min-width: 640px) {
    .hero { padding: 56px 0 64px; }
    .result-slide { grid-template-columns: 1fr 1fr; }
    .result-image { /* height: 220px; */ }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .icon-btn--location { display: inline-flex; }
}

/* ---- Tablet ---- */
@media (min-width: 768px) {
    .container { padding: 0 32px; }
    .hero { padding: 64px 0 72px; }
    .steps-grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 20px;
    }
    .step-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 220px;
        min-width: 60px;
    }
    .step-arrow svg { width: 60px; height: auto; }
    .result-image { /* height: 280px; */ }
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr 1.6fr;
        gap: 32px;
        align-items: start;
    }
    .video-section { padding: 72px 0; }
    .results-section, .steps-section { padding: 72px 0; }
}

/* ---- Small desktop ---- */
@media (min-width: 1024px) {
    .hero { padding: 80px 0 96px; }
    .hero-grid {
        grid-template-columns: 1fr 1.15fr;
        gap: 10px;
    }
    .hero-text { padding-right: 16px; }
    .hero-title { font-size: 36px; }

    .section-title { font-size: 32px; }
    .video-wrap video {
     aspect-ratio: 9 / 16;
    
    }
	.result-slide { flex: 0 0 50%; }
	.m-show{
		display:none !important;
	}
   .d-show {
	   display:block !important;
	}
}

/* ---- Below desktop: turn the inline nav into a slide-down drawer ---- */
@media (max-width: 1023.98px) {
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 16px 20px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--ink-100);
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        transition: transform .3s ease;
        z-index: 40;
        flex: none;
    }
	
	.main-nav {
       transform: translateY(-150%);
    }
    .main-nav.is-open {
       transform: translateY(-35%);
    }
	
    .nav-link {
        padding: 14px 4px;
        border-bottom: 1px solid var(--ink-100);
        font-size: 16px;
    }
    .nav-link.is-active::after { display: none; }
	
	a.main-menu-close.m-show {
    position: absolute;
    z-index: 9999;
    font-size: 25px;
    color: #000;
    width: 100%;
    top: 0;
    right: 20px;
    text-align: right;
    }
	
	.section-title-sm {
     font-size: 20px;
   }
   .testimonial-mark {
     max-height: 20px;
    }
}

/* ---- Large desktop ---- */
@media (min-width: 1280px) {
    .hero-title { font-size: 36px; }
    .steps-section, .results-section, .video-section { padding: 80px 0 80px }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   PRICING PAGE
   ========================================================= */

/* ---------- Hero ---------- */
.pricing-hero {
    text-align: center;
    padding: 48px 0 24px;
    background: var(--green-bg);
}
.pricing-title {
    font-size: clamp(36px, 8vw, 36px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin-bottom: 18px;
}
.pricing-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--ink-400);
    margin: 0;
}

/* ---------- Pricing card ---------- */
.pricing-card-section {
    background: var(--green-bg);
    padding: 24px 0 48px;
}
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px 28px;
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}
.pricing-card-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-align: center;
    flex-shrink: 0;
}
.price-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-amount {
    font-size: clamp(34px, 8vw, 46px);
    font-weight: 700;
    color: var(--green-900);
}
.price-unit {
    font-size: 16px;
    color: var(--ink-700);
    margin: 0;
    line-height: 1.3;
	font-weight:600;
}
.pricing-card-divider { display: none; }

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 460px;
}
.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feature-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-800);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.feature-check svg { width: 16px; height: 16px; }
.feature-text {
    font-size: 16px;
    color: var(--ink-900);
    font-weight: 500;
    line-height: 1.4;
}

/* ---------- Before / After comparison (side-by-side split) ---------- */
.pricing-compare-section {
    background: var(--white);
    padding: 32px 0;
}
.compare-split {
    position: relative;
    max-width: 1030px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    background: var(--ink-100);
}
.compare-panel {
    flex: 1 1 50%;
    min-width: 0;
    overflow: hidden;
}
.compare-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Each photo is anchored to its outer edge so the room lines up across the seam */
.compare-panel--before img { object-position: left center; }
.compare-panel--after  img { object-position: right center; }

/* Center divider line */
.compare-seam {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255, 255, 255, 0.92);
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
    z-index: 3;
}
.compare-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--ink-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.compare-knob svg { width: 22px; height: 22px; }

/* ---------- Trust strip ---------- */
.pricing-trust-section {
    background: var(--white);
    padding: 16px 0 64px;
}
.trust-strip {
    background: #f7f7f7;
    border-radius: var(--radius-md);
    max-width: 1030px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}
.trust-icon {
    flex-shrink: 0;
    color: var(--ink-700);
}
.trust-icon svg { width: 26px; height: 26px; }
.trust-text {
    margin: 0;
    font-size: clamp(15px, 2.5vw, 19px);
    color: var(--ink-700);
    font-weight: 500;
}

/* ---------- Responsive: pricing card goes two-column on tablet+ ---------- */
@media (min-width: 768px) {
    .pricing-hero { padding: 64px 0 28px; }
    .pricing-card {
        flex-direction: row;
        align-items: center;
        gap: 36px;
        padding: 44px 48px;
    }
    .pricing-card-divider {
        display: block;
        align-self: stretch;
        width: 5px;
        background: var(--ink-200);
        margin: 8px 0;
    }
    .pricing-features { margin: 0; }
    .trust-strip { padding: 22px 28px; }
}

@media (min-width: 1024px) {
    .pricing-card { padding: 48px 56px; }
    .price-circle { width: 200px; height: 200px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

/* ---------- Hero ---------- */
.contact-hero {
    background: var(--green-bg);
    text-align: center;
    padding: 56px 0 32px;
}
.contact-heading {
    font-size: clamp(28px, 5.5vw, 36px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    max-width: 900px;
    margin: 0 auto 28px;
}
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 600;
    color: var(--green-800);
}
.contact-email:hover { color: var(--green-900); opacity: 1; }
.contact-email-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
}
.contact-email-icon svg { width: 28px; height: 28px; }

/* ---------- iMac frame ---------- */
.contact-showcase {
    background: var(--green-bg);
    padding: 24px 0 72px;
}
.imac {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Monitor body: dark bezel with thick chin (iMac style) */
.imac-screen {
    width: 100%;
    background: #1d1d1f;
    border-radius: 18px;
    padding: 14px 14px 40px;       /* thicker bottom = chin */
    box-shadow: var(--shadow-lg);
}
.imac-screen .compare-split {
    border-radius: 6px;
    box-shadow: none;
    max-width: none;
    margin: 0;
}
/* Aluminium stand */
.imac-base {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.imac-neck {
    width: 120px;
    height: 60px;
    background: linear-gradient(to bottom, #d9dadc, #b9bbbe);
    clip-path: polygon(38% 0, 62% 0, 78% 100%, 22% 100%);
}
.imac-foot {
    width: 230px;
    height: 16px;
    background: linear-gradient(to bottom, #c3c5c8, #a6a8ab);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

@media (min-width: 768px) {
    .contact-hero { padding: 72px 0 36px; }
    .imac-screen { padding: 18px 18px 48px; border-radius: 22px; }
    .imac-neck { width: 140px; height: 70px; }
    .imac-foot { width: 270px; height: 18px; }
}

@media (min-width: 1024px) {
    .contact-hero { padding: 88px 0 40px; }
}

@media (min-width: 768px) and (max-width: 991.98px) { 
	.step-title {
		font-size: 12px;
	   
	}
	.steps-grid {
		gap: 8px;
	}
	.step-image-wrap {
		height: 280px;
	}
}

/* TESTIMONIALS */
.testimonial-section {
    background: var(--ink-50);
    padding: 56px 0;
}
.testimonial {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}
.testimonial-mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 90px;
    line-height: 0.7;
    color: var(--green-800, #14563d);
    display: block;
}
.testimonial-text {
    font-size: clamp(15px, 2vw, 17px);
    line-height: 2.1;
    color: var(--ink-700, #1f2937);
    max-width: 560px;
    margin: 0;
}
.testimonial-attr {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.testimonial-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
}
.logo-ez {
    color: #c8102e;
    font-size: 26px;
    font-style: italic;
    font-weight: 800;
}
.logo-living {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 24px;
    color: #1a1a1a;
}
.logo-interiors {
    color: #c8102e;
    font-size: 16px;
    letter-spacing: 0.18em;
    font-weight: 700;
}
.testimonial-cite {
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-700, #1f2937);
}
.cite-name {
    display: block;
    font-weight: 700;
    color: var(--ink-900, #0b1220);
    margin-bottom: 2px;
}

/* Desktop: quote mark | text | logo+attribution in a row */
@media (min-width: 900px) {
    .testimonial {
        grid-template-columns: auto 1fr auto;
        gap: 40px;
        align-items: flex-start;
    }
    .testimonial-mark { font-size: 110px; }
    .testimonial-attr { text-align: left; }
}

/* BUILT FOR RETAILERS */
.builtfor-section {
    background: var(--ink-50, #f8fafc);
    padding: 40px 0;
}
.builtfor-heading {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-800, #14563d);
    margin: 0 0 32px;
}
.builtfor-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
}
.builtfor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 8px 16px;
    text-align: left;
}
.builtfor-icon {
    flex-shrink: 0;
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.builtfor-icon svg { width: 34px; height: 34px; }
.builtfor-label {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #000000;
}

/* Desktop: single row with vertical dividers between items */
@media (min-width: 768px) {
    .builtfor-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .builtfor-item + .builtfor-item {
        border-left: 1px solid var(--ink-200, #e5e7eb);
    }
}

/* Let your customers.... */
  .video-wrapper {
    max-width: 800px;     /* cap the size on large screens */
    margin: 0 auto;       /* center it */
    width: 100%;
  }
  .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #000;     /* avoids a white flash before the poster paints */
  }