/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #125d76; --navy-lt: #1a7a9a;
  --orange: #E8650A; --orange-lt: #FF7A1F;
  --cream: #F7F5F2; --white: #FDFCFA;
  --text: #1A1A1A; --muted: #6B6B6B;
  --border: rgba(18,93,118,0.12);
}
body { font-family: 'DM Sans', sans-serif; background: var(--cream); }

/* ── NAVBAR ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 68px; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; background: rgba(253,252,250,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-logo { text-decoration: none; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13.5px; color: var(--text); padding: 6px 14px; border-radius: 6px; display: flex; align-items: center; gap: 4px; transition: all 0.18s; }
.nav-links a:hover { background: rgba(18,93,118,0.06); color: var(--navy); }
.nav-links svg { width: 10px; height: 10px; opacity: 0.5; }
.has-drop { position: relative; }
.has-drop > a svg { transition: transform 0.25s; }
.has-drop:hover > a svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 6px; min-width: 140px; z-index: 300; box-shadow: 0 8px 28px rgba(18,93,118,0.12); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.22s ease; }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 6px; font-size: 13px; color: var(--text); text-decoration: none; transition: all 0.15s; background: none !important; }
.dropdown a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background 0.15s; }
.dropdown a:hover { background: rgba(18,93,118,0.05) !important; color: var(--navy); }
.dropdown a:hover::before { background: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; font-weight: 500; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 6px; border: 1px solid var(--border); border-radius: 99px; padding: 6px 14px; transition: border-color 0.18s; }
.nav-phone:hover { border-color: var(--navy); }
.nav-phone svg { width: 12px; height: 12px; }
.nav-cta { background: var(--orange); color: #fff; text-decoration: none; font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: 99px; transition: all 0.2s; }
.nav-cta:hover { background: var(--orange-lt); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 199; flex-direction: column; background: rgba(253,252,250,0.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); max-height: calc(100vh - 60px); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.m-item { border-bottom: 1px solid var(--border); }
.m-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; font-size: 15px; color: var(--text); cursor: pointer; text-decoration: none; transition: background 0.15s; background: none; border: none; width: 100%; }
.m-row:hover { background: rgba(18,93,118,0.04); }
.m-row span { font-size: 15px; color: var(--text); }
.m-chevron { width: 12px; height: 12px; transition: transform 0.25s; opacity: 0.5; }
.has-sub.open .m-chevron { transform: rotate(180deg); }
.m-sub { display: none; background: rgba(18,93,118,0.03); border-top: 1px solid var(--border); }
.has-sub.open .m-sub { display: block; }
.m-sub a { display: flex; align-items: center; gap: 10px; padding: 12px 24px 12px 40px; font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.15s; border-bottom: 1px solid var(--border); }
.m-sub a:last-child { border-bottom: none; }
.m-sub a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.m-sub a:hover { color: var(--navy); }
.m-sub a:hover::before { background: var(--orange); }
.m-divider { height: 1px; background: var(--border); }
.m-phone { display: flex; align-items: center; gap: 10px; padding: 14px 24px; font-size: 14px; font-weight: 500; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--border); }
.m-phone svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; }
.m-cta { margin: 16px 24px 20px; background: var(--navy); color: #fff; padding: 14px 20px; border-radius: 6px; text-align: center; text-decoration: none; font-size: 14px; font-weight: 500; display: block; transition: background 0.2s; }
.m-cta:hover { background: var(--navy-lt); }

/* ── FLOATING WA (desktop only) ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 300; 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); text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; }

/* ── MOBILE BOTTOM CTA BAR ── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); }
.mcta-btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 10px 6px; text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 0.03em; transition: background 0.15s; border-right: 1px solid var(--border); }
.mcta-btn:last-child { border-right: none; }
.mcta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mcta-call { color: var(--navy); }
.mcta-call svg { stroke: var(--navy); fill: none; }
.mcta-call:hover { background: rgba(18,93,118,0.06); }
.mcta-wa { color: #25D366; }
.mcta-wa svg { fill: #25D366; }
.mcta-wa:hover { background: rgba(37,211,102,0.06); }
.mcta-loc { color: var(--orange); }
.mcta-loc svg { stroke: var(--orange); fill: none; }
.mcta-loc:hover { background: rgba(232,101,10,0.06); }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 46% 54%; align-items: start; }
.hero-left { position: sticky; top: 0; height: 100vh; background: var(--white); display: flex; flex-direction: column; justify-content: center; padding: 120px 60px 60px 64px; overflow: hidden; }
.hero-left::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(18,93,118,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(18,93,118,0.03) 1px,transparent 1px); background-size: 40px 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; width: fit-content; background: rgba(232,101,10,0.08); color: var(--orange); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; border: 1px solid rgba(232,101,10,0.2); margin-bottom: 28px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.hero-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px,5vw,62px); font-weight: 700; line-height: 1.08; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 22px; }
.hero-heading em { font-style: italic; color: var(--orange); display: block; }
.hero-sub { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 380px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 56px; }
.btn-primary { background: var(--navy); color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; padding: 14px 32px; border-radius: 4px; display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--navy); transition: all 0.22s; }
.btn-primary:hover { background: var(--navy-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,93,118,0.2); }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-wa { display: flex; align-items: center; gap: 6px; color: #25D366; font-size: 13px; font-weight: 500; text-decoration: none; }
.btn-wa svg { width: 18px; height: 18px; }
.btn-wa:hover { opacity: 0.8; }
.hero-stats { display: flex; align-items: center; border-top: 1px solid var(--border); padding-top: 28px; }
.stat { padding-right: 28px; margin-right: 28px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-num span { font-size: 18px; color: var(--orange); }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.03em; }
.hero-right { display: flex; flex-direction: column; gap: 12px; padding: 80px 12px 12px 12px; }
.slide { position: relative; border-radius: 16px; overflow: hidden; height: 90vh; flex-shrink: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.slide:hover img { transform: scale(1.03); }
.slide-num { position: absolute; top: 20px; right: 20px; font-size: 12px; font-weight: 500; color: #fff; letter-spacing: 0.08em; background: rgba(18,93,118,0.5); backdrop-filter: blur(6px); padding: 4px 12px; border-radius: 99px; }
.slide-label { position: absolute; bottom: 24px; left: 24px; background: rgba(253,252,250,0.92); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.slide-label-icon { width: 34px; height: 34px; background: var(--navy); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.slide-label-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.slide-label-text p:first-child { font-size: 13px; font-weight: 500; color: var(--navy); }
.slide-label-text p:last-child { font-size: 11px; color: var(--muted); margin-top: 1px; }
.hero-rating { position: absolute; top: 20px; left: 20px; background: rgba(253,252,250,0.95); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; text-align: center; }
.rating-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
.rating-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; margin: 2px 0; }
.rating-label { font-size: 10px; color: var(--muted); white-space: nowrap; }

/* ── FEATURES ── */
.features { background: var(--navy); padding: 80px 64px; position: relative; overflow: hidden; }
.features::before { content: ''; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px); background-size: 48px 48px; }
.features-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; }
.features-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.features-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 700; color: #fff; line-height: 1.1; }
.features-heading em { font-style: italic; color: rgba(255,255,255,0.5); }
.features-cta { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; background: var(--orange); color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; padding: 14px 28px; border-radius: 4px; border: 2px solid var(--orange); transition: all 0.22s; white-space: nowrap; }
.features-cta:hover { background: var(--orange-lt); border-color: var(--orange-lt); transform: translateY(-2px); }
.features-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.features-cta:hover svg { transform: translateX(3px); }
.features-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.feat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px 24px; transition: all 0.25s; }
.feat-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(232,101,10,0.4); transform: translateY(-4px); }
.feat-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.25s; }
.feat-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.7); fill: none; transition: stroke 0.25s; }
.feat-card:hover .feat-icon { background: var(--orange); border-color: var(--orange); }
.feat-card:hover .feat-icon svg { stroke: #fff; }
.feat-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feat-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── PRODUCTS ── */
.products-section { background: var(--white); padding: 80px 64px; }
.prod-tabs-wrapper { display: flex; justify-content: center; margin-bottom: 20px; }
.prod-tabs { display: flex; border-bottom: 2px solid var(--border); }
.prod-tab { position: relative; background: none; border: none; cursor: pointer; outline: none; font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5vw,64px); font-weight: 700; color: rgba(18,93,118,0.25); padding: 0 48px 16px; transition: color 0.3s; }
.prod-tab.active { color: var(--navy); }
.prod-tab:hover { color: var(--navy); }
.tab-line { position: absolute; bottom: -2px; left: 48px; right: 48px; height: 3px; background: var(--orange); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; display: block; }
.prod-tab.active .tab-line { transform: scaleX(1); }
.prod-panel { display: none; }
.prod-panel.active { display: block; }
.prod-desc { text-align: center; font-size: 15px; font-weight: 300; color: var(--muted); max-width: 580px; margin: 0 auto 48px; line-height: 1.7; }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.prod-card { display: flex; flex-direction: column; }
.prod-img-wrap { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.06); }
.prod-overlay { position: absolute; inset: 0; background: rgba(18,93,118,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.prod-card:hover .prod-overlay { opacity: 1; }
.prod-view { background: #fff; color: var(--navy); font-size: 13px; font-weight: 500; text-decoration: none; padding: 10px 20px; border-radius: 4px; transition: background 0.2s; }
.prod-view:hover { background: var(--orange); color: #fff; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--border); }
.prod-name { font-size: 15px; font-weight: 400; color: var(--text); }
.prod-arrow { font-size: 16px; color: var(--orange); text-decoration: none; transition: transform 0.2s; display: inline-block; }
.prod-card:hover .prod-arrow { transform: translateX(4px); }
.prod-explore { display: flex; justify-content: center; margin-top: 40px; }
.prod-explore-btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); font-size: 14px; font-weight: 500; border: 2px solid var(--navy); padding: 13px 32px; border-radius: 4px; transition: all 0.22s; }
.prod-explore-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.prod-explore-btn:hover { background: var(--navy); color: #fff; }
.prod-explore-btn:hover svg { transform: translateX(3px); }

/* ── PROCESS ── */
.process-section { background: var(--cream); padding: 80px 64px; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.process-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3.5vw,48px); font-weight: 700; color: var(--navy); line-height: 1.2; }
.process-heading em { font-style: italic; color: var(--orange); }
.process-track { display: flex; align-items: flex-start; justify-content: center; padding: 20px 0 10px; flex-wrap: nowrap; }
.step-connector { width: 60px; flex-shrink: 0; margin-top: 33px; }
.step-connector svg { width: 100%; height: auto; overflow: visible; }
.process-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; width: 96px; }
.step-circle { width: 80px; height: 80px; border-radius: 50%; background: #fff; border: 2px dashed rgba(18,93,118,0.2); display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.3s; box-shadow: 0 4px 16px rgba(18,93,118,0.08); }
.step-circle:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(232,101,10,0.15); transform: translateY(-4px); }
.step-circle svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; transition: stroke 0.25s; }
.step-circle:hover svg { stroke: var(--orange); }
.step-ring { position: absolute; inset: -7px; border-radius: 50%; border: 1.5px dashed rgba(18,93,118,0.1); pointer-events: none; }
.step-num { font-size: 10px; font-weight: 600; color: var(--orange); letter-spacing: 0.1em; }
.step-label { font-size: 11px; font-weight: 400; color: var(--text); text-align: center; line-height: 1.4; }
.process-cta { display: flex; justify-content: center; margin-top: 56px; }
.process-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; text-decoration: none; font-size: 14px; font-weight: 500; padding: 14px 40px; border-radius: 4px; border: 2px solid var(--navy); transition: all 0.22s; letter-spacing: 0.04em; text-transform: uppercase; }
.process-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.process-btn:hover { background: var(--navy-lt); transform: translateY(-2px); }
.process-btn:hover svg { transform: translateX(3px); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); padding: 80px 64px; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; text-align: center; }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3.5vw,46px); font-weight: 700; color: var(--navy); line-height: 1.15; text-align: center; margin-bottom: 48px; }
.section-heading em { font-style: italic; color: var(--orange); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--cream); border-radius: 16px; padding: 28px 24px; border: 1px solid var(--border); transition: all 0.25s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(18,93,118,0.1); border-color: rgba(18,93,118,0.2); }
.testi-stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-quote::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--orange); opacity: 0.3; line-height: 0; vertical-align: -18px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(18,93,118,0.15); }
.testi-name { font-size: 14px; font-weight: 500; color: var(--navy); }
.testi-role { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── AWARDS ── */
.awards { background: var(--cream); padding: 80px 64px; }
.awards-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.awards-left h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3.5vw,46px); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.awards-left h2 em { font-style: italic; color: var(--orange); }
.awards-left p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 420px; }
.awards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.award-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px 16px; text-align: center; transition: all 0.25s; }
.award-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(18,93,118,0.1); border-color: var(--navy); }
.award-icon { width: 56px; height: 56px; margin: 0 auto 12px; background: rgba(18,93,118,0.06); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.award-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; }
.award-title { font-size: 13px; font-weight: 500; color: var(--navy); line-height: 1.4; }
.award-year { font-size: 11px; color: var(--muted); margin-top: 4px; }
.award-badge { display: inline-block; margin-top: 8px; font-size: 10px; font-weight: 500; color: var(--orange); background: rgba(232,101,10,0.08); border: 1px solid rgba(232,101,10,0.2); padding: 2px 8px; border-radius: 99px; }

