/* home.css — styles specific to index.php */

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 98dvh;
    background: var(--teal-xl);
    display: flex; align-items: center;
    overflow: hidden;
    border-radius: 0 0 180px 180px;
}
/* Dark gradient overlay */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(13,55,64,.6) 0%, rgba(13,55,64,.95) 100%);
    pointer-events: none;
}

/* Dot mesh */
.hero-mesh {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Orbs */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-1 { width: 700px; height: 700px; background: rgba(46,124,133,.38); top: -250px; right: -200px; }
.hero-orb-2 { width: 450px; height: 450px; background: rgba(217,112,61,.20); bottom: -120px; left: -120px; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(46,124,133,.22); top: 60%; left: 45%; }

/* Floating notification cards */
.hero-float-card {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 12px; padding: 10px 16px;
    color: rgba(255,255,255,.9); font-size: 12px; font-weight: 600;
    white-space: nowrap; pointer-events: none;
    animation: float-card 6s ease-in-out infinite;
}
.hero-fc-1 { top: 28%; left: 4%; animation-delay: 0s; }
.hero-fc-2 { top: 40%; right: 4%; animation-delay: -3s; }
[dir="rtl"] .hero-fc-1 { left: auto; right: 4%; }
[dir="rtl"] .hero-fc-2 { right: auto; left: 4%; }
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.hfc-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
    50%       { box-shadow: 0 0 0 6px rgba(34,197,94,.15); }
}

/* Hero content */
.hero-wrap { width: 100%; position: relative; }
.hero-content {
    position: relative; z-index: 2;
    width: 100%; padding: 148px 0 96px;
    text-align: center;
}

/* Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px); color: rgba(255,255,255,.92);
    font-size: 11px; font-weight: 700; letter-spacing: .8px;
    padding: 8px 20px; border-radius: 24px; text-transform: uppercase;
    margin-bottom: 28px;
}
.badge-dot {
    width: 7px; height: 7px; background: var(--orange); border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(217,112,61,.25);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

/* Heading */
.hero h1 {
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 800; color: #fff;
    line-height: 1.1; letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-em {
    font-style: normal;
    background: linear-gradient(135deg, var(--orange) 0%, #F9B27A 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,.68);
    max-width: 580px; margin: 0 auto 44px; line-height: 1.75;
}

/* Search bar */
.search-bar {
    background: #fff; border-radius: var(--r-lg);
    box-shadow: 0 24px 80px rgba(0,0,0,.28);
    padding: 7px; display: flex; align-items: center;
    max-width: 840px; margin: 0 auto 28px;
}
.sf { flex: 1; display: flex; align-items: center; gap: 10px; padding: 6px 16px; }
.sf svg { color: var(--muted); width: 17px; height: 17px; flex-shrink: 0; }
.sf input, .sf select {
    border: none; outline: none; background: transparent;
    font-size: 14px; font-family: inherit; color: var(--text); width: 100%;
}
.sf input::placeholder { color: var(--muted); }
.sf select { color: var(--muted); cursor: pointer; appearance: none; }
.sf-sep { width: 1px; height: 34px; background: var(--border); flex-shrink: 0; }
.search-go {
    background: var(--orange); color: #fff;
    border: none; border-radius: var(--r);
    padding: 14px 28px; font-size: 15px; font-weight: 700; font-family: inherit;
    cursor: pointer; white-space: nowrap;
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    transition: background var(--t), transform var(--t);
}
.search-go:hover { background: var(--orange-d); transform: translateY(-1px); }

/* CTAs */
.hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

/* Stats */
.hero-stats {
    display: inline-flex; align-items: center; gap: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px; padding: 18px 32px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.14); }
.stat-val { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; display: block; line-height: 1.1; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 3px; display: block; text-transform: uppercase; letter-spacing: .5px; }

/* App download buttons (hero) */
.hero-app-btns {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.hero-app-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.28);
    border-radius: 14px; padding: 12px 22px;
    color: #fff; text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    min-width: 160px;
}
.hero-app-btn:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
    transform: translateY(-2px);
}
.hab-text { display: flex; flex-direction: column; line-height: 1.25; }
.hab-pre   { font-size: 10px; opacity: .75; letter-spacing: .2px; }
.hab-label { font-size: 17px; font-weight: 700; letter-spacing: -.3px; }

