/* 
 * Norby Yazılım - Design System & Modern UI
 * %100 Mobil Uyumlu Kurumsal Web & E-Ticaret Altyapısı
 */

:root {
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --color-primary: #0066ff;
    --color-primary-dark: #0044cc;
    --color-primary-light: #e6f0ff;
    --color-accent: #00d2ff;
    
    --color-dark: #0b1329;
    --color-gray-900: #0f172a;
    --color-gray-700: #1e293b;
    --color-gray-500: #475569;
    --color-gray-300: #cbd5e1;
    --color-gray-100: #f8fafc;
    --color-white: #ffffff;
    
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --shadow-hover: 0 20px 45px rgba(0, 102, 255, 0.18);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-900);
    background-color: #f8fafc;
    line-height: 1.6;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== TOP ANNOUNCEMENT BAR ==================== */
.top-bar {
    background: linear-gradient(90deg, #005566 0%, #007788 50%, #005566 100%);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-bar-left .badge-gift {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-right a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a:hover {
    color: var(--color-white);
}

/* ==================== NAVBAR & MOBILE DRAWER ==================== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    overflow: visible !important;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    position: relative;
    overflow: visible !important;
}

.brand-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    overflow: visible !important;
}

.nav-item {
    position: relative;
    padding: 28px 0;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--color-primary);
}

.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 520px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    border: 1px solid #e2e8f0;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    z-index: 99999;
    transition: all 0.25s ease;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f1f5f9;
}

.dropdown-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dropdown-title {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--color-dark);
}

.dropdown-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--color-gray-500);
    line-height: 1.3;
}

.mobile-toggle-btn {
    display: none;
    background: #0066ff;
    color: white;
    border: none;
    font-size: 1.25rem;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 102, 255, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-success {
    background: var(--color-success);
    color: var(--color-white);
}

.btn-danger {
    background: var(--color-danger);
    color: var(--color-white);
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 80px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.12) 0%, rgba(255,255,255,0) 60%),
                radial-gradient(circle at 10% 80%, rgba(0, 102, 255, 0.08) 0%, rgba(255,255,255,0) 60%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.08);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* HERO MOCKUP GRAPHIC */
.hero-mockup {
    position: relative;
}

.hero-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: var(--transition);
}

.mockup-header {
    background: #0f172a;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.mockup-url-bar {
    background: rgba(255,255,255,0.1);
    color: #cbd5e1;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-left: 12px;
}

.mockup-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ==================== PRICING PACKAGES & HIGH-CONTRAST STYLING ==================== */
.pricing-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.section-desc {
    color: #475569;
    font-size: 1.05rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid #cbd5e1;
    padding: 32px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2.5px solid #0066ff !important;
    box-shadow: 0 14px 38px rgba(0, 102, 255, 0.28), 0 0 25px rgba(0, 210, 255, 0.25) !important;
    animation: popularGlowPulse 3s ease-in-out infinite alternate !important;
    transform: scale(1.02);
    z-index: 2;
}

@keyframes popularGlowPulse {
    0% {
        box-shadow: 0 12px 35px rgba(0, 102, 255, 0.25), 0 0 15px rgba(0, 210, 255, 0.2);
        border-color: #0066ff !important;
    }
    50% {
        box-shadow: 0 20px 50px rgba(0, 102, 255, 0.45), 0 0 35px rgba(16, 185, 129, 0.4);
        border-color: #38bdf8 !important;
    }
    100% {
        box-shadow: 0 14px 40px rgba(0, 102, 255, 0.3), 0 0 20px rgba(0, 102, 255, 0.3);
        border-color: #0066ff !important;
    }
}

.popular-badge {
    position: absolute !important;
    top: -16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #0055ff, #00d2ff, #10b981) !important;
    background-size: 200% 200% !important;
    animation: popularBadgeGradient 3s ease infinite !important;
    color: #ffffff !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    padding: 7px 20px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.45) !important;
    white-space: nowrap !important;
    z-index: 10 !important;
}

@keyframes popularBadgeGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.plan-name {
    font-family: var(--font-heading) !important;
    font-size: 1.55rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 4px !important;
}

