/* ============================================================
   SAONIX SOLAR PRO — main.css v3.0
   Design system ported from the Saonix Website Redesign:
   Archivo · navy #16303f / #0d222e · cyan #0ea5c9 / #4ac8e8
   ============================================================ */

:root {
    --navy-deep: #0d222e;
    --navy: #16303f;
    --cyan: #0ea5c9;
    --cyan-dk: #0b8aa8;
    --cyan-lt: #4ac8e8;
    --cyan-bg: #e8f7fb;
    --green: #1fa855;
    --green-dk: #178a45;
    --bg-soft: #f2f7f9;
    --bg-hybrid: #f0fafd;
    --white: #ffffff;
    --ink: #16303f;
    --body: #46626f;
    --muted: #7d97a4;
    --border: #e4edf1;
    --border-2: #d5e3ea;
    --font: 'Archivo', -apple-system, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 4px 12px rgba(22, 48, 63, 0.06);
    --shadow-md: 0 8px 24px rgba(22, 48, 63, 0.08);
    --shadow-lg: 0 16px 40px rgba(22, 48, 63, 0.14);
    --container: 1312px;
    --pad-x: 64px;
    --transition: all 0.18s ease;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--cyan-dk); }
button { font-family: var(--font); cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--cyan); color: #fff; }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
}
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container-narrow { max-width: 900px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section-pad { padding-top: 88px; padding-bottom: 88px; }
.section-pad-sm { padding-top: 56px; padding-bottom: 56px; }
.sec-soft { background: var(--bg-soft); }
.sec-navy { background: var(--navy); }
.sec-deep { background: var(--navy-deep); }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Section headers */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.sec-head.center { display: block; text-align: center; margin-bottom: 48px; }
.eyebrow {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cyan);
}
.sec-navy .eyebrow, .sec-deep .eyebrow, .on-dark .eyebrow { color: var(--cyan-lt); }
.sec-title { font-size: 40px; margin-top: 8px; }
.sec-navy .sec-title, .sec-deep .sec-title { color: #fff; }
.sec-link { font-weight: 700; font-size: 16px; white-space: nowrap; }
.sec-navy .sec-link { color: var(--cyan-lt); }
.section-sub { font-size: 17px; color: var(--body); max-width: 640px; margin: 12px auto 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font); font-weight: 700; font-size: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg, .btn-large { padding: 16px 32px; font-size: 17px; }
.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: var(--cyan-dk); color: #fff; }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-deep); color: #fff; }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: var(--green-dk); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cyan-bg); color: var(--navy); }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--navy); color: #fff;
    font-size: 13px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 8px var(--pad-x);
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--cyan-lt); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar .muted { opacity: 0.85; }
.city-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(74,200,232,0.14);
    border: 1px solid rgba(74,200,232,0.35);
    border-radius: 99px; padding: 3px 12px;
    font-weight: 700; color: var(--cyan-lt);
    white-space: nowrap;
}
.topbar .link-cyan { color: var(--cyan-lt); }
.wa-pill {
    background: var(--green); color: #fff !important;
    padding: 3px 12px; border-radius: 99px;
    font-weight: 600; font-size: 12px;
}
.wa-pill:hover { background: var(--green-dk); }
.lang-switch { display: flex; border: 1px solid rgba(255,255,255,0.3); border-radius: 6px; overflow: hidden; font-size: 12px; }
.lang-switch span { padding: 3px 10px; }
.lang-switch .on { background: var(--cyan-lt); color: var(--navy); font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 500;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 14px var(--pad-x);
}
.site-logo img { height: 42px; width: auto; }
.site-logo .logo-text { font-size: 24px; font-weight: 800; color: var(--navy); }
.main-nav { display: flex; align-items: center; gap: 4px; font-size: 15px; font-weight: 600; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav li { position: relative; }
.main-nav a {
    color: var(--ink);
    padding: 10px 12px; border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 5px;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.main-nav li.current-menu-item > a,
.main-nav li.current-menu-ancestor > a,
.main-nav li.current_page_item > a { color: var(--cyan); }
.main-nav li.menu-item-has-children > a::after {
    content: "▼"; font-size: 9px; opacity: 0.6; margin-left: 2px;
}
.main-nav .sub-menu {
    display: none;
    position: absolute; top: 100%; left: 0;
    padding-top: 8px; z-index: 600;
    list-style: none; margin: 0;
    min-width: 260px;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu { display: block; }
.main-nav .sub-menu-inner,
.main-nav .sub-menu > li:first-child { border-top-left-radius: var(--radius); }
.main-nav .sub-menu li {
    background: var(--white);
}
.main-nav .sub-menu {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    top: calc(100% + 8px);
}
.main-nav .sub-menu a {
    color: var(--ink); font-size: 14px; font-weight: 600;
    padding: 10px 14px; border-radius: var(--radius-sm);
    white-space: nowrap; display: block;
}
.main-nav .sub-menu a:hover { background: var(--cyan-bg); color: var(--cyan); }
.header-cta { flex-shrink: 0; }

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none; border: 1px solid var(--border-2); border-radius: var(--radius-sm);
    padding: 9px 12px; color: var(--navy); font-size: 20px; line-height: 1;
}
.mobile-nav {
    display: none;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 12px var(--pad-x) 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav a {
    display: block; padding: 12px 4px;
    color: var(--ink); font-weight: 600; font-size: 16px;
    border-bottom: 1px solid var(--border);
}
.mobile-nav .sub-menu a { padding-left: 20px; font-size: 15px; color: var(--body); }
.mobile-nav .btn { margin-top: 14px; width: 100%; }

/* ---------- Floating quick actions ---------- */
.fabs {
    position: fixed; right: 22px; bottom: 22px; z-index: 900;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.fab {
    display: block; padding: 12px 20px;
    border-radius: 99px; font-weight: 800; font-size: 14px; color: #fff;
}
.fab:hover { transform: translateY(-1px); color: #fff; }
.fab-quote { background: var(--navy); box-shadow: 0 8px 24px rgba(13,34,46,0.35); }
.fab-quote:hover { background: var(--navy-deep); }
.fab-calc { background: var(--cyan); box-shadow: 0 8px 24px rgba(14,165,201,0.4); }
.fab-calc:hover { background: var(--cyan-dk); }
.fab-wa { background: var(--green); box-shadow: 0 8px 24px rgba(31,168,85,0.4); }
.fab-wa:hover { background: var(--green-dk); }

/* ---------- Home hero ---------- */
.hero {
    position: relative; min-height: 640px;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(13,34,46,0.92) 0%, rgba(13,34,46,0.72) 45%, rgba(13,34,46,0.15) 100%);
}
.hero-content { position: relative; padding: 96px var(--pad-x); max-width: 800px; }
.hero-badge, .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(74,200,232,0.15);
    border: 1px solid rgba(74,200,232,0.4);
    color: var(--cyan-lt);
    padding: 6px 14px; border-radius: 99px;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-title { font-size: 58px; line-height: 1.05; color: #fff; margin: 20px 0 0; }
.hero-lead { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 20px 0 0; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 48px; margin-top: 56px; }
.hero-stat b { display: block; font-size: 34px; font-weight: 800; color: var(--cyan-lt); line-height: 1.2; }
.hero-stat span { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ---------- Inner page hero ---------- */
.page-hero {
    position: relative; background: var(--navy-deep);
    padding: 64px 0; overflow: hidden;
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero-content { position: relative; max-width: 800px; }
.breadcrumbs { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan-lt); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--cyan-lt); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,0.5); }
.page-title { font-size: 48px; color: #fff; margin: 12px 0 0; line-height: 1.08; }
.page-lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 16px 0 0; }
.page-hero .hero-actions { margin-top: 26px; }

/* ---------- Brand strip ---------- */
.brand-strip {
    border-bottom: 1px solid var(--border);
    padding: 20px var(--pad-x);
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.brand-strip-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.brand-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
    font-size: 14px; font-weight: 700; color: var(--body);
    background: var(--bg-soft);
    padding: 6px 16px; border-radius: 99px; white-space: nowrap;
}

/* ---------- Cards ---------- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: block;
    transition: var(--transition);
    color: inherit;
}
a.card:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--shadow-md); color: inherit; }
.card .num { font-size: 13px; font-weight: 800; color: var(--cyan); }
.card h3 { font-size: 19px; margin: 10px 0 8px; }
.card p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }

/* Media (image) cards — bento */
.media-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 248px; display: flex; align-items: flex-end;
    background: var(--navy);
    color: #fff;
}
.media-card.tall { grid-row: span 2; min-height: 520px; }
.media-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.media-card:hover img.bg { transform: scale(1.04); }
.media-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,34,46,0) 30%, rgba(13,34,46,0.9) 100%); }
.media-card .body { position: relative; padding: 24px; }
.media-card.tall .body { padding: 28px; }
.media-card h3 { font-size: 22px; color: #fff; margin: 0; }
.media-card.tall h3 { font-size: 26px; }
.media-card p { font-size: 14px; color: rgba(255,255,255,0.85); margin: 4px 0 0; line-height: 1.5; }
.media-card .watermark {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.media-card .watermark img { width: 140px; opacity: 0.16; filter: invert(1); }

/* Dark tiles (on navy sections) */
.tile {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: block; color: #fff;
    transition: var(--transition);
}
a.tile:hover { border-color: var(--cyan-lt); background: rgba(74,200,232,0.08); color: #fff; }
.tile h3 { color: #fff; }
.tile .t-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.tile .t-size { font-size: 30px; }
.tile .t-type { font-size: 13px; font-weight: 700; color: var(--cyan-lt); text-transform: uppercase; letter-spacing: 0.05em; }
.tile .t-price { font-size: 24px; font-weight: 800; color: var(--cyan-lt); margin: 14px 0 4px; }
.tile .t-note { font-size: 13px; color: rgba(255,255,255,0.6); }
.tile .t-rows { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 18px; padding-top: 16px; display: grid; gap: 8px; }
.tile .t-rows div { font-size: 14px; color: rgba(255,255,255,0.85); }
.stat-tile {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 16px;
}
.stat-tile b { display: block; font-size: 24px; font-weight: 800; color: #fff; }
.stat-tile span { font-size: 13px; color: rgba(255,255,255,0.65); }

/* System-type cards */
.type-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; background: var(--white); }
.type-card h3 { font-size: 24px; }
.type-card .type-tag { color: var(--cyan); font-weight: 700; font-size: 14px; margin: 6px 0 14px; }
.type-card p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }
.type-card.popular { border: 2px solid var(--cyan); background: var(--bg-hybrid); }
.pop-badge {
    position: absolute; top: -13px; left: 32px;
    background: var(--cyan); color: #fff;
    font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
    padding: 4px 14px; border-radius: 99px;
}

/* Process steps */
.step-card { padding: 28px 24px; border-radius: var(--radius-md); background: var(--bg-soft); }
.sec-soft .step-card { background: var(--white); border: 1px solid var(--border); }
.step-num {
    width: 40px; height: 40px; border-radius: 99px;
    background: var(--cyan); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 17px;
}
.step-card h3 { font-size: 18px; margin: 16px 0 8px; }
.step-card p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }

/* Project cards */
.project-card .ph {
    height: 280px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.project-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.project-card .ph .ph-label { color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 600; padding: 0 24px; text-align: center; }
.project-card h3 { font-size: 18px; margin: 16px 0 4px; }
.project-card p { font-size: 14px; color: var(--body); margin: 0; }

/* Testimonial */
.quote-mark { font-size: 64px; font-weight: 900; color: var(--cyan); line-height: 1; font-family: Georgia, serif; }
.quote-text { font-size: 26px; line-height: 1.45; font-weight: 600; color: var(--ink); margin: 0; }
.quote-who { margin-top: 24px; }
.quote-who b { display: block; font-weight: 800; font-size: 16px; }
.quote-who span { font-size: 14px; color: var(--muted); }
.quote-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.quote-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band {
    margin: 0 var(--pad-x) 88px;
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    padding: 72px var(--pad-x);
}
.cta-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band .scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,34,46,0.94) 0%, rgba(13,34,46,0.55) 100%); }
.cta-band .inner { position: relative; max-width: 640px; }
.cta-band h2 { font-size: 40px; color: #fff; margin: 0; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.85); margin: 16px 0 28px; line-height: 1.6; }

/* ---------- Tables ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th {
    background: var(--navy); color: #fff;
    font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    padding: 14px 18px; text-align: left;
}
.price-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--body); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td b, .price-table td strong { color: var(--ink); }
.price-table .hl { color: var(--cyan); font-weight: 800; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- FAQ accordion ---------- */
.faq-item {
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer; list-style: none;
    padding: 18px 22px;
    font-weight: 700; font-size: 16px; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--cyan); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--cyan); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 15px; line-height: 1.65; color: var(--body); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 700; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea, .search-field {
    font-family: var(--font); font-size: 15px; color: var(--ink);
    background: var(--white);
    border: 1px solid var(--border-2); border-radius: var(--radius-sm);
    padding: 12px 14px;
    width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus, .search-field:focus {
    outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(14,165,201,0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* Chips (calculator + filters) */
.chip {
    font-family: var(--font); font-size: 14px; font-weight: 700;
    padding: 10px 18px; border-radius: 99px;
    border: 1px solid var(--border-2);
    background: var(--white); color: var(--ink);
    cursor: pointer; transition: var(--transition);
}
.chip:hover { border-color: var(--cyan); color: var(--cyan); }
.chip.on { background: var(--cyan); border-color: var(--cyan); color: #fff; }

/* ---------- Blog ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card-link { display: block; color: inherit; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.post-card-link:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: var(--shadow-md); color: inherit; }
.post-card-thumb { height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--cyan-dk) 140%); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px 24px 26px; }
.post-cat-badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cyan); }
.post-card-title { font-size: 19px; line-height: 1.3; margin: 8px 0 8px; }
.post-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--body); }
.post-card-meta, .post-meta { font-size: 13px; color: var(--muted); margin-top: 12px; }
.single-hero { background: var(--navy-deep); padding: 64px 0; }
.single-title { font-size: 42px; color: #fff; margin: 12px 0 0; line-height: 1.12; }
.single-featured { border-radius: var(--radius-lg); overflow: hidden; margin: 40px auto 0; }
.page-header { margin-bottom: 32px; }
.archive-description { color: var(--body); }
.pagination-wrap { margin-top: 48px; text-align: center; }
.pagination-wrap .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border: 1px solid var(--border-2); border-radius: var(--radius-sm);
    color: var(--ink); font-weight: 700; margin: 0 3px;
}
.pagination-wrap .page-numbers.current, .pagination-wrap .page-numbers:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; }
.post-nav a { font-weight: 700; }

/* ---------- Prose / entry content ---------- */
.prose, .entry-content { font-size: 16.5px; line-height: 1.7; color: var(--body); }
.prose h2, .entry-content h2 { font-size: 30px; color: var(--ink); margin: 1.6em 0 0.6em; }
.prose h3, .entry-content h3 { font-size: 22px; color: var(--ink); margin: 1.4em 0 0.5em; }
.prose ul, .entry-content ul, .prose ol, .entry-content ol { padding-left: 24px; margin: 0 0 1.2em; }
.prose li, .entry-content li { margin-bottom: 8px; }
.prose a, .entry-content a { font-weight: 600; }
.prose .lead, .entry-content .lead { font-size: 19px; line-height: 1.6; color: var(--ink); }
.prose table, .entry-content table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 15px; }
.prose th, .entry-content th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; }
.prose td, .entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.prose blockquote, .entry-content blockquote {
    border-left: 4px solid var(--cyan);
    background: var(--bg-soft);
    margin: 1.4em 0; padding: 18px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--ink); font-weight: 500;
}
.wp-block-table table { width: 100%; }

/* ---------- Comments & search ---------- */
.comments-area { margin-top: 56px; }
.comments-title { font-size: 24px; margin-bottom: 20px; }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 14px; }
.search-form { display: flex; gap: 10px; max-width: 520px; }
.search-submit { flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 64px var(--pad-x) 32px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: var(--container); margin: 0 auto;
}
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand .logo-text { font-size: 22px; font-weight: 800; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 0; max-width: 300px; }
.footer-col-title {
    font-weight: 800; color: #fff; font-size: 13px;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--cyan-lt); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
    padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.55);
    max-width: var(--container); margin: 0 auto;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--cyan-lt); }

