/* =========================================================
   Irish Start – Premium Design System
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

:root {
    /* Brand */
    --brand: #16C079;
    --brand-2: #0E8A56;
    --brand-3: #0A6B43;
    --brand-soft: #E6FAF1;
    --brand-glow: rgba(22, 192, 121, 0.45);

    /* Surfaces */
    --bg: #FFFFFF;
    --bg-2: #F6F8FB;
    --bg-3: #EEF2F7;
    --ink: #0A0E1A;
    --ink-2: #1B2230;
    --ink-3: #2B3445;
    --muted: #5C6473;
    --muted-2: #8A93A4;
    --line: #E5E9F0;
    --line-2: #EEF1F6;

    /* Dark surfaces */
    --dark: #0A0E1A;
    --dark-2: #0E1424;
    --dark-3: #161D31;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.06), 0 1px 1px rgba(10, 14, 26, 0.04);
    --shadow:    0 8px 24px rgba(10, 14, 26, 0.08), 0 2px 4px rgba(10, 14, 26, 0.04);
    --shadow-lg: 0 24px 48px rgba(10, 14, 26, 0.12), 0 8px 16px rgba(10, 14, 26, 0.06);
    --shadow-xl: 0 40px 80px rgba(10, 14, 26, 0.18), 0 12px 24px rgba(10, 14, 26, 0.08);
    --glow:      0 0 0 4px rgba(22, 192, 121, 0.14);
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.grad-text {
    background: linear-gradient(135deg, #16C079 0%, #0E8A56 60%, #0A6B43 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn i { font-size: 14px; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn--lg { height: 58px; padding: 0 28px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, #18CC7F 0%, #0E8A56 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(22, 192, 121, 0.32), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(22, 192, 121, 0.42), inset 0 1px 0 rgba(255,255,255,0.25); }

.btn--outline {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--white {
    background: #fff;
    color: var(--brand-2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn--white:hover { transform: translateY(-2px); }

.btn--ghost-white {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(8px);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.btn--search {
    height: 60px;
    padding: 0 28px;
    border-radius: 14px;
    font-size: 16px;
}

/* =========================================================
   Promo Bar
   ========================================================= */

.promo-bar {
    background: linear-gradient(90deg, #0A6B43, #0E8A56 50%, #16C079);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    text-align: center;
}
.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #BFF6DC;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
    50%      { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 0 rgba(10,14,26,0.04);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.brand__mark { width: 32px; height: 32px; display: inline-flex; }
.brand__name--accent { color: var(--brand-2); }

.nav__menu {
    display: flex;
    gap: 6px;
    align-items: center;
}
.nav__menu a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-3);
    border-radius: 10px;
    transition: color .2s ease, background .2s ease;
}
.nav__menu a:hover { color: var(--ink); background: var(--bg-2); }
.nav__menu-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    color: var(--ink-3);
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}
.nav__menu-login:hover {
    color: var(--ink);
    background: #fff;
}

.nav__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.nav__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
    background: var(--bg-2);
    border: 1px solid var(--line);
    transition: background .2s, transform .2s;
}
.nav__phone:hover { background: #fff; transform: translateY(-1px); }
.nav__phone i { color: var(--brand-2); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg-2);
    border: 1px solid var(--line);
}
.nav__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */

.hero {
    position: relative;
    padding: 80px 0 110px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(22, 192, 121, 0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(124, 91, 255, 0.08), transparent 60%),
        linear-gradient(180deg, #FAFCFE 0%, #F3F7FB 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.hero__mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}
.hero__mesh--a { width: 560px; height: 560px; background: #16C079; top: -180px; left: -120px; animation: float 14s ease-in-out infinite; }
.hero__mesh--b { width: 480px; height: 480px; background: #7C5BFF; bottom: -200px; right: -80px; opacity: 0.30; animation: float 18s ease-in-out infinite reverse; }
.hero__mesh--c { width: 340px; height: 340px; background: #FFB400; top: 30%; left: 40%; opacity: 0.18; animation: float 22s ease-in-out infinite; }

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10,14,26,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,14,26,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

@keyframes float {
    0%, 100% { transform: translate(0,0); }
    50%      { transform: translate(30px, -30px); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__copy { max-width: 640px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(22, 192, 121, 0.10);
    border: 1px solid rgba(22, 192, 121, 0.22);
    color: var(--brand-3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}
.eyebrow__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(22, 192, 121, 0.18);
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.4vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 22px;
}
.hero__lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 560px;
}

/* Search card */
.search-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    margin-bottom: 22px;
}
.search-card__field {
    position: relative;
    padding: 10px 14px 10px 46px;
    border-radius: 12px;
    transition: background .2s ease;
}
.search-card__field:hover { background: var(--bg-2); }
.search-card__field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--brand-2);
}
.search-card__field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.search-card__field select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    padding-right: 18px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%235C6473' d='M6 8.5 1.5 4h9z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}
.search-card__field select:focus { outline: none; }
.search-card__divider {
    width: 1px; height: 36px; background: var(--line);
}

/* Quick chips */
.chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 36px;
}
.chips__label {
    font-size: 13px;
    color: var(--muted-2);
    font-weight: 600;
    margin-right: 4px;
}
.chip {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    background: #fff;
    border: 1px solid var(--line);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.chip:hover {
    background: var(--brand-soft);
    border-color: rgba(22, 192, 121, 0.35);
    color: var(--brand-3);
    transform: translateY(-1px);
}

/* Trust strip */
.trust-strip {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}
.trust-strip__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.trust-strip__item strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    font-family: var(--font-display);
}
.trust-strip__item span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}
.trust-strip__sep {
    width: 1px;
    height: 28px;
    background: var(--line);
}

/* Hero visual */
.hero__visual {
    position: relative;
    height: 560px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}
.orb--lg { width: 380px; height: 380px; background: radial-gradient(circle at 30% 30%, #16C079, transparent 70%); top: 20px; right: -40px; opacity: 0.45; }
.orb--md { width: 240px; height: 240px; background: radial-gradient(circle at 30% 30%, #7C5BFF, transparent 70%); bottom: 40px; left: -20px; opacity: 0.35; }
.orb--sm { width: 160px; height: 160px; background: radial-gradient(circle at 30% 30%, #FFB400, transparent 70%); top: 50%; right: 30%; opacity: 0.30; }

.pop-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    animation: floatY 6s ease-in-out infinite;
}
.pop-card--top { top: 30px; left: 20px; }
.pop-card--mid { top: 50%; right: 0; transform: translateY(-50%); animation-delay: -2s; }
.pop-card--bottom { bottom: 30px; left: 60px; animation-delay: -4s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.pop-card--mid { animation-name: floatYMid; }
@keyframes floatYMid {
    0%, 100% { transform: translate(0, -50%); }
    50%      { transform: translate(0, calc(-50% - 10px)); }
}

.pop-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    flex-shrink: 0;
}
.pop-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.pop-card span:not(.pop-card__pill) {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}
.pop-card__pill {
    margin-left: auto;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.pop-card__pill--alt { background: rgba(124, 91, 255, 0.10); color: #4A2EE0; }

.hero__phone {
    position: absolute;
    bottom: 50px;
    right: 100px;
    width: 200px;
    height: 280px;
    background: linear-gradient(160deg, #fff, #F4F7FB);
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xl);
    padding: 22px 16px;
    display: none;
}
.hero__phone-screen { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.phone-row { display: flex; align-items: center; gap: 10px; }
.phone-dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.phone-dot--green { background: linear-gradient(135deg, #16C079, #0E8A56); }
.phone-dot--orange { background: linear-gradient(135deg, #FF8C42, #E54B1B); }
.phone-dot--purple { background: linear-gradient(135deg, #7C5BFF, #4A2EE0); }
.phone-line { height: 8px; border-radius: 4px; background: var(--bg-3); flex: 1; }
.phone-line--lg { max-width: 100%; }
.phone-line--md { max-width: 75%; }
.phone-line--sm { max-width: 55%; }
.phone-cta {
    margin-top: auto;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #18CC7F, #0E8A56);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.phone-cta i { margin-right: 6px; }

/* =========================================================
   Trust Band
   ========================================================= */

.trust-band {
    padding: 28px 0;
    background: var(--ink);
    color: #fff;
}
.trust-band__title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.60);
    margin-bottom: 18px;
}
.trust-band__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 36px;
}
.trust-band__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.86);
}
.trust-band__item i { color: var(--brand); font-size: 16px; }

/* =========================================================
   Sections
   ========================================================= */

.section {
    padding: 110px 0;
}
.section--categories { background: #fff; }
.section--directory { background: linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 100%); }
.section--how { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.section--how::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 500px at 50% 0%, rgba(22, 192, 121, 0.18), transparent 60%),
        radial-gradient(800px 400px at 100% 100%, rgba(124, 91, 255, 0.18), transparent 60%);
    pointer-events: none;
}
.section--how > .container { position: relative; z-index: 1; }
.section--business { background: #fff; padding: 60px 0 110px; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(22, 192, 121, 0.10);
    color: var(--brand-3);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.section-tag--alt { background: rgba(124, 91, 255, 0.10); color: #4A2EE0; }
.section-tag--white {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(8px);
}
.section--how .section-tag {
    background: rgba(22, 192, 121, 0.18);
    color: #BFF6DC;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: inherit;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
}
.section--how .section-sub { color: rgba(255,255,255,0.66); }

/* =========================================================
   Category Grid
   ========================================================= */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat {
    position: relative;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    isolation: isolate;
}
.cat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    opacity: 0;
    transition: opacity .35s ease;
    z-index: -1;
}
.cat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.cat:hover::before { opacity: 0.06; }
.cat__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    box-shadow: 0 10px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.25);
    margin-bottom: 18px;
    font-size: 22px;
    transition: transform .35s ease;
}
.cat:hover .cat__icon { transform: scale(1.06) rotate(-3deg); }
.cat h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.cat p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 18px;
    min-height: 44px;
}
.cat__arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-3);
    font-size: 13px;
    font-weight: 700;
    transition: color .25s ease, transform .25s ease;
}
.cat__arrow i { transition: transform .25s ease; }
.cat:hover .cat__arrow { color: var(--brand-2); }
.cat:hover .cat__arrow i { transform: translateX(4px); }

/* =========================================================
   Filters
   ========================================================= */

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.filters__group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-chip {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-3);
    background: #fff;
    border: 1px solid var(--line);
    transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.filter-chip:hover { border-color: var(--ink-3); }
.filter-chip.is-active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    box-shadow: 0 6px 14px rgba(10,14,26,0.18);
}
.filters__meta {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

/* =========================================================
   Listings
   ========================================================= */

.listings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.listing {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}
.listing.is-hidden { display: none; }
.listing:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.listing__media {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden;
}
.listing__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.20), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,0,0,0.12), transparent 50%);
}
.listing__media i {
    font-size: 50px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18));
    position: relative;
    z-index: 1;
}
.listing__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(8px);
    z-index: 2;
}
.listing__badge i { font-size: 10px; color: var(--brand-2); }

.listing__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.listing__pill {
    display: inline-block;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-2);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.listing h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.listing p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}
.listing__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--muted-2);
    font-weight: 600;
}
.rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-2);
    font-weight: 700;
}
.rating i { color: #FFB400; font-size: 13px; }
.rating em {
    font-style: normal;
    font-weight: 500;
    color: var(--muted-2);
}
.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--line);
}

