/* InnovarCoach 2026 - Full width responsive landing */
:root {
    --primary-color: #55a9cd;
    --secondary-color: #2d89ad;
    --accent-color: #91d0ad;
    --dark-color: #293241;
    --text-color: #44505f;
    --muted-color: #768391;
    --light-color: #f6fbfc;
    --soft-color: #edf8fb;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(34, 58, 78, 0.13);
    --shadow-strong: 0 18px 55px rgba(34, 58, 78, 0.2);
    --transition: all 0.32s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.wide-container {
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    border-radius: 6px;
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(41, 50, 65, 0.22);
}

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

.btn-light {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-light:hover {
    background: var(--dark-color);
    color: var(--white);
}

/* Header */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    min-height: 84px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 7px 24px rgba(30, 50, 70, 0.08);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

header.scrolled {
    min-height: 70px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 10px 30px rgba(30, 50, 70, 0.14);
}

.logo a {
    color: var(--primary-color);
    font-size: 1.86rem;
    font-weight: 800;
    letter-spacing: -0.055em;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    color: var(--dark-color);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    white-space: nowrap;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    border-radius: 20px;
    background: var(--dark-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    width: 100%;
    min-height: 91vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-1 {
    background-image: url('../images/slide1.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 6vw 70px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.64) 42%, rgba(255,255,255,0.16) 100%);
}

.hero-content {
    width: min(790px, 95vw);
    text-align: left;
}

.hero-eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--primary-color);
    max-width: 780px;
    font-size: clamp(3rem, 4.9vw, 5.3rem);
    line-height: 1.06;
    letter-spacing: -0.065em;
    margin-bottom: 22px;
    text-shadow: 0 12px 30px rgba(255,255,255,0.78);
}

.hero-subtitle {
    max-width: 640px;
    color: var(--dark-color);
    font-size: clamp(1.12rem, 1.8vw, 1.46rem);
    font-weight: 400;
    margin-bottom: 34px;
}

/* Generic sections */
.top-section,
.design-section {
    width: 100%;
    padding: 94px 0;
}

.white-bg {
    background: var(--white);
}

.soft-bg,
.design-section {
    background: var(--light-color);
}

.section-heading {
    max-width: 940px;
    margin: 0 auto 52px;
    text-align: center;
}

.first-heading {
    max-width: 1120px;
}

.section-heading h2 {
    color: var(--dark-color);
    font-size: clamp(2.1rem, 3.3vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

.first-heading h2 {
    font-size: clamp(1.95rem, 2.75vw, 3.4rem);
}

.section-heading p {
    color: var(--muted-color);
    font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.icon-badge,
.number-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--soft-color);
    color: var(--primary-color);
    font-size: 1.18rem;
    font-weight: 800;
}

/* Big top cards */
.big-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.big-card,
.feature-card,
.process-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.big-card:hover,
.feature-card:hover,
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
}

.big-card h3,
.feature-card h3,
.process-card h3 {
    color: var(--dark-color);
    font-size: 1.22rem;
    line-height: 1.24;
    margin-bottom: 14px;
}

.big-card ul li,
.check-list li {
    color: var(--muted-color);
    font-size: 0.98rem;
    line-height: 1.56;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.big-card ul li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}


.coaching-card-grid .big-card {
    padding: 28px 24px;
}

.coaching-card-grid .big-card h3 {
    font-size: 1.14rem;
}

.coaching-card-grid .big-card ul li {
    font-size: 0.93rem;
    line-height: 1.48;
    margin-bottom: 7px;
}

/* Full-width images */
.full-width-image {
    width: 100%;
    height: clamp(260px, 32vw, 460px);
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tall-image {
    height: clamp(330px, 42vw, 590px);
}

/* Split sections */
.split-section {
    width: 100%;
    padding: 0;
    background: var(--white);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.split-image {
    min-height: 560px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 108px);
}

.split-copy h2 {
    color: var(--dark-color);
    font-size: clamp(2.1rem, 3.2vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    margin-bottom: 20px;
}

.split-copy p {
    color: var(--muted-color);
    font-size: 1.08rem;
    margin-bottom: 22px;
}

.split-reverse .split-grid .split-copy {
    order: 1;
}

.split-reverse .split-grid .split-image {
    order: 2;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.pill-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--white);
    color: var(--secondary-color);
    border: 1px solid rgba(85, 169, 205, 0.24);
    font-size: 0.92rem;
    font-weight: 750;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.process-card {
    min-height: 270px;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 800;
    font-size: 1.05rem;
}

.process-card p,
.feature-card p {
    color: var(--muted-color);
    font-size: 1rem;
}

/* Feature grids */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.creativity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* CTA / Footer */
.cta {
    width: 100%;
    padding: 96px 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-content {
    max-width: 920px;
    margin: 0 auto;
}

.light-kicker {
    color: rgba(255,255,255,0.88);
}

.cta h2 {
    color: var(--white);
    font-size: clamp(2.2rem, 3.8vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.cta p {
    color: rgba(255,255,255,0.88);
    font-size: 1.12rem;
    max-width: 760px;
    margin: 0 auto 34px;
}

footer {
    width: 100%;
    padding: 78px 48px 22px;
    background: var(--dark-color);
    color: var(--white);
}

.footer-grid {
    width: min(1380px, 100%);
    margin: 0 auto 52px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 52px;
}

footer h2,
footer h3 {
    margin-bottom: 14px;
    color: var(--white);
}

footer h2 {
    color: var(--primary-color);
    font-size: 1.9rem;
    letter-spacing: -0.04em;
}

footer p,
footer a,
footer li {
    color: rgba(255,255,255,0.72);
    margin-bottom: 8px;
}

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

.copyright {
    width: min(1380px, 100%);
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

.copyright p {
    color: rgba(255,255,255,0.52);
    margin: 0;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.18s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.big-card.reveal:nth-child(1),
.feature-card.reveal:nth-child(1),
.process-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.big-card.reveal:nth-child(2),
.feature-card.reveal:nth-child(2),
.process-card.reveal:nth-child(2) { transition-delay: 0.10s; }
.big-card.reveal:nth-child(3),
.feature-card.reveal:nth-child(3),
.process-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.big-card.reveal:nth-child(4),
.feature-card.reveal:nth-child(4),
.process-card.reveal:nth-child(4) { transition-delay: 0.20s; }
.big-card.reveal:nth-child(5),
.feature-card.reveal:nth-child(5),
.process-card.reveal:nth-child(5) { transition-delay: 0.25s; }
.big-card.reveal:nth-child(6),
.feature-card.reveal:nth-child(6) { transition-delay: 0.30s; }
.big-card.reveal:nth-child(7) { transition-delay: 0.35s; }

/* Responsive */
@media (max-width: 1240px) {
    header {
        padding: 0 32px;
    }

    nav ul {
        gap: 16px;
    }

    nav a {
        font-size: 0.8rem;
    }

    .big-card-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    header {
        min-height: 76px;
        padding: 0 22px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.985);
        box-shadow: 0 18px 35px rgba(34, 58, 78, 0.12);
        transform: translateY(-125%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 28px 28px;
        gap: 16px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-overlay {
        padding-top: 112px;
        background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 56%, rgba(255,255,255,0.3) 100%);
    }

    .top-section,
    .design-section {
        padding: 72px 0;
    }

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

    .split-image {
        min-height: 330px;
    }

    .split-copy {
        padding: 58px 28px;
    }

    .split-reverse .split-grid .split-copy,
    .split-reverse .split-grid .split-image {
        order: unset;
    }

    .process-grid,
    .creativity-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 620px) {
    .wide-container {
        width: min(100% - 30px, 1500px);
    }

    .hero h1 {
        font-size: clamp(2.55rem, 12vw, 4.05rem);
        letter-spacing: -0.055em;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .big-card-grid,
    .feature-grid,
    .process-grid,
    .creativity-grid {
        grid-template-columns: 1fr;
    }

    .big-card,
    .feature-card,
    .process-card {
        padding: 26px;
    }

    .section-heading h2,
    .split-copy h2,
    .cta h2 {
        letter-spacing: -0.045em;
    }

    footer {
        padding: 58px 24px 20px;
    }
}
