/* FreiNetz Akademie — rare-cloud-620.css */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #f89c35;
    --accent-hover: #c67d2a;
    --navy: #1a2340;
    --navy-light: #243058;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #f5f5f7;
    --white: #ffffff;
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
    --transition: 0.25s ease;
    --radius: 4px;
    --container: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--accent);
    color: var(--white);
}

/* ===== MOBILE MENU ===== */
#mobile-menu-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 9998;
    padding: 80px 32px 32px;
    flex-direction: column;
}

#mobile-menu-wrapper.open {
    display: flex;
}

#mobile-menu-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#mobile-menu-wrapper ul li a {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

#mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ===== HEADER / NAV ===== */
#main-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 64, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9000;
    transition: background var(--transition);
}

#main-nav-wrapper.scrolled {
    background: rgba(26, 35, 64, 0.97);
}

#main-nav {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 70px;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-logo svg {
    height: 42px;
    width: auto;
}

.nav-menu {
    flex: 1;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
}

.nav-menu ul li a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: background var(--transition);
    display: block;
}

.nav-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-menu ul li.active a {
    color: var(--accent);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-social a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    transition: color var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 80px;
}

#hero .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 35, 64, 0.98) 50%, rgba(26, 35, 64, 0.0));
    z-index: 1;
}

#hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

#hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    max-width: 580px;
    margin-bottom: 20px;
}

#hero h1 span {
    color: var(--accent);
    display: block;
}

#hero .hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
}

#hero .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-divider {
    display: flex;
    align-items: center;
    margin: 48px 0 32px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.section-divider span {
    background: var(--accent);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    margin: 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ===== USERTYPE CARDS (3-col) ===== */
#usertype {
    background: var(--bg);
}

#usertype .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

#usertype article {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 36px 28px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

#usertype article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

#usertype article .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 156, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--accent);
}

#usertype article h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

#usertype article p {
    color: var(--text-light);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 24px;
}

#usertype article .flex-wrapper {
    margin-top: auto;
}

/* ===== ABOUT ===== */
#about .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

#about .image-wrapper img {
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    width: 100%;
}

#about .content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

#about .content>p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1rem;
}

#about .content ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#about .content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
}

#about .content ul li .check-icon {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

#about .content ul li strong {
    color: var(--navy);
}

/* ===== TARGET GROUP (4-col) ===== */
#target-group {
    background: var(--bg);
}

#target-group #group-wrapper .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#target-group #group-wrapper .grid-wrapper a {
    display: block;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    background: var(--white);
    transition: border-color var(--transition), transform var(--transition);
}

#target-group #group-wrapper .grid-wrapper a:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

#target-group #group-wrapper .grid-wrapper a .tg-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

#target-group #group-wrapper .grid-wrapper a h4 {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 700;
}

/* ===== COURSES / PRICING ===== */
#courses {
    background: var(--white);
}

#courses .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 20px;
}

#courses .course-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}

#courses .course-card:hover {
    transform: translateY(-4px);
}

#courses .course-card.featured {
    border-color: var(--accent);
    position: relative;
}

#courses .course-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

#courses .course-card img.course-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

#courses .course-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#courses .course-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

#courses .course-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 16px;
}

#courses .course-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

#courses .course-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
}

#courses .course-meta span i {
    margin-right: 4px;
    color: var(--accent);
}

#courses .course-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

#courses .course-price small {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 4px;
}

#courses .mentoring-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 32px;
    align-items: center;
    border: 2px solid var(--navy);
    border-radius: 10px;
    padding: 32px;
    background: var(--navy);
    color: var(--white);
}

#courses .mentoring-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

#courses .mentoring-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

#courses .mentoring-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}

#courses .mentoring-price small {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--bg);
}

.carousel-outer {
    position: relative;
    overflow: hidden;
}

.carousel {
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
}

.slide .content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    padding: 48px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.slide .content img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

.slide .content .quote-block p {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.75;
}

.slide .content .quote-block p::before {
    content: '\201C';
    font-size: 2rem;
    color: var(--accent);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.slide .content .quote-author strong {
    color: var(--navy);
    display: block;
    font-size: 1rem;
}

.slide .content .quote-author span {
    color: var(--text-light);
    font-size: 0.88rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.carousel-dots button.active {
    background: var(--accent);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.carousel-nav button {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--navy);
    transition: background var(--transition), color var(--transition);
}

.carousel-nav button:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ===== PARTNERS ===== */
#partners {
    background: var(--navy);
    padding: 60px 0;
}

#partners .section-title h2 {
    color: var(--white);
}

