/* ===== BNF PLUS — Modern Design System ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #06294a;
  --navy-2: #0a3a66;
  --blue: #0062BD;
  --blue-dark: #004f9a;
  --blue-light: #e6f0fb;
  --red: #CB3438;
  --amber: #f5a623;
  --ink: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e6eaf0;
  --bg: #f6f8fb;
  --white: #fff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow: 0 4px 20px rgba(15,23,42,.08);
  --shadow-lg: 0 18px 50px rgba(15,23,42,.14);
  --max: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand img.brand-logo { height: 34px; width: auto; display: block; }
.footer-brand .brand img.brand-logo { height: 38px; filter: brightness(0) invert(1); }
.brand { font-size: 26px; font-weight: 900; letter-spacing: -1px; flex-shrink: 0; display: flex; align-items: baseline; }
.brand .b { color: var(--navy); }
.brand .plus { color: var(--red); margin-left: 1px; }
.brand .tag { font-size: 10px; font-weight: 600; color: var(--muted-2); letter-spacing: 1px; margin-left: 8px; text-transform: uppercase; align-self: center; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 14px; font-size: 14.5px; font-weight: 500; color: var(--muted);
  border-radius: 8px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--bg); }
.nav a.active { color: var(--blue); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.header-phone::before { content: '\260E'; font-size: 13px; color: var(--blue); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; border-radius: 10px; border: none; cursor: pointer;
  font-family: inherit; transition: all .18s var(--ease); white-space: nowrap; font-size: 14.5px;
}
.btn-primary { background: var(--blue); color: #fff; padding: 11px 22px; box-shadow: 0 4px 14px rgba(22,104,196,.28); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(22,104,196,.36); }
.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); padding: 10px 20px; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--navy); padding: 13px 26px; font-size: 15px; }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: 12px 24px; font-size: 15px; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 30px; font-size: 16px; }

/* hamburger */
.menu-toggle { display: none; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); margin: 0 auto; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #0a4f8f 0%, #06294a 55%, #041d33 100%);
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 84px 24px 90px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #cfe3fa; font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 100px; margin-bottom: 22px; letter-spacing: .3px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.25); }
.hero h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber); }
.hero p.lead { font-size: clamp(16px,2vw,18.5px); color: #b9cce4; max-width: 480px; margin-bottom: 32px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust .t-num { font-size: 30px; font-weight: 900; letter-spacing: -1px; line-height: 1; }
.hero-trust .t-lbl { font-size: 13px; color: #8fa9c9; margin-top: 4px; }

.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 14px; box-shadow: var(--shadow-lg); backdrop-filter: blur(4px);
}
.hero-card img { width: 100%; height: 300px; object-fit: contain; border-radius: 10px; }
.hero-float {
  position: absolute; bottom: -20px; left: -20px;
  background: #fff; color: var(--ink); border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-float .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-float .ft { font-size: 15px; font-weight: 800; line-height: 1.1; }
.hero-float .fs { font-size: 12px; color: var(--muted); }

/* ===== MARQUEE ===== */
.marquee-sec { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; overflow: hidden; }
.marquee-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; animation: scroll 34s linear infinite; flex-shrink: 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { width: 132px; height: 54px; object-fit: contain; margin: 0 14px; flex-shrink: 0; opacity: .7; transition: opacity .25s; }
.marquee-track img:hover { opacity: 1; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section.bg { background: var(--bg); }
.section.navy { background: var(--navy); color: #fff; }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.sec-head.left { text-align: left; margin-left: 0; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section.navy .eyebrow { color: var(--amber); }
.sec-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 900; letter-spacing: -1px; line-height: 1.15; }
.sec-sub { font-size: 16.5px; color: var(--muted); margin-top: 14px; }
.section.navy .sec-sub { color: #aabfda; }

/* ===== CARD GRID ===== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4e2f3; }
.card-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.3px; }
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.card .badge { display: inline-block; margin-top: 14px; background: var(--blue-light); color: var(--blue-dark); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 100px; }

/* feature card variant (navy section) */
.feat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: background .2s, transform .2s; }
.feat:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }
.feat .fi { width: 50px; height: 50px; border-radius: 12px; background: rgba(245,166,35,.16); color: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.feat h3 { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.feat p { font-size: 14px; color: #aabfda; line-height: 1.6; }

/* ===== STATS BAND ===== */
.stats-band { background: var(--blue); color: #fff; }
.stats-inner { max-width: var(--max); margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .n { font-size: 46px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.stat .l { font-size: 14px; opacity: .82; margin-top: 8px; font-weight: 500; }
.stats-inner .stat + .stat { border-left: 1px solid rgba(255,255,255,.16); }

/* ===== BRAND TAGS ===== */
.brand-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; margin-top: 24px; }
.brand-block h3 { font-size: 14px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.brand-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.brand-tag { background: var(--bg); border: 1px solid var(--line); color: var(--ink); font-size: 13.5px; font-weight: 600; padding: 7px 15px; border-radius: 100px; transition: all .15s; }
.brand-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); }

/* ===== SPLIT / ABOUT ===== */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(26px,3.2vw,36px); font-weight: 900; letter-spacing: -1px; margin-bottom: 20px; line-height: 1.15; }
.split p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; line-height: 1.7; }
.info-box { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; border-radius: var(--radius); padding: 28px; margin-bottom: 18px; }
.info-box h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 9px; }
.info-box p { color: #b9cce4; font-size: 14.5px; margin: 0; }
.info-box .star { color: var(--amber); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(110% 130% at 75% 0%, #0a4f8f 0%, #06294a 60%, #041d33 100%);
  color: #fff; text-align: center; padding: 72px 24px 76px;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; }
.page-hero .ph-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero .crumb { font-size: 13px; color: #8fa9c9; margin-bottom: 14px; letter-spacing: .3px; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(30px,4.4vw,48px); font-weight: 900; letter-spacing: -1.4px; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: #b9cce4; }

/* ===== CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; border-radius: 22px; padding: 56px 48px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 20px 20px; }
.cta-band h2 { position: relative; font-size: clamp(24px,3vw,34px); font-weight: 900; letter-spacing: -1px; margin-bottom: 12px; }
.cta-band p { position: relative; color: #cfe0f5; font-size: 16.5px; margin-bottom: 28px; }
.cta-actions { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: #fff; }
.footer-top { max-width: var(--max); margin: 0 auto; padding: 64px 24px 44px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; }
.footer-brand .brand { font-size: 26px; margin-bottom: 14px; }
.footer-brand .brand .b { color: #fff; }
.footer-desc { font-size: 14px; color: #93a8c6; line-height: 1.7; max-width: 280px; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .15s, transform .15s; }
.social-row a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #6f86a6; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: #aebfd6; line-height: 2.05; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.09); }
.footer-bar-inner { max-width: var(--max); margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #6f86a6; flex-wrap: wrap; gap: 8px; }

/* ===== CONTACT ===== */
.contact-strip { background: var(--bg); border-bottom: 1px solid var(--line); }
.contact-strip-inner { max-width: var(--max); margin: 0 auto; padding: 30px 24px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.qbtn { display: flex; align-items: center; gap: 12px; padding: 15px 24px; border-radius: 12px; font-weight: 700; transition: transform .12s, box-shadow .15s; }
.qbtn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.qbtn .qi { font-size: 22px; line-height: 1; }
.qbtn .ql { display: flex; flex-direction: column; line-height: 1.3; }
.qbtn .ql span:first-child { font-size: 11.5px; font-weight: 500; opacity: .8; }
.qbtn .ql span:last-child { font-size: 15px; font-weight: 700; }
.qbtn.call { background: var(--blue); color: #fff; }
.qbtn.wa { background: #25d366; color: #fff; }
.qbtn.mail { background: #fff; color: var(--ink); border: 1px solid var(--line); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.info-row { display: flex; gap: 15px; margin-bottom: 26px; align-items: flex-start; }
.info-ico { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.info-row h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.info-row p, .info-row a { font-size: 14.5px; color: var(--muted); display: block; line-height: 1.7; }
.info-row a:hover { color: var(--blue); }
.hours-tbl { font-size: 14px; color: var(--muted); border-collapse: collapse; }
.hours-tbl td { padding: 3px 0; }
.hours-tbl td:first-child { padding-right: 16px; font-weight: 600; color: var(--ink); white-space: nowrap; }

.form-card { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 34px; }
.form-card h2 { font-size: 21px; font-weight: 800; margin-bottom: 24px; }
.fgroup { margin-bottom: 17px; }
.fgroup label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.fgroup input, .fgroup select, .fgroup textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 14.5px; font-family: inherit; background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; outline: none; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,104,196,.12); }
.fgroup textarea { resize: vertical; min-height: 110px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.success { display: none; text-align: center; padding: 36px 16px; }
.success .ck { font-size: 52px; margin-bottom: 14px; }
.success h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.success p { font-size: 14.5px; color: var(--muted); }

.map-wrap { width: 100%; }
.map-bar { max-width: var(--max); margin: 0 auto; padding: 0 24px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.map-bar h3 { font-size: 19px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.1); }

/* ===== INSTAGRAM (gallery) ===== */
.ig-banner { background: linear-gradient(95deg,#833ab4,#fd1d1d 55%,#fcb045); color: #fff; }
.ig-inner { max-width: var(--max); margin: 0 auto; padding: 30px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ig-left { display: flex; align-items: center; gap: 16px; }
.ig-logo { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0; }
.ig-text h3 { font-size: 20px; font-weight: 800; }
.ig-text p { font-size: 14.5px; opacity: .94; }
.ig-follow { background: #fff; color: #c1278e; padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 800; transition: transform .1s, opacity .15s; }
.ig-follow:hover { opacity: .92; transform: translateY(-1px); }
.ig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ig-tile { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 22px; color: #fff; transition: transform .18s, box-shadow .18s; }
.ig-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ig-tile .ic { font-size: 46px; margin-bottom: 12px; }
.ig-tile h4 { font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.ig-tile p { font-size: 12.5px; opacity: .92; line-height: 1.45; }
.ig-corner { position: absolute; top: 14px; right: 14px; font-size: 17px; opacity: .85; }
.t1{background:linear-gradient(135deg,#1668c4,#0a2540)} .t2{background:linear-gradient(135deg,#2d9b5f,#176b3c)}
.t3{background:linear-gradient(135deg,#d4831f,#a85e10)} .t4{background:linear-gradient(135deg,#c0392b,#8e1f14)}
.t5{background:linear-gradient(135deg,#5b54c9,#322d8a)} .t6{background:linear-gradient(135deg,#16a0a0,#0c6b6b)}
.t7{background:linear-gradient(135deg,#475569,#1a1a1a)} .t8{background:linear-gradient(135deg,#c1278e,#7d1a5c)}
.t9{background:linear-gradient(135deg,#1668c4,#0f4f9c)}
.ig-cta-wrap { text-align: center; margin-top: 44px; }
.ig-cta { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(95deg,#833ab4,#fd1d1d,#fcb045); color: #fff; padding: 15px 32px; border-radius: 12px; font-size: 16px; font-weight: 800; transition: opacity .15s, transform .1s; }
.ig-cta:hover { opacity: .92; transform: translateY(-1px); }


/* ===== SVG ICONS ===== */
svg { display: block; }
.card-icon { color: var(--blue); }
.card-icon svg { width: 26px; height: 26px; }
.feat .fi { color: var(--amber); }
.feat .fi svg { width: 24px; height: 24px; }
.info-ico { color: var(--blue); }
.info-ico svg { width: 20px; height: 20px; }
.qi { display: flex; align-items: center; }
.qi svg { width: 22px; height: 22px; }
.social-row a { color: #fff; }
.social-row a svg { width: 18px; height: 18px; }
.hero-float .icon { color: var(--blue); }
.hero-float .icon svg { width: 20px; height: 20px; }
.ig-logo { color: #fff; }
.ig-logo svg { width: 28px; height: 28px; }
.ig-corner { display: inline-flex; }
.ig-corner svg { width: 16px; height: 16px; }
.ig-tile .ic { display: flex; align-items: center; justify-content: center; }
.ig-tile .ic svg { width: 42px; height: 42px; }
.ig-follow svg, .ig-cta svg { width: 18px; height: 18px; }
.ig-cta { align-items: center; }
.success .ck { color: #16a34a; display: flex; justify-content: center; }
.success .ck svg { width: 52px; height: 52px; }
.map-bar h3 { color: var(--ink); }
.map-bar h3 svg { width: 20px; height: 20px; color: var(--blue); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.hero-badge .dot { flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s var(--ease); z-index: 199; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 16px; font-size: 16px; border-radius: 8px; }
  .menu-toggle { display: flex; }
  .header-phone { display: none; }
  .header-cta .btn-primary { display: none; }
  .header-inner { height: 60px; padding: 0 18px; }
  .brand img.brand-logo { height: 28px; }
  .wrap { padding: 0 18px; }
  .section { padding: 54px 0; }
  .sec-head { margin-bottom: 36px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; gap: 14px; }
  .hero-inner { padding: 54px 18px 64px; gap: 36px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-trust { gap: 22px; }
  .hero-visual { max-width: 100%; margin: 0 auto; }
  .hero-card img { height: 260px; }
  .hero-float { left: 50%; transform: translateX(-50%); bottom: -18px; white-space: nowrap; }
  .page-hero { padding: 54px 20px 58px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 30px 16px; padding: 44px 18px; }
  .stats-inner .stat + .stat { border-left: none; }
  .stat .n { font-size: 38px; }
  .frow { grid-template-columns: 1fr; }
  .contact-strip-inner { padding: 22px 18px; gap: 12px; }
  .qbtn { width: 100%; justify-content: center; }
  .form-card { padding: 24px; }
  .ig-grid { grid-template-columns: repeat(2,1fr); gap: 11px; }
  .ig-tile { padding: 16px; } .ig-tile .ic { font-size: 34px; margin-bottom: 8px; } .ig-tile h4 { font-size: 14px; } .ig-tile p { font-size: 11px; }
  .ig-inner { justify-content: center; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 48px 18px 36px; }
  .footer-bar-inner { flex-direction: column; gap: 6px; text-align: center; padding: 18px; }
  .cta-band { padding: 40px 22px; }
  .cta-actions { flex-direction: column; } .cta-actions .btn { width: 100%; justify-content: center; }
  .map-bar { justify-content: center; text-align: center; }
  .map-wrap iframe { height: 320px; }
  .split { gap: 28px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 30px; letter-spacing: -1px; }
  .hero-trust { gap: 16px; }
  .hero-trust .t-num { font-size: 26px; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .sec-title { font-size: 24px; }
  .stat .n { font-size: 34px; }
}
/* ===== PRODUCT PHOTO GALLERY ===== */
.prod-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 0; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4e2f3; }
.prod-img { aspect-ratio: 4 / 3; background: #fff; display: flex; align-items: center; justify-content: center; padding: 16px; }
.prod-img img { width: 100%; height: 100%; object-fit: contain; }
.prod-cap { padding: 14px 18px 18px; border-top: 1px solid var(--line); }
.prod-cap h4 { font-size: 16px; font-weight: 800; letter-spacing: -.2px; margin-bottom: 4px; }
.prod-cap p { font-size: 13px; color: var(--muted); }
@media (max-width: 760px) { .prod-gallery { grid-template-columns: 1fr 1fr; gap: 12px; } .prod-cap h4 { font-size: 14px; } .prod-cap p { font-size: 12px; } }
@media (max-width: 420px) { .prod-gallery { grid-template-columns: 1fr; } }