/* ══════════════════════════════════════════════
   Hyper Local Marketing — Main Stylesheet
   Color Scheme: Black, White, Green
   ══════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    --hlm-primary: #22c55e;
    --hlm-primary-dark: #16a34a;
    --hlm-primary-light: #4ade80;
    --hlm-primary-glow: rgba(34, 197, 94, 0.15);
    --hlm-primary-glow-strong: rgba(34, 197, 94, 0.3);
    --hlm-dark: #0a0a0a;
    --hlm-dark-card: #111111;
    --hlm-dark-border: #1e1e1e;
    --hlm-dark-lighter: #171717;
    --hlm-white: #ffffff;
    --hlm-gray-100: #f5f5f5;
    --hlm-gray-200: #e5e5e5;
    --hlm-gray-300: #d4d4d4;
    --hlm-gray-400: #a3a3a3;
    --hlm-gray-500: #737373;
    --hlm-font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --hlm-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --hlm-radius: 12px;
    --hlm-radius-lg: 20px;
    --hlm-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--hlm-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--hlm-gray-300);
    background-color: var(--hlm-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--hlm-primary);
    text-decoration: none;
    transition: color var(--hlm-transition);
}

a:hover {
    color: var(--hlm-primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hlm-font-primary);
    color: var(--hlm-white);
    line-height: 1.2;
    font-weight: 800;
}

/* ── Container ── */
.hlm-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Labels ── */
.hlm-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hlm-primary);
    background: var(--hlm-primary-glow);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.hlm-section-desc {
    font-size: 1.1rem;
    color: var(--hlm-gray-400);
    max-width: 700px;
    margin: 0 auto 48px;
}

section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

section {
    text-align: center;
}

/* ── Buttons ── */
.hlm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hlm-font-primary);
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--hlm-transition);
    text-decoration: none;
    white-space: nowrap;
}

.hlm-btn--primary {
    background: var(--hlm-primary);
    color: var(--hlm-dark);
    padding: 14px 32px;
    font-size: 1rem;
    box-shadow: 0 0 20px var(--hlm-primary-glow-strong);
}

.hlm-btn--primary:hover {
    background: var(--hlm-primary-light);
    color: var(--hlm-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--hlm-primary-glow-strong), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hlm-btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.hlm-btn--lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.hlm-btn--xl {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.hlm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--hlm-transition);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.hlm-header--scrolled {
    padding: 10px 0;
    border-bottom-color: var(--hlm-dark-border);
}

.hlm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hlm-logo-text {
    font-family: var(--hlm-font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--hlm-white);
    text-decoration: none;
}

.hlm-logo-text:hover {
    color: var(--hlm-primary);
}

.hlm-header .custom-logo {
    height: 40px;
    width: auto;
}

.hlm-nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.hlm-nav-list a {
    color: var(--hlm-gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--hlm-transition);
}

.hlm-nav-list a:hover {
    color: var(--hlm-white);
}

.hlm-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger */
.hlm-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hlm-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hlm-white);
    border-radius: 2px;
    transition: all var(--hlm-transition);
}

.hlm-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hlm-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hlm-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hlm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
                var(--hlm-dark);
}

.hlm-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hlm-hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hlm-hero__tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--hlm-primary);
    margin-bottom: 20px;
}

.hlm-hero__headline {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--hlm-white) 0%, var(--hlm-gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hlm-hero__sub {
    font-size: 1.25rem;
    color: var(--hlm-gray-400);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hlm-hero__actions {
    margin-bottom: 32px;
}

.hlm-hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--hlm-gray-500);
}

.hlm-hero__proof-stars {
    display: flex;
    gap: 3px;
    color: #facc15;
    font-size: 0.85rem;
}

/* ══════════════════════════════════════════════
   PROBLEM SECTION
   ══════════════════════════════════════════════ */
.hlm-problem {
    padding: 120px 0;
    background: var(--hlm-dark-lighter);
}

.hlm-problem__intro {
    max-width: 750px;
    margin: 0 auto 56px;
}

.hlm-problem__intro h2 {
    margin-bottom: 24px;
}

