/* wild-glass-183.css — Flusswerkpfad Akademie */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --navy: #22253F;
    --blue: #5B7BA5;
    --yellow: #EED63E;
    --eggshell: #F8F5EE;
    --pink: #F5A0B0;
    --white: #ffffff;
    --text: #1a1a2e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: -0.5px;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}

/* ── LAYOUT ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all .25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--yellow {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}

.btn--yellow:hover {
    background: #d9bf2e;
    border-color: #d9bf2e;
}

.btn--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn--navy:hover {
    background: #2e3360;
    border-color: #2e3360;
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn--pink {
    background: var(--pink);
    color: var(--navy);
    border-color: var(--pink);
}

.btn--pink:hover {
    background: #e88a9b;
    border-color: #e88a9b;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-sm {
    padding: 9px 22px;
    font-size: 13px;
}

/* ── FIXED HEADER / NAV ── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 17px 0;
    transition: background .3s ease, padding .3s ease;
}

#site-header.scrolled {
    background: var(--navy);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-svg {
    height: 48px;
    width: auto;
    overflow: visible;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

nav.main-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding-bottom: 4px;
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

nav.main-nav a:hover::after,
nav.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 8px;
}

/* mobile burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all .3s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 998;
    padding: 100px 32px 40px;
    gap: 28px;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding-bottom: 16px;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../pics/hero-bg.webp');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(34, 37, 63, .7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 140px 24px 80px;
    margin: 0 auto 0 0;
    margin-left: clamp(24px, 8vw, 140px);
}

.hero-content h1 {
    color: var(--white);
    text-transform: uppercase;
    max-width: 600px;
}

.hero-content p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    margin: 20px 0 36px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── INTRO BAND (blue) ── */
.intro-band {
    background: var(--blue);
    color: var(--white);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.intro-band .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.intro-text p:last-of-type {
    margin-bottom: 28px;
}

.intro-img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 380px;
}

.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* egg decoration */
.egg-deco {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 260px;
    height: 320px;
    opacity: .18;
    pointer-events: none;
}

/* ── CARDS GRID ── */
.cards-section {
    background: var(--eggshell);
    padding: 60px 0 80px;
}

.cards-section h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, .1), rgba(34, 37, 63, .63), rgba(255, 255, 255, .1));
    mix-blend-mode: multiply;
}

.card-img-title {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

.card-body {
    background: var(--navy);
    color: var(--white);
    padding: 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: 190px;
}

.card-body p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.card-body .btn {
    width: 100%;
}

/* ── YELLOW BAND ── */
.yellow-band {
    background: var(--yellow);
    padding: 0;
    overflow: hidden;
}

.yellow-band-inner {
    display: grid;
    grid-template-columns: 7fr 5fr;
    min-height: 480px;
}

.yellow-band-text {
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(24px, 8vw, 120px);
}

.yellow-band-text h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.yellow-band-text p {
    color: var(--navy);
    font-size: 17px;
    margin-bottom: 14px;
    max-width: 500px;
}

.yellow-band-text .btn {
    margin-top: 16px;
    align-self: flex-start;
}

.yellow-band-img {
    position: relative;
    overflow: hidden;
}

.yellow-band-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── FULL-BLEED CTA ── */
.fullbleed-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.fullbleed-bg {
    position: absolute;
    inset: 0;
    background-image: url('../pics/results-cta.webp');
    background-size: cover;
    background-position: center top;
}

.fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 37, 63, .85) 0%, rgba(34, 37, 63, .2) 100%);
}

.fullbleed-content {
    position: relative;
    z-index: 2;
    padding: 60px clamp(24px, 8vw, 140px);
    max-width: 700px;
}

.fullbleed-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.fullbleed-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    margin-bottom: 28px;
}

/* ── PRICING ── */
.pricing-section {
    background: var(--eggshell);
    padding: 80px 0;
}

.pricing-section h2 {
    text-align: center;
    color: var(--navy);
    margin-bottom: 12px;
}

.pricing-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    font-size: 17px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-card.featured {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.04);
}

.pricing-card .plan-name {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
}

.pricing-card.featured .plan-name {
    color: var(--yellow);
}

.pricing-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card .price span {
    font-size: 18px;
    font-weight: 400;
}

.pricing-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-card ul li i {
    color: var(--blue);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card.featured ul li i {
    color: var(--yellow);
}

.pricing-card .btn {
    margin-top: 8px;
    width: 100%;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--blue);
    padding: 80px 0;
}

.testimonials-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 32px;
    color: var(--white);
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.testimonial-author-info strong {
    display: block;
    font-size: 15px;
}

.testimonial-author-info span {
    font-size: 13px;
    opacity: .75;
}

/* ── CONTACT FORM ── */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-section h2 {
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-section .subtitle {
    color: #555;
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--navy);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item i {
    color: var(--blue);
    font-size: 20px;
    margin-top: 2px;
    width: 22px;
    text-align: center;
}

.contact-info-item p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--blue);
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color .2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-btn {
    align-self: flex-start;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 55px 0 28px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: .8;
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--white);
    transition: background .2s, border-color .2s;
}

.footer-social a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy);
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
    color: var(--yellow);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: .8;
    transition: opacity .2s;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-col p {
    font-size: 14px;
    opacity: .8;
    line-height: 1.7;
}

.footer-col address {
    font-style: normal;
    font-size: 14px;
    opacity: .8;
    line-height: 1.8;
}

.footer-col address a {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: .65;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    opacity: .65;
}

.footer-bottom-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 440px;
    background: var(--navy);
    color: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    z-index: 9999;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
    display: none;
}

#cookie-banner.visible {
    display: block;
}

#cookie-banner p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
    opacity: .9;
}

#cookie-banner p a {
    color: var(--yellow);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: var(--navy);
    padding: 130px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
}

.page-hero p {
    color: rgba(255, 255, 255, .75);
    margin-top: 12px;
    font-size: 17px;
}

/* ── CONTENT SECTIONS ── */
.content-section {
    padding: 70px 0;
}

.content-section h2 {
    color: var(--navy);
    margin-bottom: 20px;
}

.content-section h3 {
    color: var(--navy);
    margin: 28px 0 12px;
    font-size: 20px;
}

.content-section p {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.content-section ul {
    margin: 12px 0 18px 20px;
}

.content-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 6px;
    list-style: disc;
}

/* about team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--yellow);
}

.team-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
}

.team-card p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
}

/* stats row */
.stats-row {
    background: var(--navy);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    color: var(--yellow);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}

/* customer stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 20px;
}

.story-card {
    background: var(--eggshell);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-card .story-stars {
    color: var(--yellow);
    font-size: 18px;
}

.story-card .story-text {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    font-style: italic;
}

.story-card .story-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-card .story-author img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue);
}

.story-card .story-author-info strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.story-card .story-author-info span {
    font-size: 13px;
    color: #777;
}

.story-result {
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
}

.story-result strong {
    color: var(--yellow);
}

/* faq */
.faq-list {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question i {
    transition: transform .3s;
    color: var(--blue);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-top: 12px;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-band .container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .yellow-band-inner {
        grid-template-columns: 1fr;
    }

    .yellow-band-img {
        height: 280px;
    }

    .yellow-band-text {
        padding: 40px 24px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    nav.main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 120px 24px 60px;
        margin-left: 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .fullbleed-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-btns {
        flex-direction: column;
    }

    #cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}