.plan-badge {
    font-size: 0.84rem !important;
    color: #0066ff !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.plan-price { margin-bottom: 16px; }
.price-amount { font-family: var(--font-heading); font-size: 2.7rem; font-weight: 800; color: #0f172a; }
.price-currency { font-size: 1.5rem; }
.price-period { font-size: 0.88rem; color: #334155; font-weight: 700; }
.price-old { text-decoration: line-through; color: #475569; font-size: 0.95rem; margin-right: 6px; font-weight: 700; }

.plan-desc {
    font-size: 0.88rem !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    background: #f1f5f9 !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    line-height: 1.45 !important;
}

.plan-features {
    border-top: 1px solid #e2e8f0;
    padding-top: 18px;
    margin-bottom: 26px;
    flex-grow: 1;
}

.plan-features li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 0.88rem !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    line-height: 1.45 !important;
    word-break: break-word !important;
}

.plan-features li i {
    color: #10b981 !important;
    font-size: 1.05rem !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* ==================== BILGIKURUMSAL DESIGN SHOWCASE ==================== */
.bk-filter-btn {
    background: #2563eb !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 14px 36px !important;
    border-radius: 10px !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.bk-filter-btn:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px) !important;
}

.bk-design-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
}

.bk-design-card {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.bk-design-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-4px) !important;
}

.bk-card-img-wrap {
    height: 260px !important;
    width: 100% !important;
    overflow: hidden !important;
    background: #0f172a !important;
    position: relative !important;
    border-bottom: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bk-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}

.bk-design-card:hover .bk-card-img-wrap img {
    transform: scale(1.04) !important;
}

.bk-hover-overlay {
    position: absolute !important;
    top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
    background: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(2px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.25s ease !important;
    z-index: 10 !important;
}

.bk-design-card:hover .bk-hover-overlay {
    opacity: 1 !important;
    visibility: visible !important;
}

.bk-hover-btn {
    background: #ffffff !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.bk-card-body {
    padding: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    background: #ffffff !important;
}

.bk-card-title {
    font-family: var(--font-heading) !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 4px !important;
}

.bk-card-subtitle {
    font-size: 0.88rem !important;
    color: #475569 !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.bk-card-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: auto !important;
}

.btn-demo-talep {
    background: #047857 !important;
    border: 1.5px solid #047857 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    text-align: center !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 3px 10px rgba(4, 120, 87, 0.25) !important;
    transition: all 0.2s ease !important;
}

.btn-demo-talep:hover {
    background: #065f46 !important;
}

.btn-onizleme {
    background: #1d4ed8 !important;
    border: 1.5px solid #1d4ed8 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 3px 10px rgba(29, 78, 216, 0.25) !important;
    transition: all 0.2s ease !important;
}

.btn-onizleme:hover {
    background: #1e40af !important;
}

/* ==================== HIGH-CONVERTING PREMIUM CTA BANNER ==================== */
.cta-banner-home {
    background: linear-gradient(135deg, #0b1329 0%, #0052cc 60%, #0066ff 100%) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    color: #ffffff !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    margin-top: 60px !important;
    margin-bottom: 50px !important;
}

.cta-banner-title {
    font-family: var(--font-heading) !important;
    font-size: 2.3rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.cta-banner-desc {
    font-size: 1.08rem !important;
    color: #e2e8f0 !important;
    max-width: 650px !important;
    margin: 0 auto 28px !important;
    line-height: 1.6 !important;
}

.cta-banner-btn {
    background: #047857 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    padding: 16px 36px !important;
    border-radius: 12px !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.cta-banner-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 35px rgba(16, 185, 129, 0.5) !important;
}

/* ==================== CLIENT REFERANS KARTLARI ==================== */
.client-ref-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
}

.client-ref-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    color: inherit !important;
    height: 220px !important;
}

.ref-logo-area {
    height: 140px !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.ref-logo-area img {
    max-height: 75px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    aspect-ratio: 160/60 !important;
    object-fit: contain !important;
}

.ref-info-area {
    padding: 14px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.ref-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
}

/* INFINITE HORIZONTAL LOGO MARQUEE SLIDER */
.logo-marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    padding: 15px 0;
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 22s linear infinite;
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

.logo-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 100px;
    padding: 15px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-marquee-item:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: #0066ff;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.12);
}

.logo-marquee-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    aspect-ratio: 160/60;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.logo-marquee-item:hover img {
    filter: grayscale(0%);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.ref-badge {
    background: #eff6ff !important;
    color: #0066ff !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #070d18;
    color: #cbd5e1;
    padding: 70px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 330px;
}

.footer-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 22px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 500;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.footer-contact-card .contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0, 102, 255, 0.15);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer-bottom-bar {
    background: #050912;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    padding: 20px 0;
    font-size: 0.88rem;
}

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

/* ==================== MODALS ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 41, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 16px;
}

.modal.active { display: flex !important; opacity: 1; visibility: visible; }

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 1.5rem;
    color: #475569;
    cursor: pointer;
}

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    outline: none;
    color: #0f172a;
}

/* ==================== 90%+ MOBILE PERFORMANCE & USABILITY ENGINE ==================== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

/* PREVENT LAYOUT SHIFT & HORIZONTAL SCROLL ON ALL MOBILE PHONES */
img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto;
}

/* MINIMUM TOUCH TARGETS FOR LIGHTHOUSE 90%+ SCORE */
button, input, select, textarea, .btn, .nav-link, .dropdown-item, .footer-links a, .social-icon {
    touch-action: manipulation;
}

/* RESPONSIVE TABLE CONTAINER FOR MOBILE AUDIT TOOLS */
.table-responsive {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 20px;
}

/* 100% PERFECT MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .navbar .container {
        height: 70px;
    }
    .mobile-toggle-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .btn-header-offer {
        display: none;
    }
    
    .nav-header-mobile {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 16px;
        margin-bottom: 8px;
        border-bottom: 2px solid #e2e8f0;
    }
    .nav-header-mobile img {
        max-height: 40px;
        width: auto;
    }
    .mobile-close-btn {
        background: #fee2e2;
        color: #ef4444;
        border: 1px solid #fca5a5;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .mobile-close-btn:hover {
        background: #ef4444;
        color: #ffffff;
    }
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 88% !important;
        max-width: 360px !important;
        height: 100vh !important;
        background: #ffffff !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px 20px 40px !important;
        box-shadow: 10px 0 50px rgba(15, 23, 42, 0.35) !important;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 1000000 !important;
        overflow-y: auto !important;
        gap: 0 !important;
    }
    .nav-menu.mobile-open {
        left: 0 !important;
    }
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(15, 23, 42, 0.75) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
        z-index: 999999 !important;
        display: none;
    }
    .mobile-menu-overlay.active {
        display: block !important;
    }
    .nav-item {
        width: 100% !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .nav-link {
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 6px 0 !important;
        text-decoration: none !important;
    }
    .nav-link:hover, .nav-item.active > .nav-link {
        color: #0066ff !important;
    }
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: 1px solid #e2e8f0 !important;
        display: none !important;
        flex-direction: column !important;
        padding: 6px 10px !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        margin-top: 8px !important;
    }
    .nav-item.has-dropdown.mobile-expanded .dropdown-menu {
        display: flex !important;
    }
    .nav-item.has-dropdown > a i {
        transition: transform 0.3s ease;
        color: #0066ff !important;
    }
    .nav-item.has-dropdown.mobile-expanded > a i {
        transform: rotate(180deg);
    }
    .dropdown-desc {
        display: none !important;
    }
    .dropdown-title {
        color: #0f172a !important;
        font-weight: 700 !important;
        font-size: 0.92rem !important;
    }
    .dropdown-item {
        padding: 10px 12px !important;
        border-radius: 8px !important;
        margin-bottom: 4px !important;
        color: #1e293b !important;
        text-decoration: none !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    .hero-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .hero-title { font-size: 2.2rem !important; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
    .bk-design-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    .client-ref-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; }
    .cta-banner-home { padding: 36px 20px !important; margin-top: 40px !important; margin-bottom: 30px !important; }
    .cta-banner-title { font-size: 1.7rem !important; }
}

@media (min-width: 993px) {
    .nav-header-mobile {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .container { padding: 0 16px !important; }
    .hero-title { font-size: 1.85rem !important; line-height: 1.3 !important; }
    .hero-subtitle { font-size: 0.95rem !important; }
    .hero-buttons { flex-direction: column !important; width: 100% !important; }
    .hero-buttons .btn, .hero-buttons a { width: 100% !important; justify-content: center !important; }
    .pricing-grid { grid-template-columns: 1fr !important; }
    .bk-design-grid { grid-template-columns: 1fr !important; }
    .testimonials-grid { grid-template-columns: 1fr !important; }
    .client-ref-grid { grid-template-columns: 1fr !important; }
    .bk-card-actions { grid-template-columns: 1fr !important; }
    .top-bar-right { display: none !important; }
    .pricing-card { padding: 24px 16px !important; }
    .plan-name { font-size: 1.4rem !important; }
    .price-amount { font-size: 2.3rem !important; }
}

/* ==========================================================================
   INTERACTIVE PROCESS METHODOLOGY (SÜREÇ NASIL İŞLİYOR) HIGH-IMPACT EFFECTS
   ========================================================================== */
.process-grid-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.process-grid-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #0066ff 0%, #38bdf8 50%, #10b981 100%);
    z-index: 1;
    opacity: 0.35;
    border-radius: 4px;
}

