/* StimmKraft Coaching — Main Stylesheet */

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary: #00acdc;
    --secondary: #f36e1a;
    --secondary-hover: #f7941d;
    --accent: #005d1b;
    --text: #76787b;
    --heading: #333333;
    --dark: #313131;
    --bg-light: #f2f2f2;
    --white: #ffffff;
    --link: #2b7bb9;
    --border: #cccccc;
    --border-active: #bbbbbb;
    --validation-red: #790000;
    --confirm-green: #3c763d;
    --overlay: rgba(73,73,74,0.82);
    --font: 'Montserrat', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a {
    color: var(--link);
    text-decoration: none;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--heading);
    line-height: 1.2;
    margin: 0 0 20px;
}

h1 { font-size: 36px; font-weight: 700; }
h2 { font-size: 30px; font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }

p { margin: 0 0 15px; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.site-header.shrunk {
    padding: 5px 0;
    box-shadow: 0 3px 12px rgba(0,0,0,.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 80px;
}

.site-header.shrunk .header-inner {
    height: 60px;
}

/* Logo SVG */
.logo-wrap a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    width: 44px;
    height: 44px;
    -webkit-transition: width .3s, height .3s;
    -moz-transition: width .3s, height .3s;
    -o-transition: width .3s, height .3s;
    transition: width .3s, height .3s;
}

.site-header.shrunk .logo-svg {
    width: 34px;
    height: 34px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1;
}

.logo-text span {
    color: var(--primary);
}

/* Main Nav */
.main-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    border-radius: 4px;
    -webkit-transition: color .3s, background .3s;
    -moz-transition: color .3s, background .3s;
    -o-transition: color .3s, background .3s;
    transition: color .3s, background .3s;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--link);
    background: var(--bg-light);
}

.nav-cta {
    background: var(--secondary) !important;
    color: var(--white) !important;
    border-radius: 4px;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--secondary-hover) !important;
    color: var(--white) !important;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--heading);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(49,49,49,0.78);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content p {
    color: rgba(255,255,255,.88);
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto 35px;
}

.hero-btns {
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    padding: 14px 30px;
    border-radius: 4px;
    border: 2px solid transparent;
    text-decoration: none;
    text-shadow: none;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--heading);
}

.btn-blue {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-blue:hover {
    background: #0099c4;
    border-color: #0099c4;
    color: var(--white);
}

/* ============================================
   SECTIONS — GENERAL
   ============================================ */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--bg-light);
}

.section-dark {
    background: var(--dark);
    color: rgba(255,255,255,.85);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 17px;
}

.accent-line {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto 20px;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 70px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    -webkit-align-items: center;
    align-items: center;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text p:first-child {
    font-size: 18px;
    color: var(--dark);
    font-weight: 400;
}

.intro-img {
    position: relative;
}

.intro-img img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.intro-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.intro-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    -webkit-transition: -webkit-transform .3s, box-shadow .3s;
    -moz-transition: -moz-transform .3s, box-shadow .3s;
    -o-transition: -o-transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s;
}

.card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.14);
}

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform .4s;
    -moz-transition: -moz-transform .4s;
    -o-transition: -o-transform .4s;
    transition: transform .4s;
}

.card:hover .card-img img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.card-icon {
    padding: 30px 25px 15px;
    color: var(--primary);
    font-size: 36px;
}

.card-body {
    padding: 0 25px 30px;
}

.card-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--heading);
}

.card-body p {
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* 3-col variant */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 2-col variant */
.cards-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ============================================
   MISSION / ABOUT SECTION (2-col text+img)
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    -webkit-align-items: center;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 6px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.checklist {
    margin: 25px 0;
}

.checklist li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 15px;
}

.checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 14px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,.07);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 72px;
    color: var(--primary);
    opacity: .2;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 12px;
}

.testimonial-author .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.testimonial-author .name {
    font-weight: 600;
    font-size: 15px;
    color: var(--heading);
}