#partners .section-title p {
    color: rgba(255, 255, 255, 0.65);
}

#partners .partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

#partners .partner-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition);
}

#partners .partner-badge:hover {
    background: rgba(248, 156, 53, 0.2);
    color: var(--white);
}

/* ===== CTA BAND ===== */
#cta-band {
    background: var(--navy);
    padding: 64px 0;
    text-align: center;
}

#cta-band .flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

#cta-band h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    max-width: 600px;
    text-align: left;
}

/* ===== FLOATING ACTION ===== */
.floating-action {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 8000;
}

.floating-action a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #4d4d4d;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: background var(--transition);
}

.floating-action a:hover {
    background: var(--accent);
}

/* ===== FOOTER ===== */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 0;
}

#footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#footer-wrapper h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#footer-wrapper ul li {
    margin-bottom: 10px;
}

#footer-wrapper ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color var(--transition);
}

#footer-wrapper ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact p i {
    color: var(--accent);
    margin-right: 8px;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

#footer-copyright {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

#footer-copyright a {
    color: rgba(255, 255, 255, 0.55);
}

#footer-copyright a:hover {
    color: var(--accent);
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    padding: 24px;
    z-index: 99999;
    display: none;
}

#cookie-banner.show {
    display: block;
}

#cookie-banner h4 {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#cookie-banner p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

#cookie-banner p a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-actions button {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #f0f0f0;
    color: var(--text);
    transition: background var(--transition);
}

.cookie-actions button.accept-all {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.cookie-actions button.accept-all:hover {
    background: var(--accent-hover);
}

.cookie-actions button:not(.accept-all):hover {
    background: #e0e0e0;
}

/* ===== INNER PAGES ===== */
.page-hero {
    background: var(--navy);
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.page-content {
    padding: 64px 0;
}

.page-content .prose h2 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 36px 0 14px;
    border-left: 4px solid var(--accent);
    padding-left: 14px;
}

.page-content .prose h3 {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.page-content .prose p {
    margin-bottom: 16px;
    color: var(--text);
    line-height: 1.75;
}

.page-content .prose ul {
    margin: 12px 0 16px 20px;
    list-style: disc;
}

.page-content .prose ul li {
    margin-bottom: 8px;
    color: var(--text);
}

.page-content .prose a {
    color: var(--accent);
    text-decoration: underline;
}

.page-content .prose strong {
    color: var(--navy);
}

/* ===== TEAM PAGE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--accent);
}

.team-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-card .role {
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== COMMENTS PAGE ===== */
.comments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.comment-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 32px;
    box-shadow: var(--card-shadow);
}

.comment-card .stars {
    color: #f5c518;
    margin-bottom: 12px;
    font-size: 1rem;
}

.comment-card p {
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.comment-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-card .reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-card .reviewer strong {
    display: block;
    color: var(--navy);
    font-size: 0.95rem;
}

.comment-card .reviewer span {
    color: var(--text-light);
    font-size: 0.82rem;
}

/* ===== CONTACT FORM ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(248, 156, 53, 0.1);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-item p strong {
    color: var(--navy);
    display: block;
    margin-bottom: 2px;
}

.contact-form-wrap {
    background: var(--bg);
    border-radius: 10px;
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group.req label::after {
    content: ' *';
    color: var(--accent);
}

/* ===== SUPPORT PAGE ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 16px 24px 20px;
    background: var(--bg);
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #about .grid-wrapper {
        grid-template-columns: 1fr;
    }

    #about .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    #courses .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #courses .mentoring-card {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    #footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-social {
        display: none;
    }

    .nav-hamburger {
        display: block;
    }

    #usertype .grid-wrapper {
        grid-template-columns: 1fr;
    }

    #target-group #group-wrapper .grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    #courses .courses-grid {
        grid-template-columns: 1fr;
    }

    #courses .mentoring-card {
        grid-template-columns: 1fr;
    }

    .slide .content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide .content img {
        margin: 0 auto;
    }

    #footer-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .comments-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    #cta-band .flex-wrapper {
        flex-direction: column;
        text-align: center;
    }

    #cta-band h2 {
        text-align: center;
    }

    #hero::before {
        width: 100%;
    }

    #hero .hero-bg {
        width: 100%;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    section {
        padding: 56px 0;
    }

    .page-hero {
        padding: 100px 0 48px;
    }

    #target-group #group-wrapper .grid-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}