@media (max-width: 520px) {
    .hero-app-btns  { flex-direction: column; align-items: center; }
    .hero-app-btn   { width: 100%; max-width: 240px; justify-content: center; }
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; align-items: center; justify-content: center;
    opacity: .5; animation: scroll-hint 2.5s ease-in-out infinite;
    background: none; border: none; cursor: pointer; padding: 8px;
    transition: opacity .2s;
}
.hero-scroll-hint:hover { opacity: .8; }
@keyframes scroll-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: .4; }
    50%       { transform: translateX(-50%) translateY(6px); opacity: .7; }
}
.scroll-mouse {
    width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5);
    border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.scroll-wheel {
    width: 3px; height: 8px; background: rgba(255,255,255,.7);
    border-radius: 2px; animation: scroll-wheel 2.5s ease-in-out infinite;
}
@keyframes scroll-wheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    80%       { transform: translateY(12px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   CATEGORY CHIPS
══════════════════════════════════════════════════════ */
.cat-section {
    background: var(--bg);
    padding: 18px 0;
    border-radius: 0 0 48px 48px;
    overflow: hidden;
}
.cat-scroll-wrap {
    display: flex; align-items: center; gap: 8px; position: relative;
}
.cat-arrow {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg); border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--muted);
    transition: all var(--t) var(--ease); z-index: 2;
}
.cat-arrow:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.cat-arrow:disabled { opacity: .35; pointer-events: none; }
/* Flip arrows for RTL */
[dir="rtl"] .cat-arrow-prev svg { transform: scaleX(-1); }
[dir="rtl"] .cat-arrow-next svg { transform: scaleX(-1); }

.cat-chips {
    display: flex; gap: 10px; flex: 1;
    overflow-x: auto; padding: 4px 0 6px;
    scrollbar-width: none; scroll-behavior: smooth;
    cursor: grab;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    padding: 10px 18px; border-radius: 50px;
    border: 1.5px solid var(--border); background: var(--bg);
    font-size: 13px; font-weight: 600; color: var(--text);
    cursor: pointer; transition: all var(--t) var(--ease);
}
.cat-chip svg { width: 16px; height: 16px; color: var(--teal); }
.cat-chip:hover, .cat-chip.active {
    border-color: var(--teal); background: rgba(46,124,133,.07); color: var(--teal);
}

/* ══════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════ */
.services-section { background: var(--bg2); border-radius: 0 0 48px 48px; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.service-card {
    background: var(--bg); border-radius: var(--r-lg);
    border: 1.5px solid var(--border); overflow: hidden;
    transition: border-color var(--t), box-shadow var(--t), transform .25s var(--ease);
    cursor: pointer; display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-4px); }

.sc-thumb { height: 160px; position: relative; overflow: hidden; }
.sc-thumb-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.sc-thumb-bg svg { width: 48px; height: 48px; color: rgba(255,255,255,.6); }
.sc-badge {
    position: absolute; top: 10px;
    font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 6px;
    background: rgba(0,0,0,.45); color: #fff;
    backdrop-filter: blur(4px);
}
[dir="ltr"] .sc-badge { right: 10px; }
[dir="rtl"] .sc-badge { left: 10px; }