.testimonial-author .role {
    font-size: 13px;
    color: var(--text);
}

.stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 12px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    text-align: left;
    padding: 18px 20px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transition: background .25s;
    -moz-transition: background .25s;
    -o-transition: background .25s;
    transition: background .25s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    color: var(--primary);
    -webkit-transition: -webkit-transform .3s;
    -moz-transition: -moz-transform .3s;
    -o-transition: -o-transform .3s;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.open .faq-question i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    line-height: 1.7;
    border-top: 1px solid var(--bg-light);
    padding-top: 15px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    opacity: .9;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero-bg.webp') center/cover no-repeat;
    opacity: .12;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 32px;
}

.cta-content p {
    color: rgba(255,255,255,.82);
    max-width: 560px;
    margin: 0 auto 30px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    -webkit-align-items: start;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-item {
    display: -webkit-flex;
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 15px;
    color: var(--heading);
    margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
    font-size: 15px;
    color: var(--text);
}

/* ============================================
   FORM STYLES
   ============================================ */
.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,.09);
}

.contact-form-wrap h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
}

.form-group label .req {
    color: var(--validation-red);
    margin-left: 3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    outline: none;
    line-height: 1.3;
    -webkit-transition: border-color .25s;
    -moz-transition: border-color .25s;
    -o-transition: border-color .25s;
    transition: border-color .25s;
    margin-top: 0;
    margin-bottom: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--border-active);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit button {
    width: 100%;
    padding: 15px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.form-submit button:hover {
    background: var(--secondary-hover);
}

.form-success {
    display: none;
    background: rgba(60,118,61,.1);
    border: 1px solid var(--confirm-green);
    color: var(--confirm-green);
    padding: 14px 18px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 15px;
}

.form-error-msg {
    color: var(--validation-red);
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #1a1a1a;
    color: #a0a0a0;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid #2e2e2e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 20px;
}

.footer-brand p {
    margin: 15px 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

.footer-social {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #2e2e2e;
    color: #a0a0a0;
    border-radius: 4px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 15px;
    -webkit-transition: background .3s, color .3s;
    -moz-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    font-size: 14px;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #888;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: #888;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #757575;
}

.footer-bottom a {
    color: var(--link);
    font-size: 13px;
}

/* ============================================
   COOKIES GDPR ALERT
   ============================================ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: #ccc;
    padding: 18px 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -3px 15px rgba(0,0,0,.3);
}

.cookie-bar.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 20px;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cookie-inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-inner a {
    color: var(--primary);
}

.cookie-btns {
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 9px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font);
    -webkit-transition: background .3s;
    -moz-transition: background .3s;
    -o-transition: background .3s;
    transition: background .3s;
}

.cookie-btn-accept {
    background: var(--secondary);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--secondary-hover);
}

.cookie-btn-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #444 !important;
}

.cookie-btn-decline:hover {
    background: #2e2e2e;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid var(--primary);
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text);
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
}

.breadcrumb {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--link);
}

.breadcrumb span {
    color: var(--text);
}

/* ============================================
   PROSE (legal pages etc)
   ============================================ */
.prose {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.prose h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
}

.prose h3 {
    margin-top: 30px;
    font-size: 18px;
}

.prose p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.prose ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 18px;
}

.prose ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ============================================
   MISSION PAGE SPECIFIC
   ============================================ */
.mission-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,.07);
}

.value-card i {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 2fr);
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .intro-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }

    .header-inner {
        padding: 0 16px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 15px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,.1);
        gap: 0;
        z-index: 999;
    }

    .main-nav.open {
        display: -webkit-flex;
        display: flex;
    }

    .main-nav a {
        padding: 12px 20px;
        border-radius: 0;
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }

    .burger {
        display: -webkit-flex;
        display: flex;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section {
        padding: 50px 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr;
    }

    .cards-grid-2 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 25px 20px;
    }

    .intro-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
}
