/* ===========================================================================
   Bilgisayar Hastanesi - Ana Stil
   Renkler: kirmizi (#E2231A) / antrasit (#22252b) / beyaz
   =========================================================================== */

:root {
    --red: #E2231A;
    --red-dark: #b81812;
    --ink: #22252b;
    --ink-soft: #3a3f47;
    --gray: #58595B;
    --gray-light: #8b9099;
    --bg: #ffffff;
    --bg-alt: #f4f6f9;
    --line: #e6e9ee;
    --white: #ffffff;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 10px 35px rgba(20, 24, 31, 0.08);
    --shadow-lg: 0 20px 50px rgba(20, 24, 31, 0.14);
    --container: 1200px;
    --t: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }

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

/* Ekran okuyucular icin gizli (SEO H1 vb.) - gorsel olarak gizli ama erisilebilir */
.visually-hidden {
    position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

h1, h2, h3 { line-height: 1.2; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

/* SVG ikon temel */
.icon, .ico, .ico-lg, .ico-feature, .ico-service { display: inline-block; vertical-align: middle; }
.ico { width: 18px; height: 18px; }
.ico-lg { width: 28px; height: 28px; }
.ico-feature { width: 30px; height: 30px; }
.ico-service { width: 30px; height: 30px; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    border: 2px solid transparent; transition: all var(--t); white-space: nowrap;
}
.btn .ico { width: 18px; height: 18px; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(226,35,26,.3); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Ust cubuk ---------- */
.topbar { background: var(--ink); color: #c9ccd2; font-size: 0.85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-sep { display: inline-flex; align-items: center; gap: 6px; }
.topbar .ico { width: 15px; height: 15px; color: var(--red); }
.topbar-right .ico { color: var(--red); }
.topbar-right span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header / Menu ---------- */
.site-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 14px rgba(0,0,0,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.logo img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 10px 14px; font-weight: 600; color: var(--ink); border-radius: 8px; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--red); }

/* Dropdown */
.has-dropdown > a::after { content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 290px;
    background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    padding: 8px; opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all var(--t); border-top: 3px solid var(--red);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.92rem; font-weight: 500; }
.dropdown li a:hover { background: var(--bg-alt); color: var(--red); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }

/* ---------- Hero Slider ---------- */
.hero-slider { position: relative; overflow: hidden; }
.slides { position: relative; height: clamp(420px, 60vh, 620px); }
.slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    display: flex; align-items: center; opacity: 0; visibility: hidden;
    transition: opacity .8s ease;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-content { max-width: 640px; color: #fff; }
.slide-content .slide-title { color: #fff; margin: 14px 0 16px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; font-size: clamp(1.9rem, 4vw, 3rem); }
.slide-content p { font-size: 1.15rem; color: #e8eaee; margin-bottom: 26px; }
.slide-tag { display: inline-block; background: var(--red); color: #fff; padding: 6px 16px; border-radius: 40px; font-size: 0.8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.15); color: #fff; font-size: 1.3rem; backdrop-filter: blur(4px);
    transition: background var(--t);
}
.slider-btn:hover { background: var(--red); }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.slider-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; transition: background var(--t); }
.slider-dots button.active { background: var(--red); border-color: var(--red); }

/* ---------- Ozellik seridi ---------- */
.features-strip { background: var(--ink); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 26px 20px; }
.feature { display: flex; align-items: center; gap: 14px; color: #fff; padding: 6px 14px; }
.feature + .feature { border-left: 1px solid rgba(255,255,255,.1); }
.feature .ico-feature { color: var(--red); flex-shrink: 0; }
.feature strong { display: block; font-size: 1rem; }
.feature span { font-size: 0.85rem; color: #aeb3bd; }

/* ---------- Bolum genel ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.eyebrow { display: inline-block; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 0.82rem; margin-bottom: 12px; }
.section-head p { color: var(--gray); font-size: 1.05rem; margin-top: 12px; }
.center-action { text-align: center; margin-top: 44px; }

/* ---------- Hizmet kartlari ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 28px; transition: all var(--t); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: rgba(226,35,26,.08); color: var(--red); margin-bottom: 18px; transition: all var(--t); }
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-card h2, .service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }
.service-more { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 600; font-size: 0.9rem; }
.service-more .ico { transition: transform var(--t); }
.service-card:hover .service-more .ico { transform: translateX(4px); }

/* ---------- Hakkimizda split ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -22px; right: -22px; background: var(--red); color: #fff; border-radius: var(--radius); padding: 18px 26px; text-align: center; box-shadow: var(--shadow-lg); }
.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span { font-size: 0.82rem; opacity: .9; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }

.check-list { margin: 22px 0 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; color: var(--ink-soft); }
.check-list .ico { color: var(--red); flex-shrink: 0; margin-top: 4px; }
.check-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 30px; }

/* ---------- Duyuru kartlari ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.news-thumb { display: block; height: 200px; background: var(--bg-alt); overflow: hidden; position: relative; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-thumb img { transform: scale(1.06); }
.news-thumb-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(226,35,26,.06); }
.news-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.news-body time { color: var(--gray-light); font-size: 0.84rem; font-weight: 600; }
.news-body h2, .news-body h3 { font-size: 1.18rem; margin: 8px 0 10px; }
.news-body h2 a:hover, .news-body h3 a:hover { color: var(--red); }
.news-body p { color: var(--gray); font-size: 0.94rem; margin-bottom: 16px; flex: 1; }
.news-more { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 600; font-size: 0.9rem; }

/* ---------- Referanslar ---------- */
.ref-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.ref-item {
    display: flex; align-items: center; justify-content: center; height: 120px; padding: 20px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    transition: all var(--t); text-align: center;
}
.ref-item img { max-height: 70px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .7; transition: all var(--t); }
.ref-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.ref-item:hover img { filter: grayscale(0); opacity: 1; }
.ref-name { font-weight: 700; color: var(--ink-soft); font-size: 1.05rem; }
a.ref-item:hover .ref-name { color: var(--red); }

/* ---------- Sayfa hero (ic sayfalar) ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(226,35,26,.25), transparent 70%); }
.page-hero h1 { color: #fff; margin-bottom: 10px; position: relative; }
.page-hero p { color: #b8bdc7; max-width: 640px; position: relative; }
.page-hero-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 16px; background: var(--red); color: #fff; margin-bottom: 18px; }
.breadcrumb { font-size: 0.88rem; margin-bottom: 18px; color: #9aa0ab; position: relative; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; color: #5f6671; }
.breadcrumb strong { color: var(--red); font-weight: 600; }

/* ---------- Hizmet detay ---------- */
.service-detail { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.service-main .lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 24px; }
.service-main h2 { margin: 30px 0 12px; font-size: 1.25rem; }
.service-main h2:first-of-type { margin-top: 0; }
.service-main p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.8; }

/* SSS (FAQ) */
.faq { margin: 8px 0 10px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 18px 44px 18px 0; position: relative;
    font-weight: 600; font-size: 1.05rem; color: var(--ink); transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; font-weight: 400; color: var(--red); transition: transform var(--t);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--red); }
.faq-answer { padding: 0 44px 20px 0; color: var(--gray); line-height: 1.8; }
.service-cta-box { margin-top: 36px; background: var(--bg-alt); border-radius: var(--radius); padding: 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.service-cta-box h3 { margin-bottom: 6px; }
.service-cta-box p { color: var(--gray); }
.service-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.service-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.side-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.side-box h3 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.side-services li a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); }
.side-services .ico { color: var(--red); flex-shrink: 0; }
.side-services li a:hover { color: var(--red); }
.side-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--ink-soft); }
.side-contact .ico { color: var(--red); }
.side-contact .btn { margin-top: 12px; }

/* ---------- Makale (duyuru detay) ---------- */
.article-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.article-cover { width: 100%; border-radius: var(--radius); margin-bottom: 26px; box-shadow: var(--shadow); }
.article-body p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; }
.article-body .btn { margin-top: 16px; }
.post-meta { display: inline-flex; align-items: center; gap: 7px; color: #b8bdc7 !important; }
.post-meta .ico { color: var(--red); }

/* ---------- Neden biz ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: all var(--t); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card .ico-feature { color: var(--red); margin-bottom: 14px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 0.95rem; }

/* ---------- Iletisim ---------- */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 50px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-ico { flex-shrink: 0; width: 54px; height: 54px; border-radius: 14px; background: rgba(226,35,26,.08); color: var(--red); display: flex; align-items: center; justify-content: center; }
.contact-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-item p { color: var(--gray); }
.contact-item a:hover { color: var(--red); }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: 24px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.96rem; transition: border-color var(--t); background: #fff; color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.alert { padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: 0.95rem; }
.alert-success { background: #ecfdf3; color: #15803d; border: 1px solid #abefc6; display: flex; align-items: center; gap: 10px; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-error ul { padding-left: 18px; list-style: disc; }

/* Harita */
.map-section { line-height: 0; }
.map-section iframe { display: block; filter: grayscale(.15); }

/* ---------- CTA serit ---------- */
.cta-band { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding: 50px 20px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #aeb3bd; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer-col h3 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a:hover { color: var(--red); }
.footer-logo { margin-bottom: 18px; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background var(--t); }
.footer-social a:hover { background: var(--red); }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 0.92rem; }
.footer-contact .ico { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 0.85rem; flex-wrap: wrap; }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 90; transition: transform var(--t); }
.whatsapp-float:hover { transform: scale(1.08); }

/* Empty / error */
.empty-state { text-align: center; padding: 70px 20px; color: var(--gray); }
.empty-state .ico-lg { color: var(--red); margin-bottom: 16px; width: 48px; height: 48px; }
.error-page { text-align: center; }
.error-code { font-size: clamp(5rem, 16vw, 10rem); font-weight: 800; color: var(--red); line-height: 1; display: block; }
.error-page p { color: var(--gray); max-width: 520px; margin: 12px auto 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .services-grid, .news-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .feature:nth-child(odd) { border-left: none; }
    .about-split, .service-detail, .article-wrap, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-side { position: static; flex-direction: row; flex-wrap: wrap; }
    .service-side .side-box { flex: 1; min-width: 260px; }
    .about-badge { right: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 78px; right: 0; bottom: 0; width: min(320px, 85vw);
        background: #fff; flex-direction: column; align-items: stretch; gap: 0;
        padding: 16px; box-shadow: -10px 0 40px rgba(0,0,0,.15);
        transform: translateX(100%); transition: transform var(--t); overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav > ul > li > a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding: 0 0 8px 16px; display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .has-dropdown > a::after { float: right; margin-top: 8px; }
    .nav-cta { margin: 14px 0 0; text-align: center; }
    .section { padding: 56px 0; }
    .check-list-2col { grid-template-columns: 1fr; }
    .slider-btn { display: none; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .services-grid, .news-grid, .why-grid, .features-grid { grid-template-columns: 1fr; }
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .about-badge { right: 14px; bottom: -16px; padding: 14px 18px; }
}