.no-results {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    font-weight: 600;
}

/* =========================================================
   How Steps
   ========================================================= */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.step {
    position: relative;
    padding: 32px 28px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.step:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(22, 192, 121, 0.32);
}
.step__num {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 16px;
    letter-spacing: 0.12em;
}
.step__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(22,192,121,0.20), rgba(22,192,121,0.05));
    border: 1px solid rgba(22, 192, 121, 0.30);
    color: var(--brand);
    font-size: 22px;
    margin-bottom: 20px;
}
.step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: #fff;
}
.step p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.66);
}

/* =========================================================
   Business CTA Card
   ========================================================= */

.biz-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px;
    border-radius: 32px;
    background: linear-gradient(135deg, #0A6B43 0%, #16C079 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.biz-card__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.4;
    background:
        radial-gradient(600px 300px at 100% 0%, rgba(255,255,255,0.30), transparent 60%),
        radial-gradient(500px 300px at 0% 100%, rgba(0,0,0,0.30), transparent 60%);
}
.biz-card__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    margin-bottom: 16px;
}
.biz-card__lead {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    max-width: 520px;
}
.biz-card__list {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}
.biz-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}
.biz-card__list i {
    color: #BFF6DC;
    font-size: 16px;
}
.biz-card__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.biz-card__visual {
    position: relative;
    height: 380px;
}
.biz-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.biz-orb--1 { width: 280px; height: 280px; background: rgba(255,255,255,0.30); top: -60px; right: -40px; }
.biz-orb--2 { width: 200px; height: 200px; background: rgba(191, 246, 220, 0.40); bottom: -40px; left: 0; }
.biz-orb--3 { width: 160px; height: 160px; background: rgba(255,255,255,0.20); top: 40%; left: 40%; }

