/* =========================================================
   directory.it-cox.com  -- Professional UI
   ========================================================= */

:root {
    /* Palette */
    --navy:         #0f1a2e;
    --navy-mid:     #1b2d45;
    --bg:           #ffffff;
    --bg-subtle:    #f8fafc;
    --bg-muted:     #f1f5f9;
    --text:         #0f1a2e;
    --muted:        #5a6a7e;
    --subtle:       #94a3b8;
    --accent:       #0d9488;
    --accent-deep:  #0f766e;
    --accent-soft:  #f0fdfa;
    --accent-mid:   #2dd4bf;
    --line:         #e2e8f0;
    --line-strong:  #cbd5e1;

    /* Elevation */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(15, 26, 46, 0.07), 0 4px 10px rgba(15, 26, 46, 0.04);
    --shadow:    0 4px 20px rgba(15, 26, 46, 0.08);
    --shadow-md: 0 8px 32px rgba(15, 26, 46, 0.1), 0 2px 8px rgba(15, 26, 46, 0.04);

    /* Shape */
    --radius-sm: 6px;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Space Grotesk', 'Noto Sans Bengali', sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a    { color: inherit; text-decoration: none; }
img  { display: block; width: 100%; }
main { display: block; }

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main { flex: 1; }

/* ---- Layout ---- */
.container {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.site-header.home {
    background: rgba(255, 255, 255, 0.94);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

/* ---- Brand ---- */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    font-family: 'Space Grotesk', sans-serif;
}

.brand small {
    display: block;
    font-size: 0.76rem;
    color: var(--muted);
    margin-top: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

/* ---- Navigation ---- */
.site-nav,
.language-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 140ms ease, background 140ms ease;
    font-family: 'Space Grotesk', sans-serif;
}

.site-nav a:hover {
    color: var(--text);
    background: var(--bg-subtle);
}

.language-switcher {
    border-left: 1px solid var(--line);
    padding-left: 16px;
    margin-left: 4px;
    gap: 4px;
}

.language-switcher a {
    padding: 5px 11px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    transition: color 140ms ease, background 140ms ease;
    font-family: 'Space Grotesk', sans-serif;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: var(--accent-soft);
    color: var(--accent-deep);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
    margin: 0 0 12px;
    font-family: 'Space Grotesk', 'Noto Sans Bengali', sans-serif;
    color: var(--navy);
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(1.8rem, 3.4vw, 2.75rem);
    line-height: 1.12;
    max-width: 20ch;
}

h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
}

.lead {
    font-size: 1.05rem;
    max-width: 60ch;
    margin-top: 12px;
    line-height: 1.78;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 11px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    box-shadow: 0 1px 4px rgba(13, 148, 136, 0.28);
    text-decoration: none;
}

.button:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.32);
}

.button--light {
    background: #fff;
    color: var(--accent-deep);
    box-shadow: var(--shadow-xs), 0 0 0 1.5px var(--line);
}

.button--light:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm), 0 0 0 1.5px var(--accent);
}

.button--ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--line-strong);
    box-shadow: none;
}

.button--ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-deep);
    transform: translateY(-1px);
}

.button--dark {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

.button--dark:hover {
    background: var(--navy-mid);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.button--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 1px 4px rgba(37, 211, 102, 0.3);
}

.button--whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: color 140ms ease, gap 140ms ease;
}

.text-link::after { content: '\2192'; }

.text-link:hover {
    color: var(--accent-deep);
    gap: 8px;
}

/* =========================================================
   PAGE SECTIONS
   ========================================================= */
.hero-section {
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--line);
}

.page-banner {
    padding: 60px 0 48px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--line);
}

.business-hero {
    padding: 60px 0 44px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--line);
}

.section-block {
    padding: 72px 0;
}

.section-block--soft {
    background: var(--bg-subtle);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* =========================================================
   GRIDS AND LAYOUT
   ========================================================= */
.hero-grid,
.business-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 44px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

/* =========================================================
   HERO ELEMENTS
   ========================================================= */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stats-row article {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stats-row strong {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.stats-row span {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
}

/* ---- Hero card (right column) ---- */
.hero-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 36px;
    color: #fff;
}

.hero-card .eyebrow {
    color: var(--accent-mid);
}

.hero-card .eyebrow::before {
    background: var(--accent-mid);
}

.hero-card h2 {
    color: #fff;
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-card__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-card__meta span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-card__meta span::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-mid);
    flex-shrink: 0;
}

/* =========================================================
   LISTING CARDS
   ========================================================= */
.listing-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.listing-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.listing-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px 20px;
    flex: 1;
}

.listing-card__body h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--navy);
}

.listing-card__body p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted);
    flex: 1;
}

.listing-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.listing-card__footer span {
    font-size: 0.78rem;
    color: var(--subtle);
    font-family: 'Space Grotesk', sans-serif;
}

.listing-card__footer a {
    font-size: 0.835rem;
    font-weight: 600;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 140ms ease, gap 140ms ease;
}

.listing-card__footer a::after { content: '\2192'; }

.listing-card__footer a:hover {
    color: var(--accent-deep);
    gap: 7px;
}

/* =========================================================
   CHIPS
   ========================================================= */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent-deep);
    font-size: 0.76rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.02em;
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.chip--ghost {
    background: var(--bg-muted);
    color: var(--muted);
    border-color: var(--line);
}

