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

:root {
    --primary-dark: #1a0a2e;
    --primary-purple: #2d1b4e;
    --accent-red: #F93150;
    --accent-pink: #F93150;
    --text-light: #ffffff;
    --text-muted: #b8b8d1;
    --gradient-start: #1a0a2e;
    --gradient-end: #2d1b4e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 8rem;
    background: linear-gradient(180deg, #0d0518 0%, #1a0a2e 50%, #251442 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    pointer-events: none;
    opacity: 0.4;
}

.hero-bg svg {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

/* Data point dots */
.data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.data-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(249, 49, 80, 0.8);
}

.data-point.red {
    background: rgba(249, 49, 80, 0.7);
    box-shadow: 0 0 15px rgba(249, 49, 80, 0.4);
}

.data-point.red::before {
    background: rgba(255, 255, 255, 0.8);
}

.data-point-1 { bottom: 52%; left: 18%; }
.data-point-2 { bottom: 38%; left: 52%; }
.data-point-3 { bottom: 28%; right: 12%; }

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(249, 49, 80, 0.15);
    border: 1px solid rgba(249, 49, 80, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 49, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: var(--primary-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, rgba(45, 27, 78, 0.6), rgba(26, 10, 46, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 49, 80, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card .subtitle {
    font-size: 0.9rem;
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-features li::before {
    content: '→';
    color: var(--accent-red);
    font-weight: 600;
}

.service-card .ideal-for {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--accent-pink);
    font-style: italic;
    margin-bottom: 0;
}

/* Focus Areas Section */
.focus-areas {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }
}

.focus-card {
    background: linear-gradient(145deg, rgba(59, 79, 138, 0.2), rgba(45, 27, 78, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    border-top: 3px solid var(--accent-red);
}

.focus-card .tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(249, 49, 80, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.focus-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.focus-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.focus-card ul {
    list-style: none;
}

.focus-card ul li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.focus-card ul li::before {
    content: '✓';
    color: var(--accent-pink);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: var(--primary-dark);
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: linear-gradient(145deg, rgba(45, 27, 78, 0.5), rgba(26, 10, 46, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.about-card.full-width {
    grid-column: auto;
}

.about-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.about-industries span {
    padding: 0.4rem 0.8rem;
    background: rgba(249, 49, 80, 0.1);
    border: 1px solid rgba(249, 49, 80, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 1rem;
}

.client-logos span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header .section-label {
    text-align: left;
}

.contact-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(45, 27, 78, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(26, 10, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 49, 80, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 49, 80, 0.3);
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #3d2066 100%);
    text-align: center;
}

.cta-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.cta-banner h2 span {
    color: var(--accent-red);
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(249, 49, 80, 0.2);
    color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 7rem 5% 4rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================================
   SUBPAGE COMPONENTS
   Added for /services/ and /about/. Built on the same tokens
   and spacing scale as the homepage components above.
   ============================================================ */

/* subpage hero — shorter than the homepage hero, no wave bg */
.page-hero {
    padding: 10rem 5% 5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 1.5rem 0 1.25rem;
    letter-spacing: -0.02em;
}
.page-hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* generic section wrapper matching .services padding */
.section { padding: 6rem 5%; background: var(--primary-dark); }
.section.tinted { background: var(--primary-purple); }
.narrow { max-width: 820px; margin: 0 auto; }
.narrow p { color: var(--text-muted); margin: 0 0 1.25rem; line-height: 1.8; }
.narrow p.lead-answer { color: #e8e4ef; font-size: 1.15rem; }
.narrow p:last-child { margin-bottom: 0; }

/* numbered process phases */
.phase {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.phase:last-child { border-bottom: none; }
.phase .pnum {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.phase h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.phase p { color: var(--text-muted); margin: 0; line-height: 1.75; }

/* background timeline */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
    content: "";
    position: absolute;
    left: 9px; top: 10px; bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-red), rgba(249, 49, 80, 0.1));
}
.timeline li { position: relative; padding-left: 2.75rem; margin-bottom: 2rem; }
.timeline li:last-child { margin-bottom: 0; }
.timeline li::before {
    content: "";
    position: absolute;
    left: 2px; top: 7px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(249, 49, 80, 0.15);
}
.timeline strong { display: block; font-size: 1.1rem; margin-bottom: 0.3rem; }
.timeline span { color: var(--text-muted); line-height: 1.75; }

/* founder block */
.founder { display: flex; gap: 2rem; align-items: flex-start; }
.founder img {
    flex: 0 0 132px;
    width: 132px; height: 132px;
    border-radius: 50%;
    border: 2px solid rgba(249, 49, 80, 0.4);
}
.xlink { color: var(--accent-red); text-decoration: none; font-weight: 600; }
.xlink:hover { text-decoration: underline; }

/* FAQ accordion */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
    background: linear-gradient(145deg, rgba(45, 27, 78, 0.5), rgba(26, 10, 46, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    margin-bottom: 0.9rem;
}
.faq summary {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent-red); font-size: 1.5rem; line-height: 1; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--text-muted); margin: 0.9rem 0 0; line-height: 1.8; }

@media (max-width: 768px) {
    .page-hero { padding: 8rem 5% 3.5rem; }
    .section { padding: 4rem 5%; }
    .phase { grid-template-columns: 1fr; gap: 0.5rem; }
    .founder { flex-direction: column; align-items: center; text-align: center; }
}

