/* =========================================
   HERO OVERRIDES & ENHANCEMENTS
   ========================================= */

.hero {
    padding: 7rem 0 5rem;
    background: #ffffff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(60, 184, 230, 0.08);
    color: #3CB8E6;
    border: 1px solid rgba(60, 184, 230, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #3CB8E6;
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Title */
.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.08;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: #3CB8E6;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(60, 184, 230, 0.12);
    z-index: -1;
    border-radius: 5px;
}

/* Hero Description */
.hero-description {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 500px;
    margin-bottom: 1.75rem;
    line-height: 1.75;
}

/* Hero Search (override main.css) */
.hero-search {
    margin: 0 0 1.5rem 0;
    max-width: 520px;
}

.search-container {
    display: flex;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    margin-bottom: 0;
    gap: 0;
}

.search-container:focus-within {
    box-shadow: 0 0 0 3px rgba(60, 184, 230, 0.15), 0 0 0 1px #3CB8E6;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: static;
}

.search-icon {
    position: static;
    color: #94a3b8;
    font-size: 0.95rem;
    margin-right: 10px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #0f172a;
    background: transparent;
    padding: 15px 0;
    font-family: inherit;
    border-radius: 0;
    width: 100%;
}

.hero-search-input::placeholder {
    color: #94a3b8;
}

.hero-search-input:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.hero-search-btn {
    background: #3CB8E6;
    color: white;
    border: none;
    padding: 0 26px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
    border-radius: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.hero-search-btn:hover {
    background: #29a0d1;
    transform: none;
    box-shadow: none;
}

/* Hero Action Buttons */
.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-brand {
    background: #3CB8E6;
    color: #ffffff;
    border: 1px solid #3CB8E6;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-brand:hover {
    background: #29a0d1;
    border-color: #29a0d1;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(60, 184, 230, 0.3);
}

.btn-ghost-outline {
    background: transparent;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1e293b;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 0.25rem;
}

.proof-item {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.proof-item strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 3px;
}

.proof-item span {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 28px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* Hero Right Column: Map */
.hero-image {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 0.5rem;
}

.map-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.05);
}

/* Map size - mobile default */
#map {
    height: 360px !important;
    width: 100% !important;
    display: block;
}

.map-overlay-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 1000;
    pointer-events: none;
    font-size: 0.74rem;
    color: #334155;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.06);
}

.map-overlay-hint i {
    color: #3CB8E6;
    font-size: 0.85rem;
}

/* Business Info Card */
.business-info {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.business-info.empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    text-align: center;
}

.business-info.empty .empty-icon {
    font-size: 1.6rem;
    color: #cbd5e1;
    margin-bottom: 0.6rem;
}

.business-info.empty .empty-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.2rem;
}

.business-info.empty .empty-subtitle {
    font-size: 0.78rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.business-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.business-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0;
    line-height: 1.5;
}

.business-info .category {
    color: #3CB8E6;
    font-weight: 600;
}

.business-info .rating i {
    color: #f59e0b;
}

.business-info button {
    background: #3CB8E6;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 0.875rem;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
}

.business-info button:hover {
    background: #29a0d1;
}

/* =========================================
   SECTION HELPERS
   ========================================= */

.section-eyebrow {
    display: inline-block;
    color: #3CB8E6;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-subtitle-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    max-width: 520px;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-title-sm {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.section-more-link {
    color: #3CB8E6;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
    white-space: nowrap;
}

.section-more-link:hover {
    gap: 10px;
}

.section-center-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-center-header .section-subtitle-text {
    max-width: 480px;
    margin: 0 auto;
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */

.categories-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.25s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(60, 184, 230, 0.1);
    border-color: rgba(60, 184, 230, 0.3);
    color: inherit;
}

.category-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(60, 184, 230, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    color: #3CB8E6;
    font-size: 1.2rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.category-card:hover .category-icon-wrapper {
    background: #3CB8E6;
    color: #ffffff;
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #1e293b;
}

.category-card p {
    font-size: 0.76rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.3;
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.how-it-works {
    padding: 6rem 0;
    background: #ffffff;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.how-it-works-text .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.how-it-works-text .section-subtitle-text {
    margin-bottom: 0;
}

.steps-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.step-item {
    display: flex;
    gap: 1.25rem;
    position: relative;
    padding-bottom: 2rem;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(60,184,230,0.2), #f1f5f9);
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #3CB8E6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(60, 184, 230, 0.3);
}

.step-details {
    padding-top: 6px;
}

.step-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.35rem;
}

.step-details p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

/* Phone Mockup ..*/
.how-it-works-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    background: #1a2535;
    border-radius: 52px;
    padding: 0 12px 0;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.07),
        inset 0 0 0 1px rgba(255,255,255,0.03);
    position: relative;
}

/* Hangerő gombok (bal oldal) */
.phone-mockup::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 108px;
    width: 4px;
    height: 32px;
    background: #111e2b;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 46px 0 #111e2b;
}

/* Bekapcsológomb (jobb oldal) */
.phone-mockup::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 124px;
    width: 4px;
    height: 58px;
    background: #111e2b;
    border-radius: 0 4px 4px 0;
}