.biz-stat {
    position: absolute;
    padding: 16px 22px;
    background: rgba(255,255,255,0.96);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.20);
    color: var(--ink);
    animation: floatY 6s ease-in-out infinite;
}
.biz-stat span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.biz-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
}
.biz-stat--1 { top: 30px; right: 20px; }
.biz-stat--2 { top: 50%; left: 0; animation-delay: -2s; }
.biz-stat--3 { bottom: 30px; right: 60px; animation-delay: -4s; }

/* =========================================================
   Final CTA
   ========================================================= */

.cta {
    padding: 80px 0;
    background: var(--bg-2);
}
.cta__inner {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: 32px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-width: 880px;
    margin: 0 auto;
}
.cta__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
}
.cta__inner p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 28px;
}
.cta__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.70);
    padding: 70px 0 30px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand--footer { color: #fff; }
.footer__brand p {
    margin: 18px 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.60);
    max-width: 320px;
}
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.86);
    transition: color .2s ease;
}
.footer__contact a:hover { color: var(--brand); }
.footer__contact a i { color: var(--brand); width: 18px; }

.footer h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.66);
    transition: color .2s ease;
}
.footer ul li a:hover { color: var(--brand); }

.footer__address {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
.footer__address i { color: var(--brand); margin-top: 2px; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.50);
}