.chip--priority {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

/* =========================================================
   CATEGORY / FEATURE CARDS
   ========================================================= */
.category-card {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--line);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.category-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.category-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.category-card span {
    display: block;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
}

/* =========================================================
   BUSINESS DETAIL
   ========================================================= */
.business-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.business-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.business-meta div:last-child {
    border-right: 0;
}

.business-meta strong {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--subtle);
    font-family: 'Space Grotesk', sans-serif;
}

.business-meta span {
    font-size: 0.92rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.45;
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
}

.business-hero__image img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line);
}

/* ---- Service pills ---- */
.service-pill {
    padding: 13px 18px;
    border-radius: var(--radius);
    background: var(--accent-soft);
    border: 1px solid rgba(13, 148, 136, 0.15);
    color: var(--accent-deep);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
    line-height: 1.4;
}

/* ---- Contact card ---- */
.contact-card {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.contact-card h2 {
    font-size: 1.1rem;
    margin-bottom: 0;
    padding: 20px 22px 0;
}

.contact-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted);
    padding: 0 22px;
}

.contact-card .button {
    margin: 0 22px;
}

.contact-card .button:last-of-type {
    margin-bottom: 22px;
}

/* Map embed */
.business-map {
    position: relative;
    width: 100%;
}

.business-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.business-map__link {
    display: block;
    text-align: right;
    font-size: 0.73rem;
    color: var(--subtle);
    font-family: 'Space Grotesk', sans-serif;
    padding: 5px 10px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--line);
    transition: color 140ms ease;
}

.business-map__link:hover {
    color: var(--accent);
}

/* ---- Empty state ---- */
.empty-state {
    padding: 64px 32px;
    text-align: center;
    background: var(--bg-subtle);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    padding: 48px 0 60px;
    border-top: 1px solid var(--line);
    background: var(--bg-subtle);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
    background: var(--navy);
    color: #fff;
    padding: 52px;
    border-radius: var(--radius-xl);
}

.site-footer__grid h2 {
    color: #fff;
    font-size: 1.55rem;
    max-width: 24ch;
    margin-bottom: 12px;
}

.site-footer__grid .eyebrow {
    color: var(--accent-mid);
}

.site-footer__grid .eyebrow::before {
    background: var(--accent-mid);
}

.site-footer__grid > div > p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    max-width: 46ch;
}

.submit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.submit-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0;
}

.submit-card p strong {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Space Grotesk', sans-serif;
}

/* =========================================================
   LIST YOUR BUSINESS — BENEFITS SECTION
   ========================================================= */
.section-block--dark {
    background: var(--navy);
    border-top: none;
    border-bottom: none;
}

.benefits-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
}

.benefits-content h2 {
    color: #fff;
    margin-top: 10px;
}

.eyebrow--light {
    color: var(--accent-mid);
}

.eyebrow--light::before {
    background: var(--accent-mid);
}

.section-lead {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 36px;
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefits-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.benefits-check::after {
    content: '\2713';
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.benefits-list__item strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.benefits-list__item span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.65;
    font-family: 'Noto Sans Bengali', 'Space Grotesk', sans-serif;
}

/* ---- CTA panel (right sticky card) ---- */
.cta-panel {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    position: sticky;
    top: 88px;
}

.cta-panel .eyebrow {
    color: var(--accent-deep);
}

.cta-panel h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-top: 8px;
    margin-bottom: 12px;
}

.cta-panel > p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.cta-panel__checklist {
    list-style: none;
    margin: 0 0 26px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-subtle);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.cta-panel__checklist li {
    font-size: 0.875rem;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-panel__checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: var(--accent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.button--cta {
    width: 100%;
    justify-content: center;
    font-size: 0.925rem;
    padding: 13px 22px;
    margin-bottom: 14px;
}

.cta-panel__note {
    font-size: 0.82rem;
    color: var(--subtle);
    text-align: center;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* =========================================================
   GEO / FAQ SECTION
   ========================================================= */
.section-intro {
    color: var(--muted);
    font-size: 1rem;
    max-width: 680px;
    margin: 0 0 32px;
    line-height: 1.6;
}

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

.faq-item {
    background: var(--bg-subtle);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.faq-item:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-xs);
}

.faq-question {
    font-weight: 700;
    font-size: 0.975rem;
    color: var(--navy);
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.45;
}

.faq-answer p {
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.68;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .site-nav { display: none; }

    .hero-grid,
    .business-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    h1 { max-width: 100%; }

    .detail-layout { grid-template-columns: 1fr; }

    .site-footer__grid {
        grid-template-columns: 1fr;
        padding: 36px;
        gap: 32px;
    }

    .benefits-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-panel { position: static; }
}

@media (max-width: 640px) {
    .container { width: calc(100% - 32px); }

    .site-header__inner { min-height: 60px; }

    .hero-section { padding: 44px 0 48px; }

    .page-banner,
    .business-hero { padding: 40px 0 36px; }

    .section-block { padding: 48px 0; }

    .brand__mark { width: 36px; height: 36px; font-size: 0.8rem; }

    .site-footer__grid { padding: 28px 24px; }

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

    .business-meta div:nth-child(even) { border-right: 0; }

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

    .cta-panel { padding: 26px 22px; }
}
