/*
Theme Name: Meridian Agency
Theme URI: https://foenix.ai/?from=wpgen
Author: Foenix AI
Author URI: https://foenix.ai/?from=wpgen
Description: A clean, modern professional theme for Meridian Agency digital marketing.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meridian-agency
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a2e;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #2563EB; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #1d4ed8; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section--alt { background-color: #f8fafc; }
.section--dark { background-color: #0f172a; color: #e2e8f0; }
.section--blue { background-color: #2563EB; color: #ffffff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.site-logo__wordmark {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1;
}

.site-logo__wordmark span {
    color: #2563EB;
}

.site-logo__tagline {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

/* Navigation */
.site-nav { display: flex; align-items: center; }

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.site-nav ul li a:hover,
.site-nav ul li.current-menu-item a,
.site-nav ul li.current_page_item a {
    background: #eff6ff;
    color: #2563EB;
}

.site-nav .nav-cta a {
    background: #2563EB;
    color: #ffffff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
}

.site-nav .nav-cta a:hover {
    background: #1d4ed8 !important;
    color: #ffffff !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f172a;
    transition: transform 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 60%);
    overflow: hidden;
    position: relative;
}

.hero__before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero__content { max-width: 700px; position: relative; z-index: 1; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #2563EB;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero__title { margin-bottom: 1.5rem; }

.hero__title .highlight {
    color: #2563EB;
    position: relative;
}

.hero__description {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn--primary {
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
}

.btn--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}

.btn--outline {
    background: transparent;
    color: #2563EB;
    border-color: #2563EB;
}

.btn--outline:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.btn--white {
    background: #ffffff;
    color: #2563EB;
    border-color: #ffffff;
}

.btn--white:hover {
    background: #f0f7ff;
    color: #1d4ed8;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { padding: 3rem 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat__label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: #64748b; font-size: 1.05rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.25s ease;
}

.service-card:hover {
    border-color: #2563EB;
    box-shadow: 0 8px 30px rgba(37,99,235,0.12);
    transform: translateY(-3px);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #0f172a;
}

.service-card__desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 { color: #ffffff; margin-bottom: 1rem; }
.page-hero p { color: #93c5fd; font-size: 1.1rem; }

.services-detail {
    padding: 5rem 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail-item:last-child { border-bottom: none; margin-bottom: 0; }

.service-detail-item:nth-child(even) .service-detail__content { order: 2; }
.service-detail-item:nth-child(even) .service-detail__visual { order: 1; }

.service-detail__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563EB;
    background: #eff6ff;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-detail__visual {
    background-color: #f8fafc;
    border-radius: 16px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.service-features { margin-top: 1.5rem; }

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.service-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #2563EB;
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-step__num {
    width: 60px;
    height: 60px;
    background: #2563EB;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 8px #ffffff, 0 0 0 10px #dbeafe;
}

.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: #64748b; }

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 4rem 0;
}

.posts-grid {
    display: grid;
    gap: 2rem;
}

.post-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.post-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.post-card__body { padding: 1.75rem; }

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.post-card__cat {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2563EB;
    background: #eff6ff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.post-card__date {
    font-size: 0.8rem;
    color: #94a3b8;
}

.post-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.post-card__title a { color: #0f172a; }
.post-card__title a:hover { color: #2563EB; }

.post-card__excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #94a3b8;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563EB;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more:hover { color: #1d4ed8; }

/* Single post */
.single-post { padding: 4rem 0; }

.post-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.post-header .post-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #64748b;
}

.post-content { font-size: 1.05rem; line-height: 1.85; }
.post-content h2, .post-content h3 { margin-top: 2rem; margin-bottom: 1rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content ul li { list-style: disc; margin-bottom: 0.4rem; }
.post-content ol li { list-style: decimal; margin-bottom: 0.4rem; }
.post-content blockquote {
    border-left: 4px solid #2563EB;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: #475569;
}

/* Sidebar */
.sidebar { padding-top: 0; }

.widget {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.widget ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: #374151; }
.widget ul li a:hover { color: #2563EB; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 4rem 0;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: #64748b; margin-bottom: 2rem; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item__text strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.contact-info-item__text span {
    font-size: 0.875rem;
    color: #64748b;
}

.contact-form {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0f172a;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 100%);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 { color: #ffffff; margin-bottom: 1rem; }
.cta-section p { color: #bfdbfe; font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-section .btn--white:hover { color: #1d4ed8; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}

.footer-brand .site-logo__wordmark { color: #ffffff; }
.footer-brand .site-logo__tagline { color: #475569; }
.footer-brand p { font-size: 0.875rem; color: #64748b; margin-top: 1rem; line-height: 1.7; }

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
    font-size: 0.875rem;
    color: #64748b;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: #93c5fd; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.footer-bottom p { margin: 0; color: #475569; }

.footer-bottom a { color: #475569; }
.footer-bottom a:hover { color: #93c5fd; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
}

/* ============================================================
   404
   ============================================================ */
.error-404 {
    text-align: center;
    padding: 8rem 0;
}

.error-404 .error-code {
    font-size: 8rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 h1 { margin-bottom: 1rem; }
.error-404 p { color: #64748b; margin-bottom: 2rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-card__quote {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card__name { font-weight: 700; font-size: 0.9rem; color: #0f172a; }
.testimonial-card__role { font-size: 0.8rem; color: #94a3b8; }

.stars { color: #f59e0b; font-size: 0.875rem; margin-bottom: 0.75rem; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.about-strip__image {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-strip__image::after {
    content: 'M';
    font-size: 12rem;
    font-weight: 900;
    color: rgba(37,99,235,0.08);
    position: absolute;
}

.about-strip__badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #2563EB;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.about-strip__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 0.75rem;
}

.value-list { margin-top: 1.5rem; }
.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #374151;
}
.value-list li::before {
    content: '→';
    color: #2563EB;
    font-weight: 700;
    margin-top: 1px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    font-size: 0.8rem;
    color: #94a3b8;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a { color: #64748b; }
.breadcrumbs a:hover { color: #2563EB; }
.breadcrumbs span { color: #94a3b8; }

/* ============================================================
   ARCHIVE / CATEGORY
   ============================================================ */
.archive-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 2.5rem 0;
    margin-bottom: 0;
}

.archive-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.archive-header p { color: #64748b; font-size: 0.95rem; margin: 0; }

/* ============================================================
   SEARCH FORM
   ============================================================ */
.search-form {
    display: flex;
    gap: 0;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #0f172a;
    outline: none;
}

.search-form button {
    padding: 0 1.1rem;
    background: #2563EB;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}

.search-form button:hover { background: #1d4ed8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .service-detail-item { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        margin-bottom: 3rem; 
        padding-bottom: 3rem;
    }
    .service-detail-item:nth-child(even) .service-detail__content { order: 0; }
    .service-detail-item:nth-child(even) .service-detail__visual { order: 0; }
    .service-detail__visual { height: 280px; }
    
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .about-strip { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 3.5rem 0; }
    .hero { padding: 4rem 0 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .form-row { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }

    .site-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        padding: 1rem;
    }

    .site-nav.is-open { display: block; }
    .site-nav ul { flex-direction: column; gap: 0.25rem; }
    .site-nav ul li a { border-radius: 6px; }

    .hero__actions { flex-direction: column; }
    .btn { justify-content: center; }
    .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .service-detail__visual { height: 200px; }
    .service-detail-item h2 { font-size: 1.5rem; }
    .service-detail-item p { font-size: 0.95rem; }
}