.process-step-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066ff, #38bdf8);
    opacity: 0.7;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.process-step-card.step-success::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.process-step-card:hover {
    transform: translateY(-12px);
    border-color: #0066ff;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.14);
}

.process-step-card.step-success:hover {
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.16);
}

.process-step-card:hover::before {
    height: 6px;
    opacity: 1;
}

.process-step-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff, #0044cc);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.12), 0 8px 20px rgba(0, 102, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.process-step-card.step-success .process-step-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12), 0 8px 20px rgba(16, 185, 129, 0.25);
}

.process-step-card:hover .process-step-badge {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 0 0 10px rgba(0, 102, 255, 0.2), 0 12px 28px rgba(0, 102, 255, 0.35);
}

.process-step-card.step-success:hover .process-step-badge {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.2), 0 12px 28px rgba(16, 185, 129, 0.35);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-step-card:hover .process-step-title {
    color: #0066ff;
}

.process-step-card.step-success:hover .process-step-title {
    color: #10b981;
}

.process-step-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .process-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-grid-container::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-grid-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RESPONSIVE COMPONENT ENGINE (BAYİLİK, HAKKIMIZDA, ANASAYFA, BLOG)
   ========================================================================== */

/* BAYİLİK SECTION STYLES */
.bayilik-hero {
    background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}
