/* ============================================
   NACS CleanTech — Global Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: #1F2937;
  background: #F9FAFB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: opacity 0.15s; }
a:hover { opacity: 0.88; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #3B7DD8 !important; }

/* --- Variables as classes --- */
:root {
  --primary: #1B3A5C;
  --primary-light: #2A5580;
  --primary-pale: #E9EFF6;
  --accent: #25D366;
  --blue: #3B7DD8;
  --blue-light: #EBF2FC;
  --dark: #111827;
  --text: #1F2937;
  --text-muted: #6B7280;
  --bg: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --surface: #F3F4F6;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; color: var(--text); line-height: 1.3; }
h1 { font-size: clamp(28px, 4.5vw, 42px); font-weight: 700; }
h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 700; }
h3 { font-size: 17px; font-weight: 700; }
h4 { font-size: 15px; font-weight: 700; }
p { line-height: 1.7; }

/* --- Layout --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 24px; }
.section--white { background: var(--white); }
.section--bg { background: var(--bg); }
.section--primary { background: var(--primary); }
.section--dark { background: var(--dark); }

/* --- Grid --- */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--catalog { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }

/* --- Top Bar --- */
.topbar { background: var(--dark); padding: 5px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px; }
.topbar a, .topbar span { color: rgba(255,255,255,0.65); font-size: 11.5px; display: flex; align-items: center; gap: 5px; }
.topbar span { color: rgba(255,255,255,0.4); font-size: 11px; }
.topbar a svg { width: 10px; height: 10px; }

/* --- Navbar --- */
.navbar { background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; height: 60px; }
.navbar__logo { display: flex; align-items: baseline; gap: 6px; }
.navbar__logo-name { font-size: 20px; font-weight: 700; color: var(--primary); font-family: 'Libre Baskerville', serif; }
.navbar__logo-sub { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.navbar__links { display: flex; gap: 32px; align-items: center; }
.navbar__link { font-size: 13.5px; font-weight: 600; color: var(--text); padding-bottom: 2px; border-bottom: 2px solid transparent; }
.navbar__link--active { color: var(--primary); border-bottom-color: var(--primary); }
.navbar__cta { padding: 8px 20px; background: var(--primary); color: var(--white) !important; border-radius: 6px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* Mobile nav toggle */
.navbar__toggle { display: none; background: none; border: none; padding: 8px; }
.navbar__toggle svg { width: 24px; height: 24px; color: var(--text); }

/* --- Page Header --- */
.page-header { background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 100%); padding: 40px 24px 36px; }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.55); font-size: 15px; max-width: 520px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 12.5px; }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb span { color: rgba(255,255,255,0.8); font-weight: 600; }
.breadcrumb svg { color: rgba(255,255,255,0.25); width: 11px; height: 11px; transform: rotate(-90deg); }