.hlm-problem__intro p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.hlm-problem__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.hlm-problem__card {
    background: var(--hlm-dark-card);
    border: 1px solid var(--hlm-dark-border);
    border-radius: var(--hlm-radius);
    padding: 32px 24px;
    transition: all var(--hlm-transition);
}

.hlm-problem__card:hover {
    border-color: var(--hlm-primary);
    transform: translateY(-4px);
    box-shadow: 0 0 30px var(--hlm-primary-glow);
}

.hlm-problem__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hlm-primary-glow);
    color: var(--hlm-primary);
    border-radius: 12px;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.hlm-problem__card p {
    font-size: 0.95rem;
    color: var(--hlm-gray-300);
}

.hlm-problem__solution {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: left;
}

.hlm-problem__solution-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.hlm-problem__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--hlm-dark-border);
}

.hlm-problem__author-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--hlm-primary);
}

.hlm-problem__author-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hlm-primary-glow);
    color: var(--hlm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hlm-problem__author div {
    display: flex;
    flex-direction: column;
}

.hlm-problem__author strong {
    color: var(--hlm-white);
    font-size: 0.95rem;
}

.hlm-problem__author span {
    color: var(--hlm-gray-500);
    font-size: 0.85rem;
}

.hlm-problem__cta {
    margin-top: 40px;
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.hlm-services {
    padding: 120px 0;
    background: var(--hlm-dark);
}

.hlm-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hlm-services__card {
    background: var(--hlm-dark-card);
    border: 1px solid var(--hlm-dark-border);
    border-radius: var(--hlm-radius-lg);
    padding: 40px 28px;
    transition: all var(--hlm-transition);
    text-align: center;
}

.hlm-services__card:hover {
    border-color: var(--hlm-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px var(--hlm-primary-glow);
}

.hlm-services__card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hlm-primary-glow);
    color: var(--hlm-primary);
    border-radius: 16px;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.hlm-services__card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.hlm-services__card p {
    font-size: 0.95rem;
    color: var(--hlm-gray-400);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   PROCESS / TIMELINE
   ══════════════════════════════════════════════ */
.hlm-process {
    padding: 120px 0;
    background: var(--hlm-dark-lighter);
}

.hlm-process__timeline {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.hlm-process__timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--hlm-primary), var(--hlm-primary-glow), transparent);
}

.hlm-process__step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.hlm-process__step:last-child {
    margin-bottom: 0;
}

.hlm-process__step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hlm-dark);
    border: 2px solid var(--hlm-primary);
    border-radius: 50%;
    font-family: var(--hlm-font-primary);
    font-weight: 800;
    font-size: 1rem;
    color: var(--hlm-primary);
    position: relative;
    z-index: 2;
}

.hlm-process__step-content {
    padding-top: 8px;
}

.hlm-process__step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.hlm-process__step-content p {
    font-size: 1rem;
    color: var(--hlm-gray-400);
    margin-bottom: 8px;
}

/* ══════════════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════════════ */
.hlm-testimonial {
    padding: 120px 0;
    background: var(--hlm-dark);
}

.hlm-testimonial__card {
    max-width: 750px;
    margin: 0 auto;
    background: var(--hlm-dark-card);
    border: 1px solid var(--hlm-dark-border);
    border-radius: var(--hlm-radius-lg);
    padding: 56px 48px;
    position: relative;
}

.hlm-testimonial__card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--hlm-primary), transparent);
}

.hlm-testimonial__stars {
    color: #facc15;
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 24px;
}

.hlm-testimonial__quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--hlm-gray-200);
    line-height: 1.8;
    margin-bottom: 24px;
}

.hlm-testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hlm-testimonial__dash {
    color: var(--hlm-primary);
}

.hlm-testimonial__author strong {
    color: var(--hlm-white);
    font-size: 1rem;
}

.hlm-testimonial__meta {
    color: var(--hlm-gray-500);
    font-size: 0.9rem;
}

/* ══════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════ */
.hlm-why {
    padding: 120px 0;
    background: var(--hlm-dark-lighter);
}

