/* ============================================================
   Meyra Optimus — Public Site Theme (ROVEN'den uyarlama)
   Build gerektirmez; doğrudan link edilir.
   ============================================================ */

:root {
    /* Meyra kurumsal footer rengi (meyra.com) */
    --accent: #002F5D;
    --accent-dark: #001f3f;
    --ink: #0B0B0B;
    --ink-soft: #2b2b2b;
    --muted: #6b7280;
    --line: #e7e7e9;
    --bg: #ffffff;
    --bg-soft: #f5f5f4;
    --bg-dark: #0B0B0B;
    --radius: 22px;
    --radius-lg: 34px;
    --radius-pill: 999px;
    --shadow: 0 18px 50px -20px rgba(0, 0, 0, .28);
    --shadow-sm: 0 8px 24px -12px rgba(0, 0, 0, .22);
    --container: 1240px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 .5em;
    font-weight: 700;
}

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

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #fff; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--accent);
    display: inline-block;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    text-transform: uppercase;
}
.section-lead {
    max-width: 620px;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease;
    line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-outline { border-color: var(--line); background: transparent; }
.btn .arrow {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff;
    margin: -6px -12px -6px 0;
}
.btn-primary .arrow { background: #fff; color: var(--accent); }
.btn-light .arrow { background: var(--accent); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    padding: 16px 0;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
}
.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
}
.brand span { color: var(--accent); }
.brand-logo { height: 40px; width: auto; display: block; }

.nav-pill {
    display: flex; align-items: center; gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 6px;
    box-shadow: var(--shadow-sm);
}
.nav-pill a {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .15s, color .15s;
}
.nav-pill a:hover { color: var(--ink); }
.nav-pill a.active { background: var(--accent); color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
    display: none;
    background: var(--ink); color: #fff;
    border: none; border-radius: 12px;
    width: 46px; height: 46px;
    cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
    padding: 0;
}
.hero-frame {
    position: relative;
    overflow: hidden;
    /* Kenardan kenara, menü dahil tüm ekranı kaplayan full-bleed hero.
       svh: mobil tarayıcı çubuğu gizlenince hero'nun büyüyüp zıplamasını önler
       (sabit, küçük viewport). Kaydırırken yükseklik değişmez. */
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: #111;
}

/* Ana sayfa: hero üstünde şeffaf, aşağı kaydırınca beyaz — menü HER ZAMAN en üstte */
body.has-hero-nav .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.has-hero-nav .site-header .brand,
body.has-hero-nav .site-header .brand span { color: #fff; }
body.has-hero-nav .site-header .btn-dark { background: #fff; color: var(--ink); }
body.has-hero-nav .site-header .btn-dark .arrow { background: var(--ink); color: #fff; }
body.has-hero-nav .site-header .nav-toggle { background: var(--ink); color: #fff; }

/* Kaydırınca katı beyaz hale gelir (tüm sayfalar için gölge) */
.site-header.scrolled { box-shadow: var(--shadow-sm); }
body.has-hero-nav .site-header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 0, 0, .05);
}
body.has-hero-nav .site-header.scrolled .brand { color: var(--ink); }
body.has-hero-nav .site-header.scrolled .brand span { color: var(--accent); }
body.has-hero-nav .site-header.scrolled .btn-dark { background: var(--ink); color: #fff; }
body.has-hero-nav .site-header.scrolled .btn-dark .arrow { background: #fff; color: var(--ink); }
.hero-frame img.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-frame::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,20,.15) 0%, rgba(10,10,15,.05) 45%, rgba(10,10,12,.85) 100%);
    z-index: 1;
}
.hero-watermark {
    position: absolute;
    top: 8%; left: 0; right: 0;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(4rem, 16vw, 15rem);
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .12);
    z-index: 1;
    pointer-events: none;
    text-transform: uppercase;
}
.hero-content {
    position: relative; z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px;
}
.hero-slogan {
    font-style: italic;
    font-size: 1.05rem;
    max-width: 320px;
    color: rgba(255, 255, 255, .92);
    align-self: end;
    margin-bottom: 8px;
}
.hero-heading {
    grid-column: 1 / -1;
    font-size: clamp(2.4rem, 6.5vw, 5.4rem);
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.hero-heading .btn { vertical-align: middle; }

/* ---------- Highlights strip ---------- */
.highlights-section { padding: 56px 0; }
.highlights {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.highlight {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .2s;
}
.highlight:hover { transform: translateY(-4px); }
.highlight img, .highlight .ico { height: 46px; margin: 0 auto 16px; }
.highlight .highlight-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; margin-bottom: 6px; }
.highlight p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Feature blocks ---------- */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}
.feature:last-child { margin-bottom: 0; }
.feature:nth-child(even) .feature-media { order: -1; }
.feature-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-soft);
    aspect-ratio: 4 / 3;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; }