.sc-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.sc-provider { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sc-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.sc-provider-name { font-size: 12px; font-weight: 600; color: var(--muted); }
.sc-level {
    margin-inline-start: auto; font-size: 10px; font-weight: 700;
    color: var(--teal); background: rgba(46,124,133,.1);
    padding: 2px 8px; border-radius: 4px;
}
.sc-title {
    font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.45;
    margin-bottom: 10px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sc-rating { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.sc-stars { color: #F59E0B; font-size: 11px; }
.sc-count { color: var(--muted); font-weight: 400; }
.sc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.sc-price { font-size: 13px; color: var(--muted); line-height: 1.3; }
.sc-price strong { font-size: 16px; font-weight: 800; color: var(--text); display: block; }
.sc-hire {
    padding: 8px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 700; font-family: inherit;
    background: var(--teal); color: #fff;
    border: none; cursor: pointer; transition: background var(--t);
}
.sc-hire:hover { background: var(--teal-d); }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how-section { background: var(--bg); position: relative; overflow: hidden; border-radius: 0 0 48px 48px; }
.how-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(46,124,133,.05) 0%, transparent 70%);
    pointer-events: none;
}

.how-flow {
    position: relative;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 0 20px;
    padding-top: 32px; align-items: stretch;
}

/* Animated connector line */
.how-flow-track {
    position: absolute; top: 72px; left: 16%; right: 16%;
    height: 2px; border-radius: 99px; overflow: hidden;
    background: rgba(46,124,133,.18);
}
.how-flow-track::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--teal) 40%, var(--orange) 60%, transparent 100%);
    background-size: 300% 100%;
    animation: how-shimmer 2.4s ease-in-out infinite;
}
@keyframes how-shimmer {
    0%   { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
[dir="rtl"] .how-flow-track::after { animation-direction: reverse; }

.how-flow-step {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    position: relative; z-index: 1; height: 100%;
}

/* Node */
.how-node {
    width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid white; position: relative;
    transition: transform .25s var(--ease);
}
.how-node:hover { transform: scale(1.06); }
.how-node svg { width: 26px; height: 26px; color: #fff; }
.how-node-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-d));
    box-shadow: 0 0 0 6px rgba(46,124,133,.12), 0 8px 22px rgba(46,124,133,.28);
}
.how-node-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-d));
    box-shadow: 0 0 0 6px rgba(217,112,61,.12), 0 8px 22px rgba(217,112,61,.28);
}
.how-node-dark {
    background: linear-gradient(135deg, var(--teal-d), var(--teal-xl));
    box-shadow: 0 0 0 6px rgba(30,90,97,.12), 0 8px 22px rgba(30,90,97,.28);
}
.how-node-num {
    position: absolute; top: -5px; inset-inline-end: -5px;
    width: 22px; height: 22px; border-radius: 50%;
    background: white; font-size: 9px; font-weight: 800; color: var(--text);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.14); border: 1.5px solid var(--border);
    letter-spacing: .4px;
}

/* Card */
.how-card {
    background: white; border-radius: var(--r-lg); border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs); padding: 18px; width: 100%; flex: 1;
    transition: box-shadow .2s, transform .2s;
}
.how-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.how-card-teal   { border-top: 3px solid var(--teal); }
.how-card-orange { border-top: 3px solid var(--orange); }
.how-card-dark   { border-top: 3px solid var(--teal-d); }
.how-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.how-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Mini snippet inside each card */
.how-snippet {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; padding: 11px; margin-bottom: 14px; overflow: hidden;
}

/* Search snippet */
.hsn-bar {
    display: flex; align-items: center; gap: 6px;
    background: white; border: 1px solid var(--border);
    border-radius: 7px; padding: 6px 9px;
    font-size: 11px; color: var(--text); margin-bottom: 7px;
}
.hsn-bar svg { color: var(--muted); flex-shrink: 0; }
.hsn-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.hsn-chip {
    font-size: 10px; padding: 2px 8px; border-radius: 99px;
    background: white; border: 1px solid var(--border);
    color: var(--muted); font-weight: 500;
}
.hsn-chip-teal { background: rgba(46,124,133,.1); border-color: rgba(46,124,133,.2); color: var(--teal); }

/* Chat snippet */
.hsn-chat { display: flex; flex-direction: column; gap: 5px; }
.hsn-bubble {
    max-width: 88%; font-size: 11px; line-height: 1.45;
    padding: 5px 9px; border-radius: 10px;
}
.hsn-bubble-in {
    background: white; border: 1px solid var(--border);
    color: var(--text); align-self: flex-start;
    border-start-start-radius: 3px;
}
.hsn-bubble-out {
    background: var(--teal); color: white;
    align-self: flex-end; border-start-end-radius: 3px;
}
[dir="rtl"] .hsn-bubble-in  { align-self: flex-end; border-start-start-radius: 10px; border-start-end-radius: 3px; }
[dir="rtl"] .hsn-bubble-out { align-self: flex-start; border-start-end-radius: 10px; border-start-start-radius: 3px; }

