/*
Theme Name: FWN Media
Theme URI: https://fwn-media.de
Author: FWN Media
Author URI: https://fwn-media.de
Description: Custom WordPress Theme für fwn.media - Webdesign Agentur
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: fwn-theme
*/

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #4a9e5c;
    --color-primary-light: #5cb86e;
    --color-primary-dark: #3a8a4a;
    --color-bg-dark: #141414;
    --color-bg-card: #1e1e1e;
    --color-bg-light: #f2f0eb;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #a0a0a0;
    --color-border: #2a2a2a;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.text-green {
    color: var(--color-primary);
}

.text-italic {
    font-style: italic;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74, 158, 92, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1.5px solid var(--color-text-light);
}

.btn-outline:hover {
    background: var(--color-text-light);
    color: var(--color-text-dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-text-dark);
    border: 1.5px solid var(--color-text-dark);
}

.btn-outline-dark:hover {
    background: var(--color-text-dark);
    color: var(--color-text-light);
}

/* === HEADER / NAVIGATION === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-bg-card);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-primary);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Hamburger Menu */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-bg-card);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--color-primary);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Fullscreen Navigation */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-menu {
    text-align: center;
}

.nav-menu a {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    padding: 12px 0;
    color: var(--color-text-light);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.nav-overlay.open .nav-menu a {
    transform: translateY(0);
    opacity: 1;
}

.nav-overlay.open .nav-menu a:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open .nav-menu a:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open .nav-menu a:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.open .nav-menu a:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open .nav-menu a:nth-child(5) { transition-delay: 0.3s; }
.nav-overlay.open .nav-menu a:nth-child(6) { transition-delay: 0.35s; }

.nav-menu a:hover {
    color: var(--color-primary);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero h1 {
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-tagline a {
    color: var(--color-text-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-tagline a:hover {
    color: var(--color-primary);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* === SERVICES / LEISTUNGEN === */
.section-services {
    padding: var(--section-padding);
}

.section-title {
    margin-bottom: 48px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.services-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.services-tabs button {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.services-tabs button.active,
.services-tabs button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(74, 158, 92, 0.1);
}

.services-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 350px;
    max-width: 400px;
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.service-card-content p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* === ABOUT SECTION (Gute Website) === */
.section-about-text {
    padding: var(--section-padding);
}

.about-text-content {
    max-width: 700px;
}

.about-text-content h2 {
    margin-bottom: 20px;
}

.about-text-content p {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-text-content strong {
    color: var(--color-text-light);
}

/* === STATS === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* === PASSION SECTION (Webdesign aus Leidenschaft) === */
.section-passion {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.passion-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.passion-image-wrapper img {
    width: 100%;
    height: auto;
}

/* === TARGET AUDIENCE (Webdesign Agentur für...) === */
.section-audience {
    padding: var(--section-padding);
    text-align: center;
}

.audience-intro {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.audience-title {
    margin-bottom: 48px;
}

.audience-title .text-italic {
    color: var(--color-primary);
}

.audience-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.audience-item {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-light);
    position: relative;
}

.audience-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.15;
    z-index: -1;
}

.audience-more {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* === PROJECTS === */
.section-projects {
    padding: var(--section-padding);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.projects-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.projects-carousel::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 600px;
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    position: relative;
}

.project-card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.project-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-card-tags span {
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* === TESTIMONIAL === */
.section-testimonial {
    padding: var(--section-padding);
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* === TEAM === */
.section-team {
    padding: var(--section-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

.team-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.team-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    font-size: 1rem;
    line-height: 1.7;
}

/* === FAQ === */
.section-faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === CTA SECTION === */
.section-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta .cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-cta .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.section-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 32px;
}

.cta-title .text-green {
    color: var(--color-primary);
}

/* === FOOTER === */
.site-footer {
    padding: 48px 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-text-light);
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* === BENTO GRID (Services Overview) === */
.section-bento {
    padding: var(--section-padding);
    background: var(--color-bg-light);
    color: var(--color-text-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
}

.bento-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.bento-item--dark {
    background: var(--color-bg-dark);
    color: white;
}

.bento-item--green {
    background: var(--color-primary);
    color: white;
}

.bento-item--large {
    grid-row: span 2;
}

.bento-item--wide {
    grid-column: span 2;
}

.bento-label {
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.bento-label h3 {
    font-size: 1.5rem;
    line-height: 1.2;
}

.bento-label p {
    font-size: 0.85rem;
    color: inherit;
    opacity: 0.8;
    margin-top: 4px;
}

/* === SEO PAGE === */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.page-hero-content .text-green {
    color: var(--color-primary);
}

/* === BLOG / WISSENSWELT === */
.section-blog {
    padding: var(--section-padding);
}

.blog-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.blog-intro p {
    margin-top: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* === ABOUT PAGE === */
.about-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.about-hero-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-primary-light);
}

.about-hero-image img {
    width: 100%;
    height: auto;
}

/* === CONTACT FORM === */
.section-contact {
    padding: var(--section-padding);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--color-border);
    background: var(--color-bg-card);
    color: var(--color-text-light);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
}

.form-message {
    text-align: center;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-top: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(74, 158, 92, 0.2);
    color: var(--color-primary);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card {
        min-width: 450px;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item--wide {
        grid-column: span 1;
    }

    .bento-item--large {
        grid-row: span 1;
    }

    .project-card {
        min-width: 300px;
    }

    .service-card {
        min-width: 280px;
    }

    .hero {
        min-height: auto;
        padding: 140px 24px 60px;
    }

    .audience-items {
        gap: 24px;
    }

    .audience-item {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .service-card {
        min-width: 260px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
