/* ===================================================
   RedeKraft Akademie — Main Stylesheet
   vast-map-934.css
   =================================================== */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    background: #f5f0eb;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.5vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); }
h4 { font-size: 18px; }

p { line-height: 1.65; color: #444; }

/* === LAYOUT HELPERS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.section--gold { background: #d4982a; }
.section--white { background: #fff; }
.section--beige { background: #f5f0eb; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: #d4982a;
    color: #fff;
}
.btn-gold:hover {
    background: #c08a22;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212,152,42,0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}
.btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 13px;
}

/* === HEADER === */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 900;
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    letter-spacing: 0.02em;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d4982a;
    background: rgba(212,152,42,0.08);
}

.nav-cta {
    background: #d4982a !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 8px 20px !important;
}
.nav-cta:hover {
    background: #c08a22 !important;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.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 */
.mobile-nav {
    display: none;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px 20px 20px;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-radius: 8px;
    transition: background 0.2s;
}

.mobile-nav a:hover { background: #f5f0eb; color: #d4982a; }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2410 50%, #3a2e12 100%);
    position: relative;
    overflow: hidden;
}



.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    width: 100%;
}

.hero-content { max-width: 620px; }

.hero-tag {
    display: inline-block;
    background: rgba(212,152,42,0.2);
    border: 1px solid rgba(212,152,42,0.5);
    color: #f0c060;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 22px;
    font-size: clamp(34px, 5.5vw, 58px);
}

.hero h1 em {
    font-style: normal;
    color: #d4982a;
}