/* --- Hero --- */
.hero { background: linear-gradient(160deg, var(--dark) 0%, var(--primary) 45%, var(--primary-light) 100%); padding: 80px 24px 68px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -60px; right: 10%; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.04); }
.hero::after { content: ''; position: absolute; bottom: -40px; left: 5%; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.03); }
.hero__content { position: relative; z-index: 1; max-width: 640px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 6px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.hero__badge svg { width: 13px; height: 13px; }
.hero h1 { color: var(--white); margin-bottom: 16px; font-family: 'Libre Baskerville', serif; }
.hero p { font-size: 16.5px; color: rgba(255,255,255,0.65); max-width: 490px; margin-bottom: 36px; font-weight: 400; }
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.stat__number { font-size: 26px; font-weight: 700; color: var(--white); font-family: 'Libre Baskerville', serif; }
.stat__label { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 3px; font-weight: 500; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 7px; font-size: 14.5px; font-weight: 600; border: none; text-decoration: none; transition: all 0.2s; }
.btn svg { width: 17px; height: 17px; }
.btn--whatsapp { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(37,211,102,0.25); }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn--outline-dark { background: var(--white); color: var(--text); border: 1px solid var(--border); }
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--sm svg { width: 14px; height: 14px; }
.btn--xs { padding: 6px 14px; font-size: 12px; border-radius: 5px; }
.btn--xs svg { width: 12px; height: 12px; }

/* --- Cards --- */
.card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); transition: all 0.2s ease; overflow: hidden; }
.card:hover { border-color: var(--primary-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,92,0.07); }
.card__body { padding: 20px 18px; }
.card__tag { display: inline-block; font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px; }
.card__tag--bestseller { background: #FEF3C7; color: #92400E; }
.card__tag--premium { background: #EDE9FE; color: #6D28D9; }
.card__tag--popular { background: var(--blue-light); color: #1D4ED8; }
.card__tag--new { background: #ECFDF5; color: #065F46; }

/* Model tags */
.model-tag { display: inline-block; font-size: 10.5px; padding: 2px 8px; border-radius: 4px; background: var(--surface); color: var(--text-muted); font-weight: 500; }

/* --- Product Image Placeholder --- */
.img-placeholder { background: linear-gradient(135deg, var(--primary-pale), var(--blue-light)); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 13px; font-weight: 500; opacity: 0.5; }

/* --- Section Headers --- */
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--blue); text-transform: uppercase; margin-bottom: 8px; }
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 460px; margin-top: 4px; }

/* --- Trust Strip --- */
.trust-strip { padding: 36px 24px; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.trust-item__icon { width: 32px; height: 32px; border-radius: 6px; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; }
.trust-item__icon svg { width: 15px; height: 15px; color: var(--primary); }

/* --- Client Logos --- */
.clients { padding: 44px 24px; background: var(--white); text-align: center; }
.clients__label { font-size: 11.5px; font-weight: 600; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.clients__grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.client-badge { padding: 10px 24px; background: var(--surface); border-radius: 6px; font-size: 13.5px; font-weight: 600; color: var(--text-muted); border: 1px solid var(--border); }

/* --- CTA Banner --- */
.cta-banner { padding: 56px 24px; background: var(--bg); }
.cta-banner__inner { max-width: 760px; margin: 0 auto; text-align: center; padding: 44px 32px; background: var(--white); border-radius: 14px; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.03); }
.cta-banner__inner h2 { margin-bottom: 8px; }
.cta-banner__inner p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.cta-banner__buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer { background: var(--dark); padding: 44px 24px 20px; color: rgba(255,255,255,0.4); font-size: 12.5px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-bottom: 28px; }
.footer__title { font-size: 12.5px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: 0.5px; }
.footer__logo-name { font-size: 18px; font-weight: 700; color: var(--white); font-family: 'Libre Baskerville', serif; }
.footer__logo-sub { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; margin-left: 6px; }
.footer a { color: rgba(255,255,255,0.4); display: block; margin-bottom: 6px; font-size: 12.5px; line-height: 1.5; }
.footer a.footer__link--blue { color: #7BAADF; }
.footer__address { display: flex; align-items: flex-start; gap: 6px; line-height: 1.6; margin-bottom: 10px; }
.footer__address svg { margin-top: 3px; flex-shrink: 0; width: 12px; height: 12px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; text-align: center; font-size: 11px; color: rgba(255,255,255,0.25); }

/* --- Floating CTAs --- */
.floating-cta { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 1000; }
.floating-cta__btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); }
.floating-cta__btn--phone { background: var(--primary); box-shadow: 0 4px 12px rgba(27,58,92,0.35); }
.floating-cta__btn--wa { width: 54px; height: 54px; background: var(--accent); box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.floating-cta__btn svg { width: 20px; height: 20px; }
.floating-cta__btn--wa svg { width: 22px; height: 22px; }

/* --- Why Us (on dark bg) --- */
.why-card { padding: 24px 20px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.why-card__icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(59,125,216,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-card__icon svg { width: 20px; height: 20px; color: #7BAADF; }
.why-card h4 { color: var(--white); margin-bottom: 6px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* --- Sector Cards --- */
.sector-card { padding: 22px 20px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; }
.sector-card__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sector-card__icon svg { width: 20px; height: 20px; color: var(--primary); }
.sector-card h4 { font-family: 'Libre Baskerville', serif; margin-bottom: 3px; }
.sector-card p { font-size: 12.5px; color: var(--text-muted); }

/* --- Product Category Card (catalog page) --- */
.catalog-card { cursor: pointer; }
.catalog-card__image { height: 180px; position: relative; }
.catalog-card__tag { position: absolute; top: 12px; left: 12px; }
.catalog-card__group { position: absolute; top: 12px; right: 12px; font-size: 10.5px; font-weight: 500; padding: 3px 9px; border-radius: 4px; background: rgba(255,255,255,0.85); color: var(--text-muted); }
.catalog-card__models { display: flex; flex-wrap: wrap; gap: 5px; margin: 12px 0 16px; }
.catalog-card__actions { display: flex; justify-content: space-between; align-items: center; }
.catalog-card__link { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }

/* --- Product Detail Card --- */
.product-card { margin-bottom: 20px; }
.product-card__top { display: flex; flex-wrap: wrap; }
.product-card__image { width: 100%; max-width: 380px; min-height: 280px; position: relative; }
.product-card__content { flex: 1; padding: 24px 28px; min-width: 300px; }
.product-card__brand { font-size: 11.5px; font-weight: 600; color: var(--blue); letter-spacing: 0.5px; margin-bottom: 6px; }
.product-card__name { font-size: 24px; margin-bottom: 4px; }
.product-card__tagline { font-size: 13.5px; color: var(--primary-light); font-weight: 600; margin-bottom: 12px; }
.product-card__desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; }
.product-card__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 18px; font-size: 12.5px; }
.product-card__spec-label { color: var(--text-muted); }
.product-card__spec-value { font-weight: 600; color: var(--text); }
.product-card__buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }

/* Expandable specs */
.product-card__full-specs { border-top: 1px solid var(--border); padding: 20px 28px; background: var(--bg); display: none; }
.product-card__full-specs.open { display: block; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td { padding: 9px 12px 9px 0; font-size: 12.5px; }
.specs-table td:first-child { color: var(--text-muted); width: 45%; }
.specs-table td:last-child { font-weight: 600; color: var(--text); }

/* --- Sticky Bottom Bar --- */
.sticky-bar { position: sticky; bottom: 0; z-index: 90; background: var(--white); border-top: 1px solid var(--border); padding: 10px 24px; box-shadow: 0 -2px 10px rgba(0,0,0,0.04); }
.sticky-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.sticky-bar__info { font-size: 14px; font-weight: 700; }
.sticky-bar__info span { font-size: 13px; color: var(--text-muted); font-weight: 400; margin-left: 8px; }
.sticky-bar__buttons { display: flex; gap: 8px; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; background: none; border: none; text-align: left; font-size: 14.5px; font-weight: 600; color: var(--text); font-family: 'Source Sans 3', sans-serif; }
.faq-item__question svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--text-muted); transition: transform 0.2s; }
.faq-item__question.open svg { transform: rotate(180deg); }
.faq-item__answer { font-size: 13.5px; color: var(--text-muted); padding-bottom: 16px; display: none; }
.faq-item__answer.open { display: block; }

/* --- Forms --- */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px; border-radius: 6px; border: 1px solid var(--border);
  font-size: 13.5px; background: var(--bg); color: var(--text);
}
.form-textarea { resize: vertical; }
.form-submit { padding: 12px 28px; background: var(--primary); color: var(--white); border-radius: 7px; font-size: 14.5px; font-weight: 600; border: none; cursor: pointer; }

/* --- Contact Page Layout --- */
.contact-layout { display: flex; gap: 32px; flex-wrap: wrap; }
.contact-form { flex: 1; min-width: 340px; }
.contact-sidebar { flex: 0 0 340px; }
.contact-sidebar__cta { padding: 24px 22px; background: var(--primary); border-radius: 10px; margin-bottom: 16px; }
.contact-sidebar__cta h3 { color: var(--white); font-size: 16px; margin-bottom: 14px; }
.contact-sidebar__info { padding: 18px 20px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); margin-bottom: 12px; }

