/* Connect2 NLP International — design tokens & site styles */

:root {
    --primary: #362278;
    --primary-dark: #0a1628;
    --accent: #e91e63;
    --accent-soft: #8aaa7a;
    --nav-bg: #362278;
    --ink: #0a1628;
    --ink-soft: #3d3a52;
    --bg: #f8f7fb;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --border: rgba(54, 34, 120, 0.12);
    --shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
    --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.06);
    --radius: 14px;
    --radius-sm: 10px;
    --font: 'Montserrat', system-ui, sans-serif;
    --max: 1120px;
    --narrow: 760px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); }

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }

/* --- nav ------------------------------------------------------------- */
header.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nav-bg);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    flex-wrap: wrap;
    box-shadow: 0 2px 20px rgba(10, 22, 40, 0.25);
}

header.nav .brand {
    font-weight: 700;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

header.nav .brand img {
    max-height: 42px;
    width: auto;
}

header.nav .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

header.nav .bt { font-weight: 700; font-size: .95rem; }
header.nav .bs { font-size: .7rem; opacity: .85; font-weight: 400; }

header.nav .links {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    align-items: center;
}

header.nav .item { position: relative; }

header.nav .item > a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    opacity: .88;
    font-size: .9rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: opacity .15s ease, background .15s ease;
}

header.nav .item > a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

header.nav .sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-bg);
    padding: 8px;
    border-radius: 0 0 8px 8px;
    min-width: 170px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
    z-index: 20;
}

header.nav .item:hover .sub,
header.nav .item:focus-within .sub { display: flex; }

header.nav .sub a {
    color: #fff;
    opacity: .85;
    text-decoration: none;
    font-size: .9rem;
    padding: 4px 6px;
}

header.nav .sub a:hover { opacity: 1; }

.nt { display: none; }

.hamb {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    user-select: none;
}

@media (max-width: 768px) {
    .hamb { display: block; }
    header.nav .links {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        gap: 4px;
        padding-bottom: 8px;
    }
    .nt:checked ~ .links { display: flex; }
    header.nav .sub {
        position: static;
        display: flex;
        padding: 2px 0 2px 16px;
        box-shadow: none;
        background: transparent;
    }
}

/* --- buttons ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font);
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    letter-spacing: 0.01em;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}

.btn-primary:hover {
    background: #d41556;
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.45);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

/* --- hero ------------------------------------------------------------- */
.hero {
    position: relative;
    background:
        linear-gradient(135deg, rgba(54, 34, 120, 0.92) 0%, rgba(10, 22, 40, 0.88) 100%),
        url('https://connect2nlp.com/images/simon-hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 28px 110px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy { text-align: left; }

.hero-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    margin: 0 0 1rem;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero h1 .line2 {
    display: block;
    color: #f3b8ce;
}

.hero .lead {
    opacity: .92;
    font-size: 1.1rem;
    margin: 0;
    max-width: 36em;
    line-height: 1.7;
    font-weight: 400;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    max-width: 280px;
}

.hero-badge img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin: 0 auto 14px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.25));
}

.hero-badge strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.hero-badge span {
    font-size: .85rem;
    opacity: .85;
    line-height: 1.45;
}

@media (max-width: 860px) {
    .hero { padding: 72px 24px 90px; text-align: center; }
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-copy { text-align: center; }
    .hero .lead { margin-left: auto; margin-right: auto; }
    .btn-row { justify-content: center; }
    .hero-visual { order: -1; }
}

/* --- page head -------------------------------------------------------- */
.page-head {
    background:
        linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 64px 28px 72px;
    text-align: center;
    position: relative;
}

.page-head::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}

.page-head h1 {
    margin: 0 0 .6rem;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: #fff;
    position: relative;
    z-index: 1;
}

.page-head p {
    margin: 0 auto;
    max-width: 40em;
    opacity: .9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* --- layout helpers --------------------------------------------------- */
.section {
    padding: 72px 28px;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--primary-dark);
    color: #fff;
}

.section-dark h2,
.section-dark h3 { color: #fff; }

.section-primary {
    background: var(--primary);
    color: #fff;
}

.section-primary h2,
.section-primary h3 { color: #fff; }

.wrap {
    max-width: var(--max);
    margin: 0 auto;
}

.wrap-narrow {
    max-width: var(--narrow);
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-dark .section-label,
.section-primary .section-label {
    color: var(--accent-soft);
}

.section h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 1rem;
}

.section .intro {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 40em;
    margin: 0 0 2rem;
}

.section-dark .intro,
.section-primary .intro {
    color: rgba(255, 255, 255, 0.85);
}

.center { text-align: center; }
.center .intro { margin-left: auto; margin-right: auto; }

/* --- prose (legacy content blocks) ------------------------------------ */
.prose {
    max-width: var(--narrow);
    margin: 0 auto;
    padding: 56px 24px;
}

.prose h2 { margin-top: 0; }
.prose a { color: var(--primary); }

/* --- cards / grids ---------------------------------------------------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

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

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

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), #5a3db5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.card-icon.accent { background: linear-gradient(135deg, var(--accent), #f06292); }
.card-icon.soft { background: linear-gradient(135deg, var(--accent-soft), #a8c49a); color: var(--primary-dark); }

.card h3 {
    font-size: 1.15rem;
    margin: 0 0 .6rem;
}

.card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .95rem;
}

.card a {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    color: var(--accent);
}

.card a:hover { text-decoration: underline; }

/* --- feature split ---------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.split img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.split-copy h2 { margin-top: 0; }

@media (max-width: 800px) {
    .split { grid-template-columns: 1fr; gap: 28px; }
    .split .media { order: -1; }
}

/* --- path / steps ----------------------------------------------------- */
.path {
    display: grid;
    gap: 0;
    position: relative;
}

.path-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.path-step:last-child { border-bottom: none; }

.path-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.path-step h3 {
    margin: 4px 0 6px;
    font-size: 1.15rem;
}

.path-step p {
    margin: 0;
    color: var(--ink-soft);
}

/* --- values / pills --------------------------------------------------- */
.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.pill {
    background: rgba(54, 34, 120, 0.08);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: .9rem;
}

/* --- quote / testimonial ---------------------------------------------- */
.quote {
    background: var(--surface);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 28px 30px;
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    color: var(--ink-soft);
    font-style: italic;
}

.quote cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary);
}

/* --- team / portrait -------------------------------------------------- */
.portrait {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

/* --- logo strip ------------------------------------------------------- */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: .85;
}

.logo-strip img {
    max-height: 56px;
    width: auto;
    filter: grayscale(20%);
}

/* --- CTA band --------------------------------------------------------- */
.cta-band {
    text-align: center;
    padding: 72px 28px;
    background:
        linear-gradient(135deg, var(--primary) 0%, #5a3db5 50%, var(--accent) 160%);
    color: #fff;
}

.cta-band h2 {
    color: #fff;
    margin: 0 0 .75rem;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
    margin: 0 auto 1.5rem;
    max-width: 34em;
    opacity: .92;
    font-size: 1.05rem;
}

/* --- list polish ------------------------------------------------------ */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.check-list li {
    position: relative;
    padding: 10px 0 10px 36px;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-soft);
    box-shadow: inset 0 0 0 5px #fff, 0 0 0 2px var(--accent-soft);
}

/* --- gallery strip ---------------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 700px) {
    .gallery { grid-template-columns: 1fr; }
    .gallery img { height: 180px; }
}

/* --- footer ------------------------------------------------------------ */
footer.foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 36px 28px;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: .85rem;
    flex-wrap: wrap;
}

footer.foot .tag {
    opacity: .9;
    font-weight: 600;
}