.bayilik-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.bayilik-hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.bayilik-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}
.bayilik-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.bayilik-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.bayilik-form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.bayilik-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* HAKKIMIZDA SECTION STYLES */
.about-hero {
    background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}
.about-hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-features-container {
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    padding: 48px;
    text-align: center;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

/* ANASAYFA RESPONSIVE GRIDS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* BLOG SECTION STYLES */
.blog-hero {
    background: linear-gradient(135deg, #0b1329 0%, #0f172a 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
}
.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}
.blog-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
}

.blog-search-wrap {
    max-width: 600px;
    margin: 30px auto 0;
    position: relative;
}
.blog-search-input {
    width: 100%;
    padding: 16px 24px 16px 52px;
    border-radius: 50px;
    border: 1px solid #334155;
    background: rgba(255,255,255,0.06);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}
.blog-search-input:focus {
    background: rgba(255,255,255,0.12);
    border-color: #0066ff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}
.blog-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.12);
    border-color: #0066ff;
}
.blog-card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.08);
}
.blog-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 14px;
}
.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-category-badge {
    background: #eff6ff;
    color: #0066ff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    border: 1px solid #dbeafe;
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}
.blog-read-btn {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #0066ff;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    margin-top: auto;
}
.blog-read-btn:hover {
    background: #0066ff;
    border-color: #0066ff;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.3);
}
.blog-read-btn i {
    transition: transform 0.3s ease;
}
.blog-read-btn:hover i {
    transform: translateX(4px);
}

.category-btn {
    padding: 10px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
    background: #ffffff !important;
    transition: all 0.25s ease !important;
    cursor: pointer;
}
.category-btn:hover, .category-btn.active {
    background: #0066ff !important;
    border-color: #0066ff !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25) !important;
}

/* MEDIA QUERIES FOR PERFECT TABLET & MOBILE RESPONSIVENESS */
@media (max-width: 992px) {
    .bayilik-hero h1, .about-hero h1, .blog-hero h1 {
        font-size: 2.3rem !important;
    }
    .bayilik-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .about-main-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .about-features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    .blog-detail-layout, .service-detail-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .featured-blog-card {
        grid-template-columns: 1fr !important;
    }
    .services-main-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    .process-grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    .process-grid-container::before {
        display: none !important;
    }
    .public-audit-form {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .public-audit-form > div {
        grid-column: span 1 !important;
    }
    .audit-metrics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

@media (max-width: 768px) {
    .mockup-img-wrap img {
        height: auto !important;
        max-height: 280px !important;
        object-fit: contain !important;
    }
    .hero-card, .hero-mockup {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        border-radius: 16px !important;
    }
    .contact-img-wrap img, .about-img-wrap img, .bk-card-img-wrap img, .service-detail-img img {
        width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
        object-fit: contain !important;
    }
    .contact-form-grid, .service-card-actions {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .audit-metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {
    .bayilik-hero, .about-hero, .blog-hero {
        padding: 50px 0 !important;
    }
    .bayilik-hero h1, .about-hero h1, .blog-hero h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    .bayilik-hero p, .about-hero p, .blog-hero p {
        font-size: 0.95rem !important;
    }
    .bayilik-grid {
        grid-template-columns: 1fr !important;
    }
    .bayilik-form-card {
        padding: 24px 16px !important;
    }
    .bayilik-form-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .about-mission-grid, .about-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .about-features-container {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }
    .about-features-container h3 {
        font-size: 1.5rem !important;
        margin-bottom: 24px !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .process-grid-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .btn-header-offer {
        display: none !important;
    }
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }
}