/* Done snippet */
.hsn-done { display: flex; align-items: center; gap: 10px; }
.hsn-done-check {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal-d), var(--teal-xl));
    display: flex; align-items: center; justify-content: center;
}
.hsn-done-check svg { color: white; }
.hsn-done-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.hsn-stars-row { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.hsn-stars-row span { color: var(--muted); font-size: 11px; }

/* ══════════════════════════════════════════════════════
   POST A PROBLEM
══════════════════════════════════════════════════════ */
.problem-section {
    background: linear-gradient(135deg, var(--teal-xl) 0%, var(--teal-d) 100%);
    position: relative; overflow: hidden;
    border-radius: 0 0 48px 48px;
    z-index: 2;
}
.problem-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.prob-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; width: 500px; height: 500px; background: rgba(46,124,133,.4); top: -200px; right: -200px; }
[dir="rtl"] .prob-orb { right: auto; left: -200px; }
.problem-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.prob-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(217,112,61,.25); border: 1px solid rgba(217,112,61,.4); color: #ffb894; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.prob-left h2 { font-size: clamp(26px, 4vw, 46px); font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -.8px; margin-bottom: 18px; }
.prob-left h2 em { font-style: normal; color: var(--orange); }
.prob-left p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 32px; }
.prob-steps { display: flex; flex-direction: column; gap: 12px; }
.prob-step { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 16px 18px; transition: background var(--t); }
.prob-step:hover { background: rgba(255,255,255,.12); }
.prob-n { width: 32px; height: 32px; flex-shrink: 0; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; }
.prob-txt strong { display: block; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.prob-txt span   { font-size: 12px; color: rgba(255,255,255,.58); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   BECOME A PROVIDER
══════════════════════════════════════════════════════ */
.provider-cta-section {
    background: linear-gradient(155deg, var(--teal-xl) 0%, #0a2830 100%);
    position: relative; overflow: hidden;
    border-radius: 0 0 48px 48px;
    z-index: 1;
    margin-top: -48px;
    padding-top: calc(88px + 48px);
}
/* Coming Soon overlay */
.pcta-coming-overlay {
    position: absolute; inset: 0; z-index: 20;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5,18,23,.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.pcta-coming-inner { text-align: center; padding: 32px 24px; }
.pcta-coming-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(78,205,196,.12);
    border: 1.5px solid rgba(78,205,196,.4);
    border-radius: 99px;
    padding: 8px 20px;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
    color: #4ecdc4; text-transform: uppercase;
    margin-bottom: 24px;
    animation: pcta-glow 2.8s ease-in-out infinite;
}
@keyframes pcta-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(78,205,196,0); }
    50%       { box-shadow: 0 0 24px 6px rgba(78,205,196,.25); }
}
.pcta-coming-title {
    font-size: clamp(26px, 4.5vw, 48px);
    font-weight: 800; color: #fff;
    letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.15;
}
[dir="rtl"] .pcta-coming-title { letter-spacing: 0; }
.pcta-coming-sub {
    font-size: 15px; color: rgba(255,255,255,.6);
    line-height: 1.7; max-width: 420px; margin: 0 auto;
}

.provider-cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
}
.provider-cta-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.pcta-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; color: #fff; }
.pcta-text h2 span { color: #4ecdc4; }
.pcta-text p  { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 28px; }
.pcta-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pcta-perk { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.85); }
.pcta-perk svg { width: 18px; height: 18px; color: #4ecdc4; flex-shrink: 0; }
.pcta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* btn-ghost-dark is designed for light backgrounds; override for dark provider-cta section */
.provider-cta-section .btn-ghost-dark {
    color: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.25);
}
.provider-cta-section .btn-ghost-dark:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}