/* Keret teteje: hangszóró + kamera */
.phone-top-area {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.phone-ear-speaker {
    width: 60px;
    height: 5px;
    background: #2a3d52;
    border-radius: 5px;
}

.phone-cam {
    width: 10px;
    height: 10px;
    background: #2a3d52;
    border-radius: 50%;
    flex-shrink: 0;
}

.phone-screen {
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Home indicator sáv */
.phone-bottom-area {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-bottom-area::after {
    content: '';
    display: block;
    width: 96px;
    height: 4px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 4px;
}

.app-header {
    height: 52px;
    background: #3CB8E6;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.app-header-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

.app-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-date-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.app-calendar-item {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 13px 16px;
    border-radius: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-calendar-item.active {
    border-color: #3CB8E6;
    background: rgba(60, 184, 230, 0.06);
}

.app-calendar-item.booked {
    opacity: 0.5;
}

.app-time {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.925rem;
}

.app-info {
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 700;
}

.app-info.taken {
    color: #94a3b8;
}

.app-btn {
    background: #3CB8E6;
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(60, 184, 230, 0.3);
    margin-top: 4px;
}

/* =========================================
   BUSINESS SOLUTIONS
   ========================================= */

.business-solutions {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.business-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.business-text .section-title {
    text-align: left;
}

.business-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.business-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.business-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-small {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #3CB8E6;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.feature-text h4 {
    font-size: 0.925rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

/* Business Card Mockup */
.business-card-mockup {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0,0,0,0.04);
    transform: perspective(1000px) rotateY(-4deg) rotateX(3deg);
    transition: transform 0.5s ease;
}

.business-card-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot.red   { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green  { background: #27c93f; }

.mockup-stat {
    margin-bottom: 1.5rem;
}

.mockup-stat span {
    color: #94a3b8;
    font-size: 0.78rem;
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-stat h3 {
    font-size: 1.7rem;
    color: #0f172a;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.mockup-stat h3 i {
    color: #22c55e;
    font-size: 1.1rem;
}

.mockup-chart {
    height: 110px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.chart-bar {
    flex: 1;
    background: #f1f5f9;
    border-radius: 5px 5px 0 0;
}

.chart-bar.highlight {
    background: #3CB8E6;
}

.mockup-integration {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.integration-badge {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #1e293b;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.integration-badge i {
    color: #22c55e;
}

/* =========================================
   PARTNER PROGRAM (NEW)
   ========================================= */

.partner-program {
    padding: 6rem 0;
    background: #ffffff;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.partner-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.partner-image {
    display: flex;
    justify-content: center;
}

.partner-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    max-width: 400px;
    width: 100%;
}

.partner-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.partner-card p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .partner-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .partner-text .section-title {
        text-align: center;
    }
}

/* =========================================
   FEATURES SECTION
   ========================================= */

.features {
    padding: 6rem 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 1.75rem;
    transition: all 0.25s ease;
    box-shadow: none;
}

.feature-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
    border-color: rgba(60, 184, 230, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(60, 184, 230, 0.1);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #3CB8E6;
    margin-bottom: 1.1rem;
    transition: all 0.25s ease;
}

.feature-card:hover .feature-icon {
    background: #3CB8E6;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 0.975rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.65;
}

/* =========================================
   TESTIMONIALS
   ========================================= */

.testimonials {
    padding: 6rem 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #3CB8E6, #29a0d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-dark {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(60, 184, 230, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-dark .cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    display: inline-block;
    background: rgba(60, 184, 230, 0.12);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(60, 184, 230, 0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
}

.cta-dark h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.cta-dark p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #ffffff;
    padding: 13px 28px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-cta-white:hover {
    background: #f1f5f9;
    border-color: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-cta-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 13px 28px;
    border-radius: 11px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* =========================================
   SUGGESTION TAGS (SEARCH)
   ========================================= */

.category-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.suggestion-tag {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.suggestion-tag:hover {
    background: #eef9fd;
    color: #3CB8E6;
    border-color: #3CB8E6;
}

.suggestion-tag.hidden {
    display: none;
}

.show-more-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    background: #3CB8E6;
    border-color: #3CB8E6;
    color: #ffffff;
}

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

@media (max-width: 1100px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-description {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-image {
        padding-top: 0;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-it-works-text .section-title {
        text-align: center;
    }

    .how-it-works-text .section-subtitle-text {
        text-align: center;
        max-width: 480px;
        margin: 0 auto;
    }

    .how-it-works-text .section-eyebrow {
        display: block;
        text-align: center;
    }

    .steps-list {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .business-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .business-text .section-title {
        text-align: center;
    }

    .business-text .section-eyebrow {
        display: block;
        text-align: center;
    }

    .business-description {
        text-align: center;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .cta-dark h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 5rem 0 3.5rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-social-proof {
        gap: 14px;
    }

    .proof-item strong {
        font-size: 1rem;
    }

    .search-container {
        flex-direction: column;
        border-radius: 14px;
    }

    .search-input-wrapper {
        padding: 4px 16px;
    }

    .hero-search-btn {
        padding: 14px;
        border-radius: 0 0 12px 12px;
        justify-content: center;
    }

    #map {
        height: 300px !important;
    }

    .categories-section {
        padding: 3.5rem 0;
    }

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

    .how-it-works {
        padding: 4rem 0;
    }

    .phone-mockup {
        width: 280px;
    }

    .business-solutions {
        padding: 4rem 0;
    }

    .features {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .cta-dark {
        padding: 4rem 0;
    }

    .cta-dark h2 {
        font-size: 1.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-brand,
    .btn-ghost-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }
}