/* ── GALLERY ── */
.gallery { background: var(--navy); padding: 80px 64px; }
.gallery .section-eyebrow { color: rgba(255,255,255,0.6); }
.gallery .section-heading { color: #fff; }
.gallery .section-heading em { color: rgba(255,255,255,0.4); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 220px 220px; gap: 12px; margin-top: 48px; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(18,93,118,0.45); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-size: 13px; font-weight: 500; color: #fff; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── FOOTER ── */
footer { background: #0d1f2d; padding: 64px 64px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.2s; text-decoration: none; }
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.7); stroke: none; }
.footer-col h4 { font-size: 13px; font-weight: 500; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { text-decoration: none; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); text-decoration: none; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ════════ TABLET ≤768px ════════ */
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  nav { padding: 0 20px; height: 60px; }
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .wa-float { display: none !important; }
  .mobile-cta-bar { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { position: relative; height: auto; padding: 80px 20px 36px; }
  .hero-heading { font-size: clamp(30px,8vw,44px); margin-bottom: 16px; }
  .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 32px; gap: 12px; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-wa { justify-content: center; }
  .stat { padding-right: 14px; margin-right: 14px; }
  .stat-num { font-size: 20px; }
  .stat-label { font-size: 10px; }
  .hero-right { flex-direction: row; overflow-x: auto; padding: 16px 20px 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 10px; }
  .hero-right::-webkit-scrollbar { display: none; }
  .slide { height: 60vw; min-width: 78vw; scroll-snap-align: start; border-radius: 12px; flex-shrink: 0; }
  .slide-label { bottom: 14px; left: 14px; padding: 10px 12px; gap: 8px; }
  .slide-label-icon { width: 28px; height: 28px; }
  .slide-label-text p:first-child { font-size: 12px; }
  .slide-label-text p:last-child { display: none; }
  .slide-num { top: 12px; right: 12px; font-size: 10px; }
  .hero-rating { top: 12px; left: 12px; padding: 7px 10px; }
  .rating-num { font-size: 18px; }
  .features { padding: 48px 20px; }
  .features-header { flex-direction: column; align-items: flex-start; margin-bottom: 28px; gap: 16px; }
  .features-cta { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feat-card { padding: 18px 14px; }
  .feat-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .feat-title { font-size: 15px; }
  .feat-desc { font-size: 12px; }
  .products-section { padding: 48px 20px; }
  .prod-tab { font-size: 28px; padding: 0 20px 12px; }
  .tab-line { left: 20px; right: 20px; }
  .prod-desc { font-size: 13px; margin-bottom: 28px; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
  .prod-name { font-size: 12px; }
  .process-section { padding: 48px 20px; }
  .process-header { margin-bottom: 32px; }
  .process-track { overflow-x: auto; justify-content: flex-start; padding: 10px 0 20px; scrollbar-width: none; }
  .process-track::-webkit-scrollbar { display: none; }
  .process-step { width: 80px; }
  .step-circle { width: 64px; height: 64px; }
  .step-circle svg { width: 22px; height: 22px; }
  .step-connector { width: 40px; margin-top: 24px; }
  .step-label { font-size: 10px; }
  .process-btn { padding: 12px 28px; font-size: 13px; }
  .testimonials { padding: 48px 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-heading { margin-bottom: 32px; }
  .awards { padding: 48px 20px; }
  .awards-body { grid-template-columns: 1fr; gap: 28px; }
  .awards-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .award-card { padding: 16px 10px; }
  .award-icon { width: 40px; height: 40px; }
  .award-title { font-size: 11px; }
  .gallery { padding: 48px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; gap: 10px; margin-top: 28px; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; grid-row: auto; }
  footer { padding: 40px 20px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ════════ MOBILE ≤480px ════════ */
@media (max-width: 480px) {
  .hero-heading { font-size: clamp(26px,9vw,34px); }
  .slide { min-width: 86vw; height: 62vw; }
  .features-grid { grid-template-columns: 1fr; }
  .prod-tab { font-size: 22px; padding: 0 14px 10px; }
  .tab-line { left: 14px; right: 14px; }
  .prod-grid { grid-template-columns: 1fr; }
  .step-circle { width: 56px; height: 56px; }
  .step-circle svg { width: 18px; height: 18px; }
  .step-connector { width: 28px; }
  .process-step { width: 64px; }
  .step-label { font-size: 9px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item, .gallery-item.tall, .gallery-item.wide { height: 200px; grid-row: auto; grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: center; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .testi-grid { grid-template-columns: 1fr; }
}