/* Provider profile card mockup */
.pcta-mockup { position: relative; }
.pmc-card {
    background: white; border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
    overflow: hidden;
}
.pmc-header {
    background: linear-gradient(135deg, var(--teal), var(--teal-d));
    padding: 24px 20px 20px; display: flex; gap: 14px; align-items: flex-start;
    position: relative; overflow: hidden;
}
.pmc-header::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 18px 18px;
}
.pmc-avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #1E5A61, #0d3740);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800; color: #fff;
    border: 3px solid rgba(255,255,255,.3); position: relative; z-index: 1;
}
.pmc-meta { position: relative; z-index: 1; }
.pmc-name { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.pmc-specialty { font-size: 12px; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.pmc-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.pmc-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
}
.pmc-badge-verified { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: #fff; }
.pmc-badge-top { background: rgba(245,158,11,.2); border: 1px solid rgba(245,158,11,.35); color: #fbbf24; }

.pmc-body { padding: 18px 20px 20px; }
.pmc-stats-row {
    display: flex; align-items: center; gap: 0;
    background: var(--bg2); border-radius: 10px; margin-bottom: 16px; overflow: hidden;
}
.pmc-stat { flex: 1; text-align: center; padding: 10px 8px; border-inline-end: 1px solid var(--border); }
.pmc-stat:last-child { border-inline-end: none; }
.pmc-stat strong { display: block; font-size: 15px; font-weight: 800; color: var(--text); }
.pmc-stat span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
.pmc-stat .pmc-stars { font-size: 11px; color: #F59E0B; display: block; }

.pmc-price-row { display: flex; align-items: center; justify-content: space-between; }
.pmc-price { font-size: 13px; color: var(--muted); }
.pmc-price strong { font-size: 20px; font-weight: 800; color: var(--text); display: block; font-family: 'Poppins', sans-serif; }
.pmc-hire-btn {
    padding: 10px 20px; border-radius: 10px; border: none; cursor: pointer;
    background: var(--teal); color: #fff;
    font-size: 13px; font-weight: 700; font-family: inherit;
    transition: background .2s;
}
.pmc-hire-btn:hover { background: var(--teal-d); }

/* Earnings card below the profile card */
.pmc-earnings {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px); border-radius: 14px; padding: 14px 18px;
    margin-top: 14px;
}
.pmc-earn-icon { font-size: 22px; }
.pmc-earnings strong { display: block; font-size: 20px; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; }
.pmc-earnings span { font-size: 12px; color: rgba(255,255,255,.6); }

/* Ads stats strip */
.ads-stats-strip {
    display: flex; border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; margin-bottom: 16px; background: var(--bg2);
}
.ass-stat { flex: 1; padding: 12px 14px; text-align: center; border-inline-end: 1px solid var(--border); }
.ass-stat:last-child { border-inline-end: none; }
.ass-stat strong { display: block; font-size: 16px; font-weight: 800; color: var(--text); font-family: 'Poppins', sans-serif; }
.ass-stat span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }

/* Verified badge — Qudurat style (teal checkmark shield) */
.pc-qbadge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(46,124,133,.1); border: 1px solid rgba(46,124,133,.25);
    border-radius: 8px; padding: 4px 9px; margin-bottom: 12px;
    font-size: 11px; font-weight: 700; color: var(--teal);
}
.pc-qbadge .q-verified-icon {
    width: 16px; height: 16px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   SEARCH PANELS (category + city pickers)
══════════════════════════════════════════════════════ */
.sf-picker { cursor: pointer; user-select: none; border-radius: 10px; transition: background var(--t); }
.sf-picker:hover { background: rgba(0,0,0,.03); }
.sf-label { color: var(--muted); font-size: 14px; min-width: 80px; text-align: start; }
.sf-label.selected { color: var(--text); font-weight: 600; }

.search-panel {
    position: fixed; z-index: 1000;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: 0 24px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(0,0,0,.06);
    overflow: hidden;
    animation: panel-in .2s var(--ease);
}
@keyframes panel-in {
    from { opacity: 0; transform: translateY(-8px) scale(.98); }
    to   { opacity: 1; transform: none; }
}
.sp-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px 12px; border-bottom: 1px solid var(--border);
}
.sp-title { font-size: 14px; font-weight: 700; color: var(--text); }
.sp-close {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg2); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: background var(--t);
}
.sp-close:hover { background: var(--border); color: var(--text); }

/* Category grid */
.sp-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 8px; padding: 16px; width: 360px;
}
.sp-cat-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 14px 8px; border-radius: var(--r);
    border: 1.5px solid var(--border); background: var(--bg);
    font-size: 12px; font-weight: 600; color: var(--muted);
    font-family: inherit; cursor: pointer; transition: all var(--t) var(--ease);
    text-align: center;
}
.sp-cat-item:hover, .sp-cat-item.active {
    border-color: var(--teal); background: rgba(46,124,133,.06); color: var(--teal);
}
.sp-cat-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(46,124,133,.08);
    display: flex; align-items: center; justify-content: center;
}
.sp-cat-icon svg { width: 18px; height: 18px; color: var(--teal); }

