/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.65;
    color: #1f2933;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.hero {
    background: linear-gradient(180deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 1rem 0;
}


.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.3rem;
}

.hero-subheading {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

.tagline {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    color: #cbd5f5;
}

.intro {
    max-width: 1200px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #e5e7eb;
}

/* HERO GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
}

/* SECTIONS */
.section {
    padding: 1rem 0;
}

.section.light {
    background: #f8fafc;
}

.section.dark {
    background: #0f172a;
    color: #e5e7eb;
}

.section h2 {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section p {
    max-width: 1200px;
    margin-bottom: 1.25rem;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.6rem;
}

.service-card {
    background: #020617;
    padding: 1.6rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: #93c5fd;
}

/* PROCESS */
.process {
    margin-top: 2rem;
    counter-reset: step;
}

.process li {
    list-style: none;
    margin-bottom: 1.25rem;
    padding-left: 3rem;
    position: relative;
}

.process li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* AUDIENCE */
.audience {
    list-style: none;
    margin-top: 1.5rem;
}

.audience li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.audience li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* CTA */
.cta {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cta.secondary {
    background: transparent;
    border: 2px solid #2563eb;
    color: #2563eb;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact p {
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
footer {
    background: #020617;
    color: #9ca3af;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

/* MOBILE */
@media (min-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .intro {
        margin-left: auto;
        margin-right: auto;
    }
}