/* =========================================================
   Floating Action Buttons
   ========================================================= */

.fab-whatsapp,
.fab-top {
    position: fixed;
    right: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    z-index: 90;
    box-shadow: var(--shadow-lg);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.fab-whatsapp {
    bottom: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.50);
}
.fab-whatsapp:hover { transform: translateY(-3px) scale(1.04); }
.fab-top {
    bottom: 96px;
    width: 46px;
    height: 46px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
}
.fab-top.is-visible { opacity: 1; pointer-events: auto; }
.fab-top:hover { transform: translateY(-3px); }

/* =========================================================
   Business Login Modal
   ========================================================= */

.btn--login {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(226, 232, 240, 0.9);
}

.login-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 13, 25, 0.68);
    backdrop-filter: blur(12px);
}

.login-modal.is-open {
    display: flex;
}

.business-apply-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 13, 25, 0.68);
    backdrop-filter: blur(12px);
}

.business-apply-modal.is-open {
    display: flex;
}

.business-apply-dialog {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100dvh - 40px);
    overflow: auto;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.business-apply-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--bg-2);
    border-radius: 50%;
    font-size: 24px;
}

.business-apply-dialog h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 30px;
}

.business-apply-dialog p {
    margin: 0 0 20px;
    color: var(--muted);
}

.business-apply-dialog form {
    display: grid;
    gap: 12px;
}