.hlm-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hlm-why__card {
    background: var(--hlm-dark-card);
    border: 1px solid var(--hlm-dark-border);
    border-radius: var(--hlm-radius);
    padding: 36px 28px;
    text-align: left;
    transition: all var(--hlm-transition);
}

.hlm-why__card:hover {
    border-color: var(--hlm-primary);
    box-shadow: 0 0 30px var(--hlm-primary-glow);
}

.hlm-why__card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hlm-primary-glow);
    color: var(--hlm-primary);
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.hlm-why__card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.hlm-why__card p {
    font-size: 0.95rem;
    color: var(--hlm-gray-400);
}

/* ══════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════ */
.hlm-final-cta {
    padding: 120px 0;
    background: var(--hlm-dark);
    position: relative;
}

.hlm-final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at 50% 100%, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hlm-final-cta__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
    position: relative;
    z-index: 2;
}

.hlm-final-cta__step {
    text-align: center;
}

.hlm-final-cta__step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hlm-primary-glow);
    color: var(--hlm-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.hlm-final-cta__step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hlm-final-cta__step p {
    font-size: 0.95rem;
    color: var(--hlm-gray-400);
    max-width: 300px;
    margin: 0 auto;
}

.hlm-final-cta__button {
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.hlm-footer {
    padding: 64px 0 24px;
    background: var(--hlm-dark-lighter);
    border-top: 1px solid var(--hlm-dark-border);
}

.hlm-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.hlm-footer__brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--hlm-gray-500);
    max-width: 300px;
}

.hlm-footer__links h4,
.hlm-footer__cta h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--hlm-white);
}

.hlm-footer__links ul {
    list-style: none;
    padding: 0;
}

.hlm-footer__links li {
    margin-bottom: 8px;
}

.hlm-footer__links a {
    color: var(--hlm-gray-500);
    font-size: 0.9rem;
}

.hlm-footer__links a:hover {
    color: var(--hlm-primary);
}

.hlm-footer__cta p {
    font-size: 0.9rem;
    color: var(--hlm-gray-500);
    margin-bottom: 16px;
}

.hlm-footer__bottom {
    border-top: 1px solid var(--hlm-dark-border);
    padding-top: 24px;
    text-align: center;
}

.hlm-footer__bottom p {
    font-size: 0.85rem;
    color: var(--hlm-gray-500);
}

/* ══════════════════════════════════════════════
   BLOG / POSTS
   ══════════════════════════════════════════════ */
.hlm-post {
    padding: 160px 0 80px;
}

.hlm-post__container {
    max-width: 800px;
}

.hlm-post h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.hlm-post__content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.hlm-post__content p {
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
.hlm-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hlm-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hlm-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hlm-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hlm-header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .hlm-header__nav.active {
        display: flex;
    }

    .hlm-nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .hlm-nav-list a {
        font-size: 1.3rem;
        color: var(--hlm-white);
    }

    .hlm-hamburger {
        display: flex;
        z-index: 1001;
    }

    .hlm-header__actions .hlm-btn {
        display: none;
    }

    .hlm-hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hlm-hero__headline {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hlm-hero__sub {
        font-size: 1.1rem;
    }

    .hlm-problem,
    .hlm-services,
    .hlm-process,
    .hlm-testimonial,
    .hlm-why,
    .hlm-final-cta {
        padding: 80px 0;
    }

    .hlm-problem__cards {
        grid-template-columns: 1fr;
    }

    .hlm-services__grid {
        grid-template-columns: 1fr;
    }

    .hlm-why__grid {
        grid-template-columns: 1fr;
    }

    .hlm-final-cta__steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hlm-testimonial__card {
        padding: 40px 24px;
    }

    .hlm-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hlm-process__timeline::before {
        left: 20px;
    }

    .hlm-process__step-number {
        width: 42px;
        height: 42px;
        font-size: 0.85rem;
    }

    .hlm-process__step {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hlm-container {
        padding: 0 16px;
    }

    .hlm-btn--lg,
    .hlm-btn--xl {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}