.feature-body { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Specs table ---------- */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 64px;
}
.spec-group h3 {
    font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
    color: var(--accent); margin-bottom: 14px;
}
.spec-row {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; font-weight: 600; text-align: right; }

/* ---------- Accessories ---------- */
.acc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.acc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s;
}
.acc-card:hover { transform: translateY(-4px); }
.acc-thumb {
    aspect-ratio: 1;
    background: var(--bg-soft);
    display: flex; align-items: center; justify-content: center;
}
.acc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.acc-thumb .noimg { color: var(--muted); font-size: .8rem; }
.acc-body { padding: 16px 18px; }
.acc-body h3 { font-size: .98rem; text-transform: none; margin-bottom: 4px; }
.acc-code { color: var(--accent); font-size: .8rem; font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-grid a {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-grid a:hover img { transform: scale(1.05); }

/* ---------- Author profile ---------- */
.author-profile { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
.author-avatar {
    width: 180px; height: 180px; border-radius: 24px; object-fit: cover;
    box-shadow: var(--shadow); background: var(--bg-soft);
}
.author-avatar--placeholder {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 4rem;
    color: #fff; background: var(--accent);
}
.author-role { color: var(--accent); font-weight: 600; margin: -.3em 0 1em; font-size: 1.1rem; }
.author-bio { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; max-width: 720px; }
.author-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
@media (max-width: 640px) {
    .author-profile { grid-template-columns: 1fr; gap: 24px; }
    .author-avatar, .author-avatar--placeholder { width: 120px; height: 120px; }
}

/* ---------- Documents ---------- */
.doc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.doc-card {
    flex: 0 1 360px; min-width: 0;
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 20px 22px; box-shadow: var(--shadow-sm);
    transition: transform .2s ease, border-color .2s ease;
}
.doc-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.doc-ico {
    width: 48px; height: 48px; flex: 0 0 auto; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0, 47, 93, .08); color: var(--accent);
}
.doc-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.doc-info strong { font-family: var(--font-display); font-size: 1.02rem; }
.doc-info small { color: var(--muted); font-size: .82rem; }
.doc-arrow {
    width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff;
    transition: transform .2s ease;
}
.doc-card:hover .doc-arrow { transform: translateY(2px); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    cursor: pointer; list-style: none;
    padding: 22px 0;
    font-weight: 600; font-size: 1.1rem;
    display: flex; justify-content: space-between; gap: 20px;
    font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body { padding: 0 0 22px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Purchase links ---------- */
.buy-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.post-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .2s;
}
.post-card:hover { transform: translateY(-4px); }
.post-thumb { aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-cat { color: var(--accent); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.post-card h3 { font-size: 1.2rem; text-transform: none; margin: 8px 0 10px; }
.post-excerpt { color: var(--muted); font-size: .93rem; flex: 1; }
.post-meta { margin-top: 16px; font-size: .82rem; color: var(--muted); display: flex; gap: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 40px; }
.chip {
    padding: 9px 18px; border-radius: var(--radius-pill);
    border: 1px solid var(--line); font-size: .9rem; font-weight: 500;
    background: #fff;
}
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article-cover {
    border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0 36px;
    box-shadow: var(--shadow);
}
.article-body { font-size: 1.1rem; color: var(--ink-soft); }
.article-body h2 { font-size: 1.7rem; margin: 1.6em 0 .5em; text-transform: none; }
.article-body h3 { font-size: 1.35rem; margin: 1.4em 0 .5em; text-transform: none; }
.article-body p { margin: 0 0 1.2em; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body img { border-radius: var(--radius); margin: 1.5em 0; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.article-body th { background: var(--bg-soft); }

.eeat-bar {
    display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
    padding: 18px 22px; background: var(--bg-soft);
    border-radius: var(--radius); margin: 30px 0;
    font-size: .9rem;
}
.eeat-bar .who { display: flex; align-items: center; gap: 10px; }
.eeat-bar strong { display: block; }
.eeat-bar .who small { color: var(--muted); }

/* ---------- Forms ---------- */
.form-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 36px;
    box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--line); border-radius: 14px;
    font: inherit; background: #fff;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
.hp { position: absolute; left: -9999px; }
.alert-success {
    background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0;
    padding: 14px 18px; border-radius: 14px; margin-bottom: 20px;
}
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 14px 18px; border-radius: 14px; margin-bottom: 20px; }

/* ---------- Intro ---------- */
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

/* ---------- Contact ---------- */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 40px; margin-top: 40px; align-items: start;
}
.contact-channels { display: grid; gap: 14px; }
.contact-channel {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px;
    background: #fff; font-weight: 500;
}
.contact-channel .ico {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.contact-channel small { display: block; color: var(--muted); font-weight: 400; }

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 15% 0%, rgba(0, 47, 93, .35) 0%, transparent 55%),
        radial-gradient(90% 70% at 100% 0%, rgba(0, 47, 93, .22) 0%, transparent 50%),
        #08080a;
    color: #cfcfcf;
    padding: 74px 0 30px;
}
/* Üstte ince accent ışıma çizgisi */
.footer-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 20%, #2f6fb0 50%, var(--accent) 80%, transparent);
    opacity: .85;
}
/* Dev filigran */
.footer-watermark {
    position: absolute;
    left: 50%; bottom: -3.2rem; transform: translateX(-50%);
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(5rem, 20vw, 20rem); line-height: 1;
    letter-spacing: .04em; white-space: nowrap;
    color: rgba(255, 255, 255, .035);
    pointer-events: none; user-select: none;
}
.footer-inner { position: relative; z-index: 1; }

.footer-top {
    display: grid; grid-template-columns: 1.4fr 2fr; gap: 56px;
    padding-bottom: 44px;
}
.footer-brand .brand-logo { height: 42px; }
.footer-desc { max-width: 420px; margin: 18px 0 24px; color: #9a9a9f; font-size: .95rem; }

.footer-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #eaeaea !important; font-size: .88rem; font-weight: 500;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.footer-chip:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.footer-chip--wa:hover { background: rgba(37, 211, 102, .18); border-color: rgba(37, 211, 102, .5); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer h3 {
    color: #fff; text-transform: uppercase; font-size: .8rem;
    letter-spacing: .14em; margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.site-footer h3::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 26px; height: 2px; background: var(--accent);
}
.site-footer a { color: #b3b3b8; transition: color .15s ease; }
.site-footer a:hover { color: #fff; }

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a { position: relative; width: fit-content; }
.footer-links a::before {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
    background: var(--accent); transition: width .22s ease;
}
.footer-links a:hover::before { width: 100%; }

.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: #b3b3b8; font-size: .92rem; }
.footer-contact .ico {
    width: 28px; height: 28px; flex: 0 0 auto; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0, 47, 93, .35); color: #cde3ff;
}

.footer-bottom {
    margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: .84rem; color: #7f7f86;
}
.footer-bottom strong { color: #d6d6da; font-weight: 600; }
.footer-note { color: #6c6c73; }
.footer-top-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: #cfcfcf !important; font-weight: 500;
}
.footer-top-link .ico {
    width: 30px; height: 30px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff; transition: transform .18s ease;
}
.footer-top-link:hover .ico { transform: translateY(-3px); }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 60;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
    transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.pagination li { display: inline-flex; }
.pagination a, .pagination span {
    min-width: 44px; height: 44px; padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 12px; background: #fff;
    font-weight: 500; font-size: 1rem; line-height: 1;
    transition: border-color .15s, color .15s, background .15s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .active span { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination .disabled span { opacity: .35; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .highlights { grid-template-columns: repeat(2, 1fr); }
    .feature { grid-template-columns: 1fr; gap: 26px; }
    .feature:nth-child(even) .feature-media { order: 0; }
    .specs-grid { grid-template-columns: 1fr; gap: 32px; }
    .acc-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-band { grid-template-columns: 1fr; text-align: left; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; gap: 28px; }
    .intro-grid { grid-template-columns: 1fr; gap: 28px; }
    .nav-pill { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav-pill.open {
        display: flex; position: absolute; top: 72px; left: 16px; right: 16px;
        flex-direction: column; align-items: stretch; padding: 10px;
        border-radius: 20px; gap: 2px;
    }
    .nav-pill.open a { text-align: left; }
    .hero-frame { min-height: 100vh; min-height: 100svh; }
    .hero-nav { padding: 16px 0; }
    .hero-content { padding: 0 20px 30px; grid-template-columns: 1fr; }
    .hero-slogan { max-width: none; }
}
@media (max-width: 560px) {
    .section { padding: 56px 0; }
    .highlights, .acc-grid, .doc-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
    .nav-cta .btn span.label { display: none; }
    .hero-heading { font-size: 2.1rem; gap: 14px; }
    .cta-band { padding: 34px; }
    .form-card { padding: 24px; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: flex-start; }
}
