:root {
    --color-primary: #1b2d4f;
    --color-accent: #b08d57;
    --color-accent-hover: #997844;
    --color-text: #2c3038;
    --color-text-light: #6c727a;
    --color-bg: #ffffff;
    --color-bg-alt: #f7f5f2;
    --color-border: #e0dcd6;
    --color-dark: #111b2e;
    --color-dark-light: #1b2d4f;
    --font-heading: Georgia, "Times New Roman", serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1140px;
    --section-padding: 6rem 1.5rem;
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.1rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.4rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER / NAV ========== */

.site-header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-logo img {
    height: 36px;
    width: auto;
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0 0.75rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.main-nav a {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.25rem 0;
    position: relative;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ========== HERO ========== */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,27,46,0.72) 0%, rgba(17,27,46,0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 3rem 1.5rem;
}

.hero h1 {
    color: #fff;
    font-size: 3.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.hero .subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ========== PAGE HERO (Inner pages) ========== */

.page-hero {
    background: var(--color-primary);
    color: #fff;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.breadcrumb {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb span {
    margin: 0 0.4rem;
}

/* ========== SECTIONS ========== */

.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-dark {
    background: var(--color-dark);
    color: #fff;
}

.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-dark p {
    color: rgba(255,255,255,0.8);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

/* ========== PROSE INTRO ========== */

.prose-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.prose-intro p {
    line-height: 2;
}

/* ========== ALTERNATING BLOCKS ========== */

.alt-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.alt-block.reversed .alt-block-image {
    order: 2;
}

.alt-block.reversed .alt-block-text {
    order: 1;
}

.alt-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.alt-block-text h2 {
    margin-bottom: 1rem;
}

.alt-block-text p {
    color: var(--color-text-light);
}

/* ========== TIMELINE ========== */

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    transform: translateX(-5px);
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

/* ========== TESTIMONIAL ========== */

.testimonial-section {
    padding: var(--section-padding);
    background: var(--color-bg-alt);
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-block blockquote::before {
    content: "\201E";
    font-size: 4rem;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    color: var(--color-accent);
    line-height: 1;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.testimonial-author strong {
    color: var(--color-text);
    display: block;
}

/* ========== CTA BAND ========== */

.cta-band {
    background: var(--color-dark);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-band p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* ========== SERVICES GRID ========== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.service-card {
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.service-card .card-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

.service-card .card-link:hover {
    color: var(--color-accent-hover);
}

/* ========== STATS ========== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    display: block;
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-dark .stat-item .stat-number {
    color: var(--color-accent);
}

.section-dark .stat-item .stat-label {
    color: rgba(255,255,255,0.7);
}

/* ========== PROCESS STEPS ========== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 2px solid var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ========== AUDIENCE / TARGET ========== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.audience-item {
    border-left: 3px solid var(--color-accent);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: var(--color-bg);
}

.audience-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.audience-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ========== FAQ ACCORDION ========== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
    padding: 1.25rem 2rem 1.25rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    font-weight: 400;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--color-accent);
    transition: transform var(--transition);
}

.faq-list details[open] summary::after {
    content: "\2013";
}

.faq-list .faq-answer {
    padding: 0 0 1.5rem;
    color: var(--color-text-light);
}

/* ========== CONTACT FORM ========== */

.contact-form-wrap {
    max-width: 640px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    margin-top: 1.25rem;
}

.contact-form label:first-of-type {
    margin-top: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c727a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-consent {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.form-consent input[type="checkbox"] {
    margin-top: 0.35rem;
    flex-shrink: 0;
    accent-color: var(--color-accent);
}

.form-consent label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.contact-form button[type="submit"] {
    margin-top: 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    margin-bottom: 0;
    color: var(--color-text-light);
}

.success-message {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: none;
}

.success-message.visible {
    display: block;
}

/* ========== CASE STUDIES / REFERENZEN ========== */

.case-study {
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.case-study h3 {
    margin-bottom: 0.5rem;
}

.case-study-meta {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.case-study-grid div strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

/* ========== TEAM ========== */

.team-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}

.team-intro img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========== VALUES ========== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.value-item {
    border-top: 3px solid var(--color-accent);
    padding-top: 1.5rem;
}

.value-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ========== CAREER ========== */

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--color-border);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.job-listing {
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.job-listing h3 {
    margin-bottom: 0.5rem;
}

.job-meta {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

/* ========== NEWS / BLOG ========== */

.news-list {
    max-width: var(--max-width);
    margin: 0 auto;
}

.news-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    border-bottom: 1px solid var(--color-border);
    padding: 2.5rem 0;
    align-items: start;
}

.news-item:first-child {
    padding-top: 0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-date {
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    margin-bottom: 0.75rem;
}

.news-item h3 a {
    color: var(--color-primary);
}

.news-item h3 a:hover {
    color: var(--color-accent);
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.article-content h2 {
    margin-top: 2.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

/* ========== LEGAL PAGES ========== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

/* ========== SERVICE DETAIL ========== */

.service-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.service-detail p {
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.benefits-list li::before {
    content: "\2014";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* ========== FOOTER ========== */

.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 1.5rem 2rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.6);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ========== COOKIE BANNER ========== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: rgba(255,255,255,0.85);
    padding: 1.25rem 2rem;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.cookie-banner.visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
}

.cookie-banner a {
    color: var(--color-accent);
}

.cookie-btn {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-body);
    flex-shrink: 0;
    transition: background var(--transition);
}

.cookie-btn:hover {
    background: var(--color-accent-hover);
}

/* ========== ANIMATIONS ========== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }

    .hero h1 { font-size: 2.5rem; }

    .services-grid,
    .process-steps,
    .audience-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .alt-block {
        gap: 2.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .team-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem 1rem;
    }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.5rem; }

    .hero { min-height: 60vh; }
    .hero h1 { font-size: 2rem; }
    .hero .subtitle { font-size: 1rem; }

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1rem 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .main-nav a::after {
        display: none;
    }

    .services-grid,
    .process-steps,
    .audience-grid,
    .values-grid,
    .benefit-list {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .alt-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .alt-block.reversed .alt-block-image,
    .alt-block.reversed .alt-block-text {
        order: unset;
    }

    .alt-block-image img {
        height: 260px;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero {
        padding: 3.5rem 1rem 3rem;
    }

    .testimonial-block blockquote {
        font-size: 1.25rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}
