/* ============ Antalya Güvenlik Kamera — Tema ============ */
:root {
  --navy: #0c1b33;
  --navy-2: #12264a;
  --blue: #1c4d9e;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --text: #253044;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-alt: #f4f7fb;
  --white: #fff;
  --wa: #25d366;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(12, 27, 51, .08);
  --shadow-lg: 0 12px 36px rgba(12, 27, 51, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text); line-height: 1.65; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { fill: currentColor; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--navy); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3, .h3 { font-size: 1.12rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.hide-m { display: flex; }

/* ---- Butonlar ---- */
.btn { display: inline-block; padding: 12px 26px; border-radius: 8px; font-weight: 700; font-size: .95rem; border: 2px solid transparent; cursor: pointer; transition: all .2s; text-align: center; }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--accent); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1eb958; color: #fff; }
.btn-lg { padding: 15px 34px; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; margin-top: .6rem; }

/* ---- Topbar ---- */
.topbar { background: var(--navy); color: #cbd5e1; font-size: .85rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 12px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left { display: flex; gap: 20px; }
.topbar svg { width: 15px; height: 15px; fill: var(--accent); }
.topbar a:hover { color: #fff; }

/* ---- Header ---- */
.site-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(12,27,51,.07); }
.header-in { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 1.05rem; max-width: 60%; }
.logo-icon { width: 42px; height: 42px; flex: 0 0 42px; background: var(--navy); border-radius: 10px; display: grid; place-items: center; }
.logo-icon svg { width: 24px; height: 24px; fill: var(--accent); }
.logo-img { max-height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a { padding: 8px 13px; border-radius: 8px; font-weight: 600; font-size: .93rem; color: var(--text); }
.main-nav a:hover { color: var(--blue); background: var(--bg-alt); }
.main-nav a.active { color: var(--blue); }
.main-nav .nav-cta { background: var(--accent); color: var(--navy); margin-left: 8px; font-weight: 700; }
.main-nav .nav-cta:hover { background: var(--accent-dark); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--navy); border-radius: 2px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Hero ---- */
.hero { position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--blue) 100%); color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(245,158,11,.15), transparent 55%); pointer-events: none; }
.hero-slide { display: none; background-size: cover; background-position: center; position: relative; }
.hero-slide.active { display: block; animation: fadeIn .6s ease; }
.hero-slide[style]::after { content: ""; position: absolute; inset: 0; background: rgba(12,27,51,.72); }
.hero-in { position: relative; z-index: 2; padding: clamp(60px, 10vw, 120px) 20px; max-width: 760px; margin: 0; }
.hero-title { color: #fff; font-size: clamp(1.7rem, 4.5vw, 2.9rem); margin-bottom: 14px; }
.hero-sub { color: #cbd5e1; font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 28px; }
.hero-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: all .2s; }
.hero-dots button.active { background: var(--accent); width: 28px; border-radius: 6px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Özellik şeridi ---- */
.feature-strip { background: #fff; border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 22px 20px; }
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-item svg { width: 36px; height: 36px; fill: var(--accent); flex: 0 0 36px; }
.strip-item b { display: block; color: var(--navy); font-size: .95rem; }
.strip-item span { color: var(--muted); font-size: .83rem; }

/* ---- Bölümler ---- */
.section { padding: clamp(48px, 7vw, 80px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; margin-bottom: 40px; }
.eyebrow { display: inline-block; color: var(--accent-dark); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.section-dark .eyebrow { color: var(--accent); }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Kartlar ---- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: all .25s; display: flex; flex-direction: column; overflow: hidden; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card { padding: 28px 24px; }
.service-icon { width: 58px; height: 58px; border-radius: 14px; background: var(--bg-alt); display: grid; place-items: center; margin-bottom: 18px; }
.service-icon svg { width: 30px; height: 30px; fill: var(--blue); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon svg { fill: var(--navy); }
.service-card h3, .service-card .h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .92rem; flex: 1; }
.card-link { margin-top: 16px; color: var(--blue); font-weight: 700; font-size: .9rem; }

.product-card .product-img { aspect-ratio: 4/3; background: var(--bg-alt); display: grid; place-items: center; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-img svg { width: 56px; height: 56px; fill: #b6c2d4; }
.product-body { padding: 16px 18px 20px; }
.product-cat { color: var(--accent-dark); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.product-body h3, .product-body .h3 { margin: 4px 0 6px; font-size: 1rem; }
.product-body p { color: var(--muted); font-size: .88rem; }

.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-body { padding: 18px 20px 22px; }
.post-body time { color: var(--accent-dark); font-size: .8rem; font-weight: 700; }
.post-body h3, .post-body .h3 { margin: 6px 0 8px; }
.post-body p { color: var(--muted); font-size: .9rem; }

.ref-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px; color: #cbd5e1; }
.ref-card img { border-radius: 8px; margin-bottom: 14px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.ref-card h3, .ref-card .h3 { color: #fff; margin-bottom: 4px; }
.ref-loc { color: var(--accent); font-size: .82rem; font-weight: 700; display: block; margin-bottom: 8px; }
.ref-card p { font-size: .88rem; }
.ref-card-light { background: #fff; border: 1px solid var(--line); color: var(--muted); }
.ref-card-light h3, .ref-card-light .h3 { color: var(--navy); }
.ref-card-light .ref-loc { color: var(--accent-dark); }

/* ---- Hakkında ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.about-grid h2 { margin: 6px 0 14px; }
.about-grid > div > p { color: var(--muted); margin-bottom: 14px; }
.about-visual { background: linear-gradient(135deg, var(--navy), var(--blue)); border-radius: 20px; padding: 40px 30px; text-align: center; }
.about-cam { width: 120px; height: 120px; fill: var(--accent); margin: 20px auto 30px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.about-stats b { display: block; color: #fff; font-size: 1.5rem; }
.about-stats span { color: #94a3b8; font-size: .78rem; }
.check-list { margin: 14px 0 22px; }
.check-list li { padding: 6px 0 6px 30px; position: relative; color: var(--text); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230c1b33"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/12px no-repeat; }
.about-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Adımlar ---- */
.steps .step { background: #fff; border-radius: var(--radius); padding: 26px 22px; border: 1px solid var(--line); }
.step-no { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--navy); font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; }
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--muted); font-size: .9rem; }
.steps-v { margin: 20px 0 28px; }
.step-v { display: flex; gap: 16px; margin-bottom: 20px; }
.step-v .step-no { flex: 0 0 44px; margin: 0; }
.step-v h3 { margin-bottom: 4px; }
.step-v p { color: var(--muted); font-size: .92rem; }

/* ---- SSS ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.faq-grid h2 { margin: 6px 0 12px; }
.faq-grid > div > p { color: var(--muted); margin-bottom: 20px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { padding: 16px 44px 16px 20px; font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent-dark); transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 20px 16px; color: var(--muted); font-size: .93rem; }

/* ---- Sayfa başlığı ---- */
.page-head { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: clamp(36px, 6vw, 60px) 0; }
.page-head h1 { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.3rem); margin-bottom: 8px; }
.crumbs { font-size: .86rem; color: #94a3b8; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }
.crumb-cur { color: #cbd5e1; }

/* ---- Detay sayfaları ---- */
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.detail-img { border-radius: var(--radius); margin-bottom: 22px; width: 100%; }
.rich { color: var(--text); }
.rich p { margin-bottom: 14px; }
.rich h2, .rich h3 { margin: 22px 0 10px; }
.rich ul, .rich ol { margin: 0 0 14px 22px; }
.rich ul { list-style: disc; }
.rich img { border-radius: 10px; margin: 12px 0; }
.rich a { color: var(--blue); text-decoration: underline; }
.rich table { border-collapse: collapse; width: 100%; margin: 14px 0; }
.rich td, .rich th { border: 1px solid var(--line); padding: 8px 12px; font-size: .92rem; }
.post-date { color: var(--accent-dark); font-weight: 700; font-size: .88rem; display: block; margin-bottom: 12px; }
.side-box { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.side-box h3 { margin-bottom: 14px; }
.side-links li { border-bottom: 1px solid var(--line); }
.side-links li:last-child { border: 0; }
.side-links a { display: block; padding: 10px 0; font-size: .92rem; font-weight: 600; color: var(--text); }
.side-links a:hover { color: var(--blue); padding-left: 4px; }
.side-cta { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #cbd5e1; }
.side-cta h3 { color: #fff; }
.side-cta p { font-size: .9rem; margin-bottom: 6px; }

/* ---- Ürün detay ---- */
.product-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.product-detail-img { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 4/3; display: grid; place-items: center; overflow: hidden; padding: 18px; }
.product-detail-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.product-detail-img svg { width: 90px; height: 90px; fill: #b6c2d4; }
.product-detail-info h2 { font-size: 1.7rem; margin: 4px 0 12px; }
.lead { color: var(--muted); font-size: 1.02rem; margin-bottom: 12px; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.product-desc { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.cat-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-filter a { padding: 9px 20px; border-radius: 100px; border: 1px solid var(--line); font-weight: 600; font-size: .9rem; color: var(--muted); transition: all .2s; }
.cat-filter a:hover { border-color: var(--blue); color: var(--blue); }
.cat-filter a.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.cat-desc { color: var(--muted); margin-bottom: 24px; max-width: 760px; }
.empty-note { color: var(--muted); text-align: center; padding: 40px 0; }

/* ---- Sayfalama ---- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 42px; }
.pg-item { min-width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0 12px; border-radius: 999px; border: 0; font-weight: 700; font-size: .95rem; color: var(--muted); background: var(--bg-alt); transition: all .22s cubic-bezier(.4, 0, .2, 1); }
a.pg-item:hover { background: var(--navy); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 18px rgba(12, 27, 51, .22); }
.pg-item.active { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; box-shadow: 0 6px 16px rgba(28, 77, 158, .35); transform: scale(1.08); }
.pg-dots { background: none; color: #b6c2d4; letter-spacing: 2px; min-width: 24px; padding: 0; }
.pg-arrow { background: #fff; border: 1px solid var(--line); color: var(--navy); font-size: 1.25rem; }
a.pg-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--navy); box-shadow: 0 8px 18px rgba(245, 158, 11, .35); }
.pg-info { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 14px; letter-spacing: .3px; }

/* ---- İletişim ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid h2 { margin-bottom: 12px; }
.contact-grid > div > p { color: var(--muted); margin-bottom: 20px; }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list svg { width: 22px; height: 22px; fill: var(--accent-dark); flex: 0 0 22px; margin-top: 3px; }
.contact-list b { display: block; color: var(--navy); font-size: .92rem; }
.contact-list span, .contact-list a { color: var(--muted); font-size: .92rem; }
.contact-list a:hover { color: var(--blue); }
.map-wrap { margin-top: 22px; border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---- Formlar ---- */
.form-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-box h2 { margin-bottom: 18px; font-size: 1.35rem; }
.form-box label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 14px; }
.form-box input, .form-box textarea, .form-box select { width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font: inherit; font-size: .95rem; color: var(--text); background: #fff; }
.form-box input:focus, .form-box textarea:focus, .form-box select:focus { outline: 2px solid var(--blue); outline-offset: -1px; border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 16px; font-size: .93rem; font-weight: 600; }
.alert-ok { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert-err { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---- CTA bandı ---- */
.cta-band { background: linear-gradient(120deg, var(--accent), var(--accent-dark)); padding: 40px 0; }
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--navy); margin-bottom: 4px; }
.cta-band p { color: rgba(12,27,51,.8); max-width: 560px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #94a3b8; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 36px; padding: clamp(44px, 6vw, 64px) 20px 36px; }
.footer-logo { color: #fff; margin-bottom: 12px; font-size: 1.1rem; }
.site-footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-links a { display: inline-block; padding: 5px 0; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; padding: 6px 0; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; fill: var(--accent); flex: 0 0 17px; margin-top: 4px; }
.footer-contact a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: all .2s; }
.socials a:hover { background: var(--accent); }
.socials svg { width: 19px; height: 19px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .85rem; }

/* ---- WhatsApp butonu ---- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 6px 20px rgba(37,211,102,.45); animation: waPulse 2.4s infinite; }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,.75); } }

/* ---- 404 ---- */
.notfound { padding: 40px 0; }
.notfound h1 { font-size: 5rem; color: var(--accent); }
.notfound h2 { margin-bottom: 10px; }
.notfound p { color: var(--muted); margin-bottom: 24px; }

/* ============ Mobil ============ */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .faq-grid, .contact-grid, .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hide-m { display: none; }
  .logo { font-size: .92rem; gap: 8px; }
  .logo-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .logo-img { max-height: 42px; }
  .topbar-in { justify-content: center; }
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--navy); flex-direction: column; align-items: stretch; padding: 80px 20px 20px; gap: 4px; transition: right .3s ease; z-index: 99; overflow-y: auto; }
  .main-nav.open { right: 0; box-shadow: -10px 0 40px rgba(0,0,0,.3); }
  .main-nav a { color: #e2e8f0; padding: 13px 16px; font-size: 1rem; }
  .main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.08); color: var(--accent); }
  .main-nav .nav-cta { margin: 12px 0 0; text-align: center; color: var(--navy); }
  .nav-toggle { position: relative; z-index: 110; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 90; }
}

@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; gap: 10px; padding: 18px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-box { padding: 22px 18px; }
  .cta-band-in { flex-direction: column; text-align: center; }
  .about-cta .btn { width: 100%; }
}