.business-apply-dialog label {
    color: var(--ink-3);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.business-apply-dialog input,
.business-apply-dialog textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    font: inherit;
}

.business-apply-dialog textarea {
    min-height: 110px;
    resize: vertical;
}

.business-apply-dialog input:focus,
.business-apply-dialog textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--glow);
}

.business-apply-success {
    display: none;
    padding: 12px;
    color: #065F46;
    background: #ECFDF5;
    border-radius: 14px;
    font-weight: 700;
}

.business-apply-success.is-visible {
    display: block;
}

.login-dialog {
    position: relative;
    width: min(430px, 100%);
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.login-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--bg-2);
    border-radius: 50%;
    font-size: 24px;
}

.login-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, #18CC7F 0%, #0E8A56 100%);
    border-radius: 16px;
    font-weight: 900;
}

.login-dialog h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 30px;
}

.login-dialog p {
    margin: 0 0 20px;
    color: var(--muted);
}

.login-dialog form {
    display: grid;
    gap: 12px;
}

.login-dialog label {
    color: var(--ink-3);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.login-dialog input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink);
    font: inherit;
}

.login-dialog input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: var(--glow);
}

.login-error {
    display: none;
    padding: 12px;
    color: #991B1B;
    background: #FEE2E2;
    border-radius: 14px;
    font-weight: 700;
}

.login-error.is-visible {
    display: block;
}

/* =========================================================
   Reveal Animation
   ========================================================= */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .listings { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { display: none; }
    .hero { padding: 60px 0 80px; }
    .trust-strip { flex-wrap: wrap; gap: 16px; }
    .trust-strip__sep { display: none; }
    .biz-card { grid-template-columns: 1fr; padding: 44px; }
    .biz-card__visual { display: none; }
}

@media (max-width: 900px) {
    .nav__menu { display: none; }
    .nav__menu.is-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 16px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        gap: 4px;
        align-items: stretch;
    }
    .nav__menu.is-open a,
    .nav__menu.is-open .nav__menu-login {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 12px;
        justify-content: flex-start;
    }
    .nav__toggle { display: flex; }
    .nav__phone { display: none; }

    .section { padding: 80px 0; }
    .section-head { margin-bottom: 44px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .listings { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .search-card {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 8px;
    }
    .search-card__divider { display: none; }
    .search-card__field { padding: 10px 14px 10px 42px; }
    .btn--search { width: 100%; }

    .hero { padding: 40px 0 60px; }
    .hero__lead { font-size: 16px; }

    .filters { gap: 12px; }
    .filters__group { gap: 6px; }
    .filter-chip { padding: 8px 14px; font-size: 13px; }

    .biz-card { padding: 32px 24px; }
    .biz-card__cta { flex-direction: column; align-items: stretch; }
    .biz-card__cta .btn { width: 100%; }

    .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }

    .trust-band__row { gap: 10px 24px; }
    .trust-band__item { font-size: 13px; }
}

@media (max-width: 560px) {
    .container { padding: 0 18px; }
    .promo-bar__inner { font-size: 12px; padding: 9px 16px; }
    .nav__inner { height: 64px; }
    .brand { font-size: 19px; }
    .nav__actions .btn--sm { display: none; }

    .cat-grid { grid-template-columns: 1fr; gap: 14px; }
    .cat { padding: 22px; }

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

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

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

    .cta__inner { padding: 40px 20px; }
    .cta__buttons .btn { width: 100%; }

    .trust-strip { padding: 14px 16px; }
    .trust-strip__item strong { font-size: 16px; }

    .fab-whatsapp { bottom: 16px; right: 16px; width: 54px; height: 54px; font-size: 26px; }
    .fab-top { bottom: 82px; right: 16px; }

    .business-apply-modal {
        align-items: flex-end;
        padding: 10px;
    }

    .business-apply-dialog {
        max-height: calc(100dvh - 20px);
        padding: 24px 18px calc(18px + env(safe-area-inset-bottom));
        border-radius: 24px 24px 18px 18px;
    }

    .business-apply-dialog h2 {
        font-size: 25px;
    }
}

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