/* ---------- Misc ---------- */
.accent { color: var(--cyan); }
.badge-cyan {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--cyan-bg); color: var(--cyan-dk);
    border: 1px solid rgba(14,165,201,0.3);
    padding: 5px 14px; border-radius: 99px;
    font-size: 13px; font-weight: 700;
}
.anchor-offset { scroll-margin-top: 130px; }
.mt-0 { margin-top: 0; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    :root { --pad-x: 40px; }
    .hero-title { font-size: 48px; }
    .sec-title { font-size: 34px; }
}
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .nav-toggle { display: block; }
    .header-cta { display: none; }
    .g4 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .topbar .muted, .topbar .lang-switch { display: none; }
}
@media (max-width: 900px) {
    :root { --pad-x: 24px; }
    .section-pad { padding-top: 56px; padding-bottom: 56px; }
    .g2, .g3, .posts-grid { grid-template-columns: 1fr; }
    .hero { min-height: 540px; }
    .hero-title { font-size: 38px; }
    .page-title { font-size: 34px; }
    .sec-title { font-size: 28px; }
    .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .media-card.tall { grid-row: auto; min-height: 320px; }
    .cta-band { margin: 0 var(--pad-x) 56px; padding: 48px 28px; }
    .cta-band h2 { font-size: 28px; }
    .form-grid { grid-template-columns: 1fr; }
    .quote-text { font-size: 20px; }
    .quote-img { height: 280px; }
    .hero-stats { gap: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .fabs { right: 14px; bottom: 14px; }
    .fab { font-size: 13px; padding: 11px 16px; }
    .fab-quote { display: none; }
    .topbar { flex-direction: column; gap: 6px; padding: 8px 16px; text-align: center; }
    .topbar-left, .topbar-right { flex-wrap: wrap; justify-content: center; gap: 10px; }
}
@media (max-width: 640px) {
    .g4 { grid-template-columns: 1fr; }
    .hero-actions .btn, .cta-band .btn { width: 100%; }
    .hero-actions, .cta-band .inner > div:last-child { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

/* ---------- Hub page extras (services/solutions/products/pricing) ---------- */
.hub-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border); }
.hub-row:last-child { border-bottom: 0; }
.hub-row.flip .hub-media { order: -1; }
.hub-media { border-radius: var(--radius-lg); overflow: hidden; height: 340px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); position: relative; }
.hub-media img { width: 100%; height: 100%; object-fit: cover; }
.hub-media .watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hub-media .watermark img { width: 120px; height: auto; opacity: 0.16; filter: invert(1); object-fit: contain; }
.hub-row h3 { font-size: 28px; margin: 10px 0 12px; }
.hub-row .body { font-size: 16px; line-height: 1.65; color: var(--body); }
.checklist { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 28px; font-size: 15px; color: var(--body); line-height: 1.55; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.fact-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.fact-pills .pill { background: var(--cyan-bg); color: var(--cyan-dk); }
.type-card .t-detail { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 14px; display: grid; gap: 8px; font-size: 14px; color: var(--body); }
.type-card .t-detail b { color: var(--ink); }
.brand-card .badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); background: var(--cyan-bg); border-radius: 99px; padding: 3px 10px; }
.brand-card h3 { margin-top: 12px; }
.brand-card .range { font-size: 13px; font-weight: 700; color: var(--muted); margin-top: 10px; }
.pkg-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; background: var(--white); position: relative; }
.pkg-card.popular { border: 2px solid var(--cyan); background: var(--bg-hybrid); }
.pkg-card .p-size { font-size: 28px; }
.pkg-card .p-price { font-size: 21px; font-weight: 800; color: var(--cyan); margin: 12px 0 2px; }
.pkg-card .p-note { font-size: 13px; color: var(--muted); }
.pkg-card .p-rows { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 14px; display: grid; gap: 7px; font-size: 14px; color: var(--body); }
@media (max-width: 900px) {
    .hub-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
    .hub-row.flip .hub-media { order: 0; }
    .hub-media { height: 240px; }
}