.hero-lead {
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-img {
    flex-shrink: 0;
    width: 440px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* === STATS BAR === */
.stats-bar {
    background: #fff;
    border-top: 4px solid #d4982a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    flex-wrap: wrap;
    gap: 24px;
}

.stat-item { text-align: center; }

.stat-num {
    font-size: 38px;
    font-weight: 900;
    color: #d4982a;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* === SECTION LABELS === */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d4982a;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 18px;
}

.section-lead {
    font-size: 17px;
    color: #555;
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* === OFFER GRID === */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.offer-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    border-bottom: 4px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.offer-card:hover {
    border-color: #d4982a;
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.offer-icon {
    width: 54px;
    height: 54px;
    background: rgba(212,152,42,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #d4982a;
}

.offer-card h3 { margin-bottom: 12px; font-size: 19px; }
.offer-card p { font-size: 14px; color: #666; line-height: 1.65; }

/* === COURSES SECTION === */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.course-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.11);
}

.course-img {
    height: 220px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.course-card:hover .course-img img { transform: scale(1.04); }

.course-body { padding: 26px; }

.course-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #d4982a;
    background: rgba(212,152,42,0.1);
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.course-body h3 { font-size: 20px; margin-bottom: 10px; }
.course-body p { font-size: 14px; color: #666; line-height: 1.65; margin-bottom: 18px; }

.course-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-meta span { display: flex; align-items: center; gap: 6px; }

.course-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0ece6;
    padding-top: 16px;
    margin-top: 4px;
}

.price-tag {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
}

.price-tag span { font-size: 14px; font-weight: 400; color: #888; }

/* === CTA BANNER === */
.cta-banner {
    background: #d4982a;
    border-radius: 18px;
    padding: 60px 48px;
    margin: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-text h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.88); font-size: 16px; }

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 22px;
    font-size: 60px;
    color: #d4982a;
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4982a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.author-role { font-size: 12px; color: #888; }

/* === FAQ === */
.faq-list { margin-top: 40px; }

.faq-item {
    border-bottom: 1px solid #e5ddd2;
    padding: 20px 0;
}

.faq-item:first-child { border-top: 1px solid #e5ddd2; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    gap: 16px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212,152,42,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4982a;
    font-size: 16px;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding-top: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* === CONTACT FORM === */
.contact-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.contact-info h3 { margin-bottom: 20px; }

.contact-info p { color: #555; line-height: 1.7; margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(212,152,42,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4982a;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-detail-text strong { display: block; font-size: 13px; color: #888; margin-bottom: 2px; }
.contact-detail-text a { color: #1a1a1a; font-weight: 600; }
.contact-detail-text a:hover { color: #d4982a; }

/* Form */
.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4982a;
    box-shadow: 0 0 0 3px rgba(212,152,42,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #d4982a;
}

.form-check label { font-size: 13px; color: #666; line-height: 1.5; }
.form-check label a { color: #d4982a; }

/* === PROCESS SECTION === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step-item { text-align: center; position: relative; }

.step-item::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: #d4982a;
}

.step-item:last-child::after { display: none; }

.step-num {
    width: 60px;
    height: 60px;
    background: #d4982a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-item h4 { margin-bottom: 8px; font-size: 16px; }
.step-item p { font-size: 13px; color: #666; line-height: 1.6; }

/* === IMAGE SECTION === */
.img-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 48px;
}

.img-section.reverse { direction: rtl; }
.img-section.reverse > * { direction: ltr; }

.img-section-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.img-section-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.img-section-text h2 { margin-bottom: 18px; }
.img-section-text p { color: #555; line-height: 1.75; margin-bottom: 16px; font-size: 16px; }

.check-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #444;
}

.check-list li i { color: #d4982a; margin-top: 2px; flex-shrink: 0; }

/* === FOOTER === */
.site-footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover { background: #d4982a; color: #fff; }

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.footer-col a:hover { color: #d4982a; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* === COOKIES === */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible { transform: translateY(0); }

#cookie-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    line-height: 1.5;
    margin: 0;
}

#cookie-banner a { color: #d4982a; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.btn-cookie-accept {
    background: #d4982a;
    color: #fff;
    padding: 10px 22px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.btn-cookie-accept:hover { background: #c08a22; }

.btn-cookie-decline {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    padding: 10px 22px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.btn-cookie-decline:hover { background: rgba(255,255,255,0.18); }

/* === PAGE HERO (inner pages) === */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2410 100%);
    padding: 140px 20px 70px;
    text-align: center;
}

.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 580px; margin: 0 auto; }

/* === CONTENT PAGE === */
.content-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.content-section h2 {
    font-size: 24px;
    margin: 36px 0 14px;
    color: #1a1a1a;
}

.content-section h3 { font-size: 18px; margin: 24px 0 10px; }

.content-section p { margin-bottom: 14px; font-size: 15px; }

.content-section ul {
    list-style: disc;
    padding-left: 20px;
    margin: 12px 0 16px;
}

.content-section ul li { margin-bottom: 8px; font-size: 15px; color: #444; }

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-section table th,
.content-section table td {
    border: 1px solid #e5ddd2;
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
}

.content-section table th { background: #f5f0eb; font-weight: 700; }

/* === ABOUT PAGE EXTRAS === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s;
}

.team-card:hover { transform: translateY(-4px); }

.team-photo {
    height: 220px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info { padding: 20px; }
.team-info h4 { margin-bottom: 4px; }
.team-info span { font-size: 13px; color: #d4982a; font-weight: 600; }
.team-info p { font-size: 14px; color: #666; margin-top: 10px; }

/* === MISSION BLOCK === */
.mission-block {
    background: #d4982a;
    border-radius: 18px;
    padding: 56px 48px;
    text-align: center;
    color: #fff;
    margin: 60px 0;
}

.mission-block h2 { color: #fff; margin-bottom: 16px; }
.mission-block p { color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* === MAP PLACEHOLDER === */
.map-placeholder {
    height: 360px;
    background: #e5ddd2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #bbb;
    margin-top: 48px;
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-gold { color: #d4982a; }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* Alert boxes */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.alert-success { background: #eaf8ec; border-left: 4px solid #4caf50; color: #2e7d32; }
.alert-error { background: #fdecea; border-left: 4px solid #f44336; color: #c62828; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .main-nav { display: none; }
    .nav-cta { display: none; }
    .burger { display: flex; }

    .hero-inner { flex-direction: column; text-align: center; padding: 60px 20px; }
    .hero-img { width: 100%; max-width: 480px; }
    .hero-btns { justify-content: center; }

    .offer-grid { grid-template-columns: 1fr 1fr; }
    .courses-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .step-item::after { display: none; }
    .img-section { grid-template-columns: 1fr; }
    .img-section.reverse { direction: ltr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-wrap { grid-template-columns: 1fr; gap: 32px; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
}

@media (max-width: 640px) {
    .offer-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); display: grid; }
    .section { padding: 56px 0; }
    .process-steps { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
