@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --color-primary: #1a1a2e;
    --color-accent: #e94560;
    --color-accent-hover: #d63a54;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-main: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ── Navigation ── */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 2rem;
    background: rgba(20, 20, 35, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.nav__logo span {
    color: var(--color-accent);
}

.nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav__links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--color-white);
}

.nav__cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav__cta:hover {
    background: var(--color-accent-hover);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav__hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── Hero ── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: var(--color-white);
    min-height: 85vh;
}

.hero__tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.15);
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    max-width: 800px;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero__highlight {
    background: linear-gradient(135deg, var(--color-accent), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

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

.btn {
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 1.15rem;
}

/* ── Hero Extras ── */
.hero__micro {
    font-size: 0.85rem;
    opacity: 0.55;
    margin-top: 1.5rem;
}

/* ── Pain Section ── */
.pain__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pain-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--color-accent);
    transition: transform 0.2s, box-shadow 0.2s;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pain-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-style: italic;
}

.pain-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Bridge Section ── */
.bridge__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.bridge__content h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.bridge__lead {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.bridge__content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.bridge__content strong {
    color: var(--color-primary);
    font-size: 1.15rem;
}

.bridge__content .btn {
    margin-top: 1rem;
}

/* ── Transform Cards ── */
.transform__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.transform-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.transform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.transform-card__before {
    display: inline-block;
    background: #fde8ec;
    color: #c0392b;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.transform-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.transform-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.transform-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.transform-card__after {
    display: inline-block;
    background: #e8f8f0;
    color: #27ae60;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ── Featured Testimonial ── */
.testimonial-card--featured {
    border: 2px solid var(--color-accent);
    position: relative;
}

.testimonial-card--featured::before {
    content: "Featured Story";
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ── Who This Is For ── */
.for__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.for__list h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.for__list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.for__list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.for__list--yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.for__list--no li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

/* ── Emotional CTA ── */
.cta-banner--emotional .cta-banner__sub {
    font-size: 0.95rem;
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-banner--emotional .cta-banner__micro {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 1.25rem;
}

/* ── Section Shared ── */
.section {
    padding: 5rem 5%;
}

.section--gray {
    background: var(--color-light);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__header h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.section__header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Services ── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ── Stats ── */
.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-accent);
}

.stat__label {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* ── Testimonials ── */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card__quote {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-card__author {
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ── CTA Banner ── */
.cta-banner {
    text-align: center;
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: var(--color-white);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ── */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 5% 1.5rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer__brand {
    max-width: 300px;
}

.footer__brand h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.footer__brand h3 span {
    color: var(--color-accent);
}

.footer__links h4 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

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

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav {
        width: 90%;
        padding: 0.75rem 1.25rem;
    }

    .nav__links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        width: 100%;
        background: rgba(20, 20, 35, 0.9);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav__links.active {
        display: flex;
    }

    .nav__hamburger {
        display: flex;
    }

    .hero {
        padding: 4rem 5% 3rem;
        min-height: auto;
    }

    .stats {
        gap: 2rem;
    }

    .book-layout {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .career-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .for__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pain__grid,
    .transform__grid {
        grid-template-columns: 1fr;
    }

    .bridge__lead {
        font-size: 1.1rem;
    }
}

/* ── Page Hero ── */
.page-hero {
    text-align: center;
    padding: 7rem 5% 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: var(--color-white);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero--small {
    padding: 3.5rem 5% 2rem;
}

/* ── Content Block ── */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block__text h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.content-block__text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ── Book / Contact Form ── */
.book-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.book-info h2,
.book-form h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.book-info__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.book-info__list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.book-info__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.book-info__list strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.book-info__list p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__group label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

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

/* ── Case Studies ── */
.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-study-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-study-card__header h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
}

.case-study-card__tag {
    background: rgba(233, 69, 96, 0.1);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-study-card__challenge,
.case-study-card__solution {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.case-study-card__results {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.case-study-card__stat {
    text-align: center;
}

.case-study-card__stat .stat__number {
    font-size: 2rem;
}

.case-study-card__stat .stat__label {
    font-size: 0.85rem;
}

/* ── Process Steps ── */
.process-steps {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-step__number {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.process-step__content h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.process-step__content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ── FAQ ── */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ── Careers ── */
.careers-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.career-card__info h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.career-card__info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.career-card__tags {
    display: flex;
    gap: 0.5rem;
}

.career-card__tags span {
    background: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* ── Client Wins Feed ── */
.wins-feed {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.win-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.win-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.win-card__content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.win-card__content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.win-card__date {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* ── Legal Content ── */
.legal-content {
    max-width: 750px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    color: var(--color-text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* ── Error / Utility Pages ── */
.error-page {
    text-align: center;
    padding: 6rem 5%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--color-text-light);
    max-width: 450px;
    font-size: 1.05rem;
}