/* --- Dealer Benefits --- */
.benefit-card { padding: 22px 20px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); }
.benefit-card svg { width: 22px; height: 22px; color: var(--primary); margin-bottom: 10px; }
.benefit-card h4 { font-family: 'Libre Baskerville', serif; margin-bottom: 4px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); }

/* --- Service Cards --- */
.service-card { padding: 28px 24px; background: var(--bg); border-radius: 12px; border: 1px solid var(--border); }
.service-card__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--text-muted); }

/* --- AMC Box --- */
.amc-box { padding: 28px 24px; background: var(--primary-pale); border-radius: 12px; max-width: 700px; }
.amc-box h3 { color: var(--primary); margin-bottom: 14px; }
.amc-item { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13.5px; }
.amc-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* --- Blog Cards --- */
.blog-card { display: block; overflow: hidden; }
.blog-card__image { height: 160px; }
.blog-card__body { padding: 18px 20px; }
.blog-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.blog-card__category { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 4px; background: var(--blue-light); color: var(--blue); }
.blog-card__date { font-size: 11.5px; color: var(--text-muted); }
.blog-card h3 { font-size: 16px; line-height: 1.35; margin-bottom: 8px; }
.blog-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.blog-card__link { font-size: 12.5px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }

/* --- Filter Buttons --- */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn { padding: 6px 14px; border-radius: 6px; font-size: 12.5px; font-weight: 600; border: none; background: var(--surface); color: var(--text-muted); font-family: 'Source Sans 3', sans-serif; }
.filter-btn--active { background: var(--primary); color: var(--white); }

