:root {
    --primary-color: #0f172a;
    --primary-dark: #0b1220;
    --secondary-color: #1e40af;
    --accent-color: #2563eb;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-light);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-image {
    width: auto;
    height: 34px;
    display: block;
}

.logo-text .highlight {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.btn-contact {
    background: var(--accent-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.6rem;
    transition: all 0.2s ease;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #ffffff;
}

.hero-title .highlight {
    color: #dbeafe;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 400;
}

.hero-benefits {
    list-style: none;
    margin: 0 auto 2.5rem;
    padding: 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-benefits li {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(6px);
}

.hero-benefit--primary {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35), 0 8px 24px rgba(15, 23, 42, 0.25);
}

.hero-benefits li::before {
    content: none;
}

.hero-benefit-note {
    display: inline-block;
    margin-left: 0.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 0.9rem 1.75rem;
    border-radius: 0.6rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { top: 5px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
}

/* Sections */
.section {
    padding: 6.5rem 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-white);
}

.section--alt {
    background: var(--bg-light);
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 760px;
    margin-left: 0;
    margin-right: auto;
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-title {
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0;
    line-height: 1.8;
}

.section-header--left .section-subtitle {
    margin-left: 0;
}

.section-kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.highlight {
    color: var(--accent-color);
}

/* Audience & Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.3;
    height: 2.6em;
}

.service-description {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
    height: 5.4em;
}

.service-features {
    list-style: none;
    margin: 0;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border-color);
    min-height: 6.6em;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.service-note {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--text-light);
    height: 3.8em;
}

.audience-exclusion {
    margin-top: 2rem;
    padding: 1rem 1.25rem 1rem 3rem;
    background: white;
    border: 1px dashed var(--border-color);
    border-radius: 0.75rem;
    color: var(--text-light);
    position: relative;
    display: grid;
    gap: 0.35rem;
}

.audience-exclusion::before {
    content: 'i';
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.exclusion-title {
    font-weight: 700;
    color: var(--text-dark);
}

.exclusion-text {
    color: var(--text-light);
}

/* Problem & Solution */
.problem-intro {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    max-width: 760px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
}

.problem-card {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 0.75rem;
    padding: 1.5rem 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.solution-content {
    max-width: 900px;
    margin: 0;
}

.solution-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.solution-list li {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem 1rem 3rem;
    font-weight: 600;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent-color);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Offerings */
.offerings-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.offering-card {
    border-left: 4px solid var(--accent-color);
    background: var(--bg-white);
}


.offering-card .service-description {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.offering-card .service-features {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--border-color);
}

.offering-card .service-features li {
    display: flex;
    gap: 0.5rem;
    padding: 0.4rem 0;
}

.offering-card .service-features li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: 700;
}

/* Process */
.process-flow {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    margin-top: 1.5rem;
}

.process-flow .process-step {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.9rem;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.process-flow .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.6rem;
    font-weight: 700;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.process-flow .process-step p {
    color: var(--text-light);
    margin: 0;
}

.process-diagram {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
}

.process-node {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
}

.process-node:last-child {
    grid-template-columns: 1fr;
}

.node-box {
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    background: white;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.node-line {
    height: 2px;
    width: 100%;
    background: var(--accent-color);
    position: relative;
    border-radius: 2px;
}

.node-line::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.benefits-note {
    margin: -2rem 0 2rem;
    color: var(--text-light);
    max-width: 720px;
}

.form-microcopy {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    min-height: 2.6em;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    min-height: 3.2em;
}

.platform .section-subtitle + .section-subtitle {
    margin-top: 0.9rem;
    margin-bottom: 3rem;
}

/* Why */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.why-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.why-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.why-list li {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-weight: 600;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-tagline {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-benefits h4 {
    margin-bottom: 0.75rem;
}

.contact-benefits ul {
    padding-left: 1.25rem;
    color: var(--text-light);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    border: 1px solid var(--border-color);
    border-radius: 0.6rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-message {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.form-message.success {
    color: #0f766e;
}

.form-message.error {
    color: #b91c1c;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section h4 {
    margin-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-benefits {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .section {
        padding: 6rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .process-flow {
        flex-direction: column;
        gap: 1.25rem;
    }

    .process-flow .process-step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -2rem;
        transform: translateX(50%);
        font-size: 1.8rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-diagram {
        grid-template-columns: 1fr;
    }

    .process-node {
        grid-template-columns: 1fr;
    }

    .node-line {
        height: 36px;
        width: 2px;
        margin: 0.5rem auto;
    }

    .node-line::after {
        right: 50%;
        top: auto;
        bottom: -2px;
        transform: translateX(50%) rotate(135deg);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        gap: 1rem;
    }

    .nav-container {
        padding: 0.85rem 1.5rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 28px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 6.5rem 0 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 360px;
        text-align: center;
    }

    .services-grid,
    .benefits-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .service-card,
    .benefit-card,
    .why-text {
        padding: 1.5rem;
    }

    .contact-details {
        gap: 1rem;
    }
}
