/* ── CHF Trading – Shared Stylesheet ───────────────────────────── */
:root {
  --primary: #4A90C4;
  --primary-dark: #3a7ab0;
  --primary-light: #e8f3fb;
  --fg: #1a1a2e;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #f8fafc;
  --bg: #ffffff;
  --white: #ffffff;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow: 0 4px 24px rgba(74,144,196,0.08);
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-1 { animation: fadeUp 0.6s ease both; }
.anim-2 { animation: fadeUp 0.6s 0.15s ease both; }
.anim-3 { animation: fadeUp 0.6s 0.30s ease both; }
.anim-4 { animation: fadeUp 0.6s 0.45s ease both; }
.fade-in-view { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-view.visible { opacity: 1; transform: translateY(0); }

/* ── Layout Helpers ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
main { flex: 1; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-size: 15px;
  font-weight: 600; border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s ease; text-decoration: none; line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: #f0f8ff; }

/* ── Navbar ─────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 76px; display: flex; align-items: center;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-logo img { height: 50px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 36px; }
.navbar-links a {
  font-size: 16.5px; font-weight: 600; color: var(--fg);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--primary); }
.navbar-right { display: flex; align-items: center; gap: 28px; }
.navbar-social { display: flex; align-items: center; gap: 16px; padding-left: 28px; border-left: 1px solid var(--border); }
.navbar-social a { color: var(--fg); display: inline-flex; transition: color 0.2s, transform 0.2s; }
.navbar-social a:hover { color: var(--primary); transform: translateY(-2px); }
.navbar-social svg { width: 19px; height: 19px; }
.mobile-social { display: flex; align-items: center; gap: 22px; padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--border); }
.mobile-social a { color: var(--fg); display: inline-flex; transition: color 0.2s; }
.mobile-social a:hover { color: var(--primary); }
.mobile-social svg { width: 22px; height: 22px; }
.navbar-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--fg); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 24px; flex-direction: column; gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 18px; font-weight: 600; color: var(--fg); padding: 4px 0; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }

/* ── Page Header (image banner) ─────────────────── */
.page-header {
  position: relative; overflow: hidden;
  padding: 175px 0 95px;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(18,26,44,0.94) 0%, rgba(26,42,68,0.84) 45%, rgba(74,144,196,0.55) 100%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: #a9d2ef; margin-bottom: 20px;
}
.page-header .eyebrow::before {
  content: ''; width: 30px; height: 2px; background: var(--primary);
  display: inline-block; border-radius: 2px;
}
.page-header h1 {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; margin-bottom: 18px; color: #fff; line-height: 1.1;
}
.page-header p { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 600px; line-height: 1.6; }

/* ── Modern interactions ────────────────────────── */
.card, .presence-card, .teaser-box, .office-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover, .presence-card:hover, .teaser-box:hover, .office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(74,144,196,0.15);
  border-color: rgba(74,144,196,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(74,144,196,0.38); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }

/* ── Home Hero (slideshow + form overlay) ───────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding-top: 76px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease-in-out; transform: scale(1.04); }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(255,255,255,0.97) 16%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.5) 66%, rgba(20,52,82,0.4) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr 410px; gap: 56px; align-items: center; padding: 60px 0; }
.hero-text { max-width: 600px; }
.hero-form-card { background: rgba(255,255,255,0.97); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 26px 64px rgba(15,42,66,0.25); padding: 32px; }
.hero-form-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.hero-form-card .hf-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; line-height: 1.6; }
.hf-form .form-group { margin-bottom: 13px; }
.hf-form label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.hf-form input, .hf-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 14px; background: #fff; box-sizing: border-box; transition: border-color 0.2s, box-shadow 0.2s; }
.hf-form input:focus, .hf-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74,144,196,0.15); }
.hf-form textarea { resize: vertical; min-height: 78px; }
.hf-form button { width: 100%; justify-content: center; margin-top: 4px; }
.hf-success { display: none; text-align: center; padding: 18px 4px; }
.hf-success.show { display: block; }
.hf-success svg { width: 50px; height: 50px; color: var(--primary); margin-bottom: 12px; }
.hf-success h4 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 8px; }
.hf-success p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Footer ─────────────────────────────────────── */
footer {
  position: relative; margin-top: auto; padding: 72px 0 0;
  background-image: url('images/hero-bg.png');
  background-size: cover; background-position: center;
  color: #e6eef5;
}
footer::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(15,42,66,0.92) 0%, rgba(20,52,82,0.96) 100%);
}
footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-logo img { height: 40px; margin-bottom: 16px; background: #fff; padding: 8px 10px; border-radius: 8px; }
.footer-logo p { font-size: 15px; color: #c3d2e0; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-serif); font-weight: 600; margin-bottom: 20px; font-size: 18px; color: #fff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; color: #c3d2e0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-offices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-office strong { display: block; margin-bottom: 8px; font-size: 15.5px; color: #fff; }
.footer-office p { font-size: 14px; color: #c3d2e0; line-height: 1.7; display: flex; align-items: flex-start; gap: 7px; margin-bottom: 5px; }
.footer-office p svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: #7fb4dc; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 14px; color: #a7b8c8; }

/* ── WhatsApp Button ────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

/* ── Section utility ────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 8px; }
.section-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.section-sub { font-size: 1.1rem; color: var(--muted); max-width: 640px; line-height: 1.7; }

/* ── Cards ──────────────────────────────────────── */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.card-light { background: var(--card); }

/* ── Stats Bar ──────────────────────────────────── */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--card); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 40px 24px; gap: 12px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--primary); }
.stat-icon svg { width: 32px; height: 32px; }
.stat-value { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* ── Sector Cards ───────────────────────────────── */
.sectors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sector-card {
  position: relative; height: 320px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); cursor: pointer;
  display: block;
}
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sector-card:hover img { transform: scale(1.05); }
.sector-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.sector-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.sector-info h4 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.sector-info p { color: rgba(255,255,255,0.85); font-size: 14px; }