/* --- Cert Cards (About) --- */
.cert-card { padding: 22px 20px; background: var(--bg); border-radius: 10px; border: 1px solid var(--border); }
.cert-card svg { width: 22px; height: 22px; color: var(--primary); margin-bottom: 10px; }

/* --- Office Cards --- */
.office-card { padding: 24px 22px; background: var(--white); border-radius: 10px; border: 1px solid var(--border); }
.office-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.office-card__icon { width: 40px; height: 40px; border-radius: 8px; background: var(--primary-pale); display: flex; align-items: center; justify-content: center; }
.office-card__icon svg { width: 18px; height: 18px; color: var(--primary); }

/* --- Related Products --- */
.related-card { padding: 18px; display: flex; justify-content: space-between; align-items: center; }
.related-card h4 { font-family: 'Libre Baskerville', serif; margin-bottom: 3px; }
.related-card p { font-size: 12px; color: var(--text-muted); }
.related-card svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar { position: sticky; top: 0; }
  .navbar .container { position: relative; }
  .navbar__toggle { display: block; }
  .navbar__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 20px;
    gap: 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 250;
  }
  .navbar__links.open { display: flex; }

  .hero { padding: 48px 24px 40px; }
  .hero-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .hero__logo-display {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  .hero__logo-display img {
    width: min(100%, 260px);
    max-width: 260px;
  }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .stats-row { margin-top: 36px; grid-template-columns: repeat(2, 1fr); }

  .page-header { padding: 34px 24px 30px; }
  .page-header__logo {
    display: block;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.09;
  }
  .page-header__logo img { height: 54px; }
  .page-header p { max-width: calc(100% - 80px); }

  .section { padding: 40px 24px; }
  .grid--catalog { grid-template-columns: 1fr; }

  .product-card__top { flex-direction: column; }
  .product-card__image { max-width: 100%; min-height: 180px; }
  .product-card__content { padding: 16px; }
  .product-card__specs { grid-template-columns: 1fr; }

  .contact-layout { flex-direction: column; }
  .contact-sidebar { flex: none; width: 100%; }

  .cta-banner__inner { padding: 24px 16px; }

  .footer__grid { grid-template-columns: 1fr; }

  .topbar .container { justify-content: center; }
  .topbar span { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .cta-banner__buttons { flex-direction: column; align-items: stretch; }
  .sticky-bar .container { flex-direction: column; text-align: center; }
  .sticky-bar__buttons { width: 100%; }
  .sticky-bar__buttons .btn { flex: 1; }
}

/* ============================================
   V5 — FINAL CLEAN STYLES
   ============================================ */

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero__content {
  flex: 1 1 560px;
  min-width: 0;
}
.hero__logo-display {
  flex: 0 0 380px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
.hero__logo-display img {
  width: min(100%, 380px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.25));
}

.page-header {
  position: relative;
  overflow: hidden;
}
.page-header__logo {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.page-header__logo img {
  height: 90px;
  width: auto;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}

.navbar__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 45px;
  width: auto;
  display: block;
  margin-bottom: 6px;
  opacity: 1;
}
.footer__company-name {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 8px;
}

.sector-card { transition: all 0.25s ease; }
.sector-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27,58,92,0.08);
  border-color: var(--primary-light);
}
.why-card { transition: all 0.25s ease; }
.why-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* Fix layout when specs are removed */
.product-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.product-card__content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.product-card__buttons {
  margin-top: auto;
}

/* Keep Ideal Applications inside the card flow */
.product-card__full-specs {
  width: 100%;
}

/* Fix the first card alignment */
.product-card {
  overflow: hidden;
}

@media (max-width: 768px) {
  .product-card__content {
    min-width: 100%;
  }
}