/* City panel */
.sp-search-wrap {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.sp-search-wrap svg { color: var(--muted); flex-shrink: 0; }
.sp-city-search {
    border: none; outline: none; font-size: 14px; font-family: inherit;
    color: var(--text); width: 100%; background: transparent;
}
.sp-city-search::placeholder { color: var(--muted); }
.sp-city-list {
    max-height: 280px; overflow-y: auto;
    width: 300px; padding: 8px;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.sp-city-item {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 10px 12px; border-radius: var(--r); cursor: pointer;
    border: none; background: none; font-size: 14px; font-family: inherit;
    color: var(--text); text-align: start; transition: background var(--t);
}
.sp-city-item:hover { background: var(--bg2); }
.sp-city-item.active { background: rgba(46,124,133,.07); color: var(--teal); font-weight: 600; }
.sp-city-item svg { color: var(--muted); flex-shrink: 0; }
.sp-city-item.active svg { color: var(--teal); }

/* ══════════════════════════════════════════════════════
   PREMIUM SECTION
══════════════════════════════════════════════════════ */
.premium-section { background: var(--bg); border-radius: 0 0 48px 48px; overflow: hidden; }
.premium-section-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(46,124,133,.08); border: 1px solid rgba(46,124,133,.2);
    color: var(--teal); font-size: 11px; font-weight: 700; letter-spacing: .7px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
    margin-bottom: 16px;
}
.teal-em { color: var(--teal); }

.premium-cards {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}

.premium-card {
    background: var(--bg2); border: 1.5px solid var(--border);
    border-radius: 20px; padding: 32px 28px; position: relative;
    transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.premium-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }

.premium-card-featured {
    background: linear-gradient(155deg, var(--teal-xl), var(--teal-d));
    border-color: transparent; color: #fff;
}
/* Use double-class specificity (0-2-1) to beat .premium-card h3/p (0-1-1) */
.premium-card.premium-card-featured h3 { color: #fff; }
.premium-card.premium-card-featured p  { color: rgba(255,255,255,.68); }
.premium-card-featured:hover { border-color: transparent; }
.premium-card-featured .pc-qbadge {
    background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3);
    color: #fff;
}
/* Make the SVG circle teal so it's visible against the semi-transparent white badge bg */
.premium-card-featured .pc-qbadge .q-verified-icon { color: var(--teal); }

.pc-featured-label {
    position: absolute; top: -12px;
    left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
    padding: 5px 14px; border-radius: 20px;
    display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
[dir="rtl"] .pc-featured-label { left: auto; right: 50%; transform: translateX(50%); }

.pc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.pc-icon svg { width: 24px; height: 24px; }
.pc-icon-search  { background: rgba(46,124,133,.1); }
.pc-icon-search svg { color: var(--teal); }
.pc-icon-home    { background: rgba(255,255,255,.15); }
.pc-icon-home svg { color: #fff; }
.pc-icon-notify  { background: rgba(217,112,61,.1); }
.pc-icon-notify svg { color: var(--orange); }

.pc-qbadge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px; padding: 4px 10px;
    font-size: 10px; font-weight: 700; color: rgba(255,255,255,.85);
    margin-bottom: 14px;
}
.premium-card:not(.premium-card-featured) .pc-qbadge {
    background: rgba(46,124,133,.08); border-color: rgba(46,124,133,.2); color: var(--teal);
}
.pc-qbadge img { height: 14px; width: 14px; border-radius: 3px; }
.premium-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.premium-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   ADS SECTION (PPC)
══════════════════════════════════════════════════════ */
.ads-section { background: var(--bg2); border-radius: 0 0 48px 48px; position: relative; overflow: hidden; }

/* ── Teal police-tape Coming Soon overlay ─────────────────────────────────── */
.ads-coming-overlay {
    position: absolute; inset: 0; z-index: 20;
    background: rgba(5, 18, 23, 0.82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border-radius: 0 0 48px 48px;
    overflow: hidden;
}
.ads-tape-band {
    position: absolute; left: -8%; width: 116%;
    height: 52px;
    background: repeating-linear-gradient(
        -45deg,
        #2E7C85 0px, #2E7C85 26px,
        #051217 26px, #051217 52px
    );
    box-shadow: 0 4px 20px rgba(0,0,0,.6);
    opacity: .95;
}
.ads-tape-top    { top: 44px;    transform: rotate(-2.5deg); }
.ads-tape-bottom { bottom: 44px; transform: rotate(-2.5deg); }
.ads-coming-center {
    text-align: center; z-index: 1; padding: 20px 28px; position: relative;
}
.ads-coming-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(46, 124, 133, .18);
    border: 1.5px solid rgba(78, 205, 196, .5);
    border-radius: 99px; padding: 7px 20px;
    font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
    color: #4ecdc4; text-transform: uppercase;
    margin-bottom: 18px;
}
.ads-coming-title {
    font-size: clamp(20px, 3.5vw, 36px);
    font-weight: 800; color: #fff;
    letter-spacing: -.4px; margin: 0 0 10px; line-height: 1.2;
}
[dir="rtl"] .ads-coming-title { letter-spacing: 0; }
.ads-coming-sub {
    font-size: 14px; color: rgba(255,255,255,.6);
    max-width: 360px; margin: 0 auto; line-height: 1.7;
}
.ads-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 24px; padding: 56px 60px; box-shadow: var(--shadow-sm);
}

.ads-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(217,112,61,.1); border: 1px solid rgba(217,112,61,.25);
    color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .7px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.ads-text h2 {
    font-size: clamp(22px, 3vw, 36px); font-weight: 800;
    letter-spacing: -.4px; margin-bottom: 14px; line-height: 1.2;
}
.ads-em { font-style: normal; color: var(--orange); }
.ads-text > p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.ads-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.ads-benefit  { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.ab-check {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: rgba(46,124,133,.1); border: 1.5px solid rgba(46,124,133,.25);
    display: flex; align-items: center; justify-content: center;
}
.ab-check svg { color: var(--teal); }
.ads-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Simulated ad card */
.ads-visual { display: flex; flex-direction: column; }
.ads-mock-card {
    background: var(--bg); border: 1.5px solid var(--border);
    border-radius: 16px; padding: 20px; box-shadow: var(--shadow-md);
}
.amc-label {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(217,112,61,.1); border: 1px solid rgba(217,112,61,.25);
    color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; padding: 3px 9px; border-radius: 5px; margin-bottom: 14px;
}
.amc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.amc-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: #fff;
}
.amc-name { font-size: 13px; font-weight: 700; color: var(--text); }
.amc-cat  { font-size: 11px; color: var(--muted); }
.amc-stars { margin-inline-start: auto; font-size: 13px; font-weight: 700; color: #F59E0B; }
.amc-title { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 16px; }
.amc-footer { display: flex; align-items: center; justify-content: space-between; }
.amc-price { font-size: 14px; font-weight: 700; color: var(--text); }
.amc-btn {
    padding: 7px 16px; border-radius: 8px; border: none; cursor: pointer;
    font-size: 12px; font-weight: 700; font-family: inherit;
    background: var(--orange); color: #fff; transition: background var(--t);
}
.amc-btn:hover { background: var(--orange-d); }
.ads-roi-badge {
    position: static; margin-top: 14px; align-self: flex-start;
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; padding: 12px 16px;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-sm); font-size: 12px;
}
.arb-icon { font-size: 20px; }
.ads-roi-badge strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.ads-roi-badge span   { color: var(--muted); }

/* ══════════════════════════════════════════════════════
   APP SECTION
══════════════════════════════════════════════════════ */
.app-section {
    background: var(--bg); position: relative; overflow: hidden;
    border-radius: 0 0 48px 48px;
}
.app-section-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(46,124,133,.07) 1px, transparent 1px);
    background-size: 28px 28px;
}
.app-section-orb {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: rgba(46,124,133,.06); filter: blur(120px);
    top: -200px; right: -200px; pointer-events: none;
}
[dir="rtl"] .app-section-orb { right: auto; left: -200px; }