/* ── About Teasers ──────────────────────────────── */
.teaser-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.teaser-box svg { width: 32px; height: 32px; color: var(--primary); }
.teaser-box h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; }

/* ── CTA Strip ──────────────────────────────────── */
.cta-strip { background: var(--primary); color: #fff; padding: 80px 0; text-align: center; }
.cta-strip h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.cta-strip p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── Products Page ──────────────────────────────── */
.product-block { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--border); }
.product-block:last-child { border-bottom: none; }
.product-block.reverse .product-img { order: 2; }
.product-block.reverse .product-content { order: 1; }
.product-img { height: 400px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); }
.product-img-title { position: absolute; bottom: 24px; left: 24px; right: 24px; font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: #fff; }
.product-desc { font-size: 1.05rem; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.product-specs { background: rgba(74,144,196,0.05); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.product-specs h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 20px; }
.product-specs ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.product-specs li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.product-specs li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Services Page ──────────────────────────────── */
/* ── Services Slider ─────────────────────────────── */
.services-slider { position: relative; padding: 0 4px; }
.slider-viewport { overflow: hidden; }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
.service-slide { flex: 0 0 33.333%; max-width: 33.333%; padding: 8px 12px; box-sizing: border-box; }
.service-slide-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-slide-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(74,144,196,0.18); border-color: rgba(74,144,196,0.35); }
.service-slide-img { position: relative; height: 200px; background-size: cover; background-position: center; }
.service-slide-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,42,66,0.15) 0%, rgba(15,42,66,0.6) 100%); }
.service-slide-icon { position: absolute; bottom: -26px; left: 24px; width: 54px; height: 54px; background: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(15,42,66,0.18); z-index: 2; }
.service-slide-icon svg { width: 27px; height: 27px; color: var(--primary); }
.service-slide-body { padding: 42px 26px 30px; flex: 1; }
.service-slide-body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-slide-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.slider-arrow {
  position: absolute; top: 100px; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--primary); font-size: 1.7rem; line-height: 1; cursor: pointer;
  box-shadow: 0 6px 20px rgba(15,42,66,0.15); transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--primary); color: #fff; transform: translateY(-50%) scale(1.08); }
.slider-arrow:disabled { opacity: 0.3; cursor: default; }
.slider-arrow:disabled:hover { background: #fff; color: var(--primary); transform: translateY(-50%); }
.slider-prev { left: -12px; }
.slider-next { right: -12px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; transition: background 0.25s, transform 0.25s; }
.slider-dots button.active { background: var(--primary); transform: scale(1.35); }

/* ── Contact Page ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.office-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.office-card h3 { font-size: 14px; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.office-card h3 svg { width: 16px; height: 16px; }
.office-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
.office-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.contact-form-wrap { background: rgba(74,144,196,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.contact-form-wrap h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: var(--font-sans); background: var(--bg);
  color: var(--fg); transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(74,144,196,0.1); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 60px 20px; }
.form-success svg { width: 64px; height: 64px; color: var(--primary); margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 10px; }
.form-success p { color: var(--muted); margin-bottom: 28px; }

/* ── Global Presence cards ──────────────────────── */
.presence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.presence-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.presence-card svg { width: 40px; height: 40px; color: var(--primary); margin-bottom: 24px; }
.presence-card h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.presence-card p { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.presence-loc { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--fg); }
.presence-loc svg { width: 14px; height: 14px; color: var(--primary); }
.blockquote { border-left: 3px solid var(--primary); padding: 12px 20px; margin: 20px 0; font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-social { display: none; }
  .navbar-right { gap: 0; }
  .hamburger { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .sectors-grid { grid-template-columns: 1fr; }
  .product-block { grid-template-columns: 1fr; }
  .product-block.reverse .product-img, .product-block.reverse .product-content { order: unset; }
  .service-slide { flex-basis: 50%; max-width: 50%; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
  .presence-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .hero-form-card { width: 100%; max-width: 480px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-form-card { padding: 24px; }
  .service-slide { flex-basis: 100%; max-width: 100%; }
  .slider-prev { left: 2px; }
  .slider-next { right: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .product-img { height: 260px; }
  .sector-card { height: 240px; }
}