.app-wrap {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

/* badge recolour for white app section */
.app-section .hero-badge {
    background: rgba(46,124,133,.08);
    border-color: rgba(46,124,133,.2);
    color: var(--teal);
}

/* Text side */
.app-text {}
.app-heading {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 800; color: var(--text); line-height: 1.15;
    letter-spacing: -.6px; margin-bottom: 16px;
}
.app-heading-sub { color: var(--teal); }
.app-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }

.app-store-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.app-store-btn {
    display: flex; align-items: center; gap: 12px;
    background: var(--teal); border: 1.5px solid var(--teal);
    border-radius: 12px; padding: 12px 20px; color: #fff;
    transition: all .2s var(--ease); text-decoration: none;
}
.app-store-btn:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-2px); }
.asb-pre   { font-size: 10px; opacity: .8; line-height: 1.2; }
.asb-label { font-size: 16px; font-weight: 700; line-height: 1.2; }

/* Phone mockup */
.app-phone { display: flex; justify-content: center; }
.phone-frame {
    width: 220px; height: 420px;
    background: var(--teal-xl); border: 2px solid rgba(255,255,255,.1);
    border-radius: 36px; box-shadow: 0 40px 80px rgba(13,55,64,.25);
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 12px; gap: 10px; position: relative;
}
.phone-notch { width: 60px; height: 6px; background: rgba(255,255,255,.2); border-radius: 3px; margin-bottom: 4px; }
.phone-screen { width: 100%; background: rgba(255,255,255,.05); border-radius: 12px; padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.phone-bar { height: 8px; background: rgba(255,255,255,.2); border-radius: 4px; }
.phone-hero-card {
    height: 60px; background: linear-gradient(135deg, var(--teal), var(--teal-d));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.phone-hero-card img { height: 32px; border-radius: 6px; filter: brightness(0) invert(1); }
.phone-row { display: flex; gap: 8px; align-items: center; }
.phone-avatar { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.phone-lines { flex: 1; }
.phone-line { height: 6px; background: rgba(255,255,255,.2); border-radius: 3px; margin-bottom: 4px; }
.phone-line-sm { height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; margin-bottom: 0; }
.phone-home-bar { width: 60px; height: 4px; background: rgba(255,255,255,.25); border-radius: 2px; }

/* ══════════════════════════════════════════════════════
   APP PROMO TOAST
══════════════════════════════════════════════════════ */
.app-toast {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 9999;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
    padding: 16px 18px 16px 16px;
    display: flex; align-items: center; gap: 14px;
    max-width: 320px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform .45s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
    pointer-events: none;
    position: fixed;
}
.app-toast-rtl { left: auto; right: 24px; }
.app-toast.show { transform: translateY(0); opacity: 1; pointer-events: all; }

.app-toast-close {
    position: absolute; top: 10px; right: 10px;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--bg2); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: background .15s;
    padding: 0;
}
.app-toast-rtl .app-toast-close { right: auto; left: 10px; }
.app-toast-close:hover { background: var(--border); color: var(--text); }

.app-toast-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    overflow: hidden; background: var(--teal);
    display: flex; align-items: center; justify-content: center;
}
.app-toast-icon img { width: 100%; height: 100%; object-fit: cover; }

.app-toast-body { flex: 1; min-width: 0; }
.app-toast-body strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.app-toast-body p { font-size: 11px; color: var(--muted); margin-bottom: 8px; line-height: 1.4; }
.app-toast-btns { display: flex; gap: 6px; }
.app-toast-btn {
    display: flex; align-items: center; gap: 5px;
    padding: 6px 10px; border-radius: 7px;
    font-size: 11px; font-weight: 700; font-family: inherit;
    cursor: pointer; border: none; transition: all .15s;
    text-decoration: none;
}
.app-toast-ios  { background: #000; color: #fff; }
.app-toast-ios:hover { background: #222; }
.app-toast-play { background: #01875f; color: #fff; }
.app-toast-play:hover { background: #016b4c; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(3,1fr); }
    .premium-cards { grid-template-columns: 1fr; gap: 16px; }
    .premium-card-featured { order: -1; }
    .ads-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 36px; }
    .ads-roi-badge { position: static; margin-top: 20px; align-self: flex-start; }
    .app-wrap { grid-template-columns: 1fr; gap: 48px; }
    .app-phone { display: none; }
}
@media (max-width: 768px) {
    .hero-float-card { display: none; }
    .hero-content { padding: 120px 0 80px; }
    .hero-stats { padding: 14px 20px; }
    .hero-stat { padding: 0 16px; }
    .search-bar { flex-direction: column; padding: 10px; }
    .sf-sep { width: 100%; height: 1px; }
    .sf { padding: 8px 4px; }
    .search-go { justify-content: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }
    .service-grid { grid-template-columns: repeat(2,1fr); }
    .how-flow { grid-template-columns: 1fr; gap: 24px; padding-top: 0; }
    .how-flow-track { display: none; }
    .how-flow-step { flex-direction: row; align-items: flex-start; gap: 16px; text-align: start; }
    .how-node { flex-shrink: 0; }
    .how-card { flex: 1; }
    .problem-inner { grid-template-columns: 1fr; gap: 44px; }
    .provider-cta-inner { grid-template-columns: 1fr; gap: 36px; }
    .pcta-mockup { max-width: 400px; margin: 0 auto; width: 100%; }
    .ads-inner { padding: 32px 24px; }
    .app-toast { max-width: calc(100vw - 32px); }
    .search-panel { position: fixed !important; left: 12px !important; right: 12px !important; width: auto !important; }
    .sp-grid { width: auto; }
    .sp-city-list { width: auto; }

    /* Reduce section corner radius on mobile */
    .hero,
    .cat-section, .services-section, .how-section,
    .problem-section, .provider-cta-section,
    .premium-section, .ads-section, .app-section {
        border-radius: 0 0 28px 28px;
    }
    /* Mobile overlap adjustment for problem → provider-cta */
    .provider-cta-section {
        margin-top: -28px;
        padding-top: calc(68px + 28px);
    }
}
@media (max-width: 580px) {
    .service-grid { grid-template-columns: 1fr; }
    .premium-cards { grid-template-columns: 1fr; }
    .hero-scroll-hint { display: none; }
    .cat-arrow { width: 30px; height: 30px; }
}
