/* =====================================================
   MAJI PACKAGING SOLUTIONS — Design System
   Palette: Deep navy + Cyan  |  Fonts: Bricolage Grotesque + Outfit
   ===================================================== */

:root {
  /* Core palette */
  --navy-950: #061622;
  --navy-900: #0A2036;
  --navy-800: #0F3049;
  --navy-700: #163F5F;
  --navy-600: #1F5273;

  --cyan: #06B6D4;
  --cyan-light: #22D3EE;
  --cyan-deep: #0891B2;
  --cyan-glow: #67E8F9;

  --bg-main: #F3F9FB;
  --bg-card: #FFFFFF;
  --bg-warm: #F8FBFC;
  --bg-accent: #E5F5F9;

  --text-primary: #0A2036;
  --text-secondary: #4C6577;
  --text-muted: #8AA2AF;
  --text-on-dark: #E7F4F8;
  --text-on-dark-muted: #9FC2D1;

  --border: rgba(10, 32, 54, 0.08);
  --border-cyan: rgba(6, 182, 212, 0.18);

  --shadow-sm: 0 2px 8px rgba(10, 32, 54, 0.05);
  --shadow-md: 0 8px 32px rgba(10, 32, 54, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 32, 54, 0.10);
  --shadow-cyan: 0 8px 28px rgba(6, 182, 212, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', sans-serif; line-height: 1.15; color: var(--navy-900); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cyan-deep); background: var(--bg-accent);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow i { color: var(--cyan); }

.section { padding: 100px 0; }
.section-alt { background: var(--bg-warm); }
.section-dark { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.92rem;
  border: none; transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); color: #fff; box-shadow: var(--shadow-cyan); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(6,182,212,0.35); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-deep); }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-dark { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.16); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ===== NAVIGATION ===== */
.nav-main {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0; background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(10,32,54,0.06);
}
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-glow); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.15rem;
}
.nav-logo .logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--navy-900); line-height: 1.1; }
.nav-logo .logo-text span { display: block; font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.68rem; color: var(--cyan-deep); letter-spacing: 0.04em; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; padding: 10px 16px; border-radius: var(--radius-sm); transition: all 0.25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan-deep); background: var(--bg-accent); }
.nav-cta-btn { background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)) !important; color: #fff !important; margin-left: 8px; box-shadow: var(--shadow-cyan); }
.nav-cta-btn:hover { transform: translateY(-1px); }

.nav-burger { display: none; background: none; border: none; font-size: 1.3rem; color: var(--navy-900); }

.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(6,20,34,0.55); z-index: 1100; }
.mobile-nav-overlay.active { display: block; }
.mobile-nav-panel {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: #fff; z-index: 1200;
  transition: right 0.35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.2); display: flex; flex-direction: column;
}
.mobile-nav-panel.active { right: 0; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-closebtn { background: none; border: none; font-size: 1.2rem; color: var(--navy-900); }
.mobile-nav-body { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.mob-link { display: flex; align-items: center; gap: 12px; padding: 14px 14px; border-radius: var(--radius-sm); color: var(--text-primary); font-weight: 500; }
.mob-link i { color: var(--cyan); width: 18px; }
.mob-link:hover, .mob-link.active { background: var(--bg-accent); color: var(--cyan-deep); }

/* ===== HERO (Swiper slider — 3 slides with different layouts —
   with ONE shared video playing behind all of them, never restarting) ===== */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: var(--navy-950); color: #fff;
}

/* Shared background layer: sits behind the swiper-wrapper, persists across all slides */
.hero-bg-image { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image img, .hero-bg-image video { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; filter: brightness(0.85) saturate(0.95); }
.hero-gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(165deg, rgba(6,22,34,0.72) 0%, rgba(6,22,34,0.30) 50%, rgba(6,22,34,0.6) 100%),
              radial-gradient(ellipse 70% 50% at 75% 55%, rgba(6,182,212,0.08) 0%, transparent 60%);
}
.hero-floating-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; animation: orbFloat 10s ease-in-out infinite; z-index: 1; }
.hero-floating-orb.orb-1 { width: 450px; height: 450px; background: rgba(6,182,212,0.10); top: 6%; right: 3%; }
.hero-floating-orb.orb-2 { width: 350px; height: 350px; background: rgba(6,182,212,0.06); bottom: 10%; left: 6%; animation-delay: -5s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(25px,-18px); } }

/* Swiper wrapper/slides sit above the shared background, carry only content */
.hero-swiper .swiper-wrapper { position: relative; z-index: 2; }
.hero-swiper .swiper-slide { display: flex; align-items: center; min-height: 100vh; }
.hero-swiper .swiper-pagination { z-index: 5; bottom: 30px !important; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; width: 10px; height: 10px; margin: 0 6px !important; }
.hero-swiper .swiper-pagination-bullet-active { background: var(--cyan); transform: scale(1.3); }

/* Content fade-in when a slide becomes active */
.swiper-float, .swiper-float-delay { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.22,1,0.36,1); }
.swiper-float-delay { transition: all 1.2s cubic-bezier(0.22,1,0.36,1); transition-delay: 0.2s; }
.swiper-slide-active .swiper-float, .swiper-slide-active .swiper-float-delay { opacity: 1; transform: translateY(0); }

.hero-inner { position: relative; z-index: 3; max-width: 1280px; margin: 0 auto; padding: 130px 32px 90px; width: 100%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 0.85fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan-glow); background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.25); padding: 8px 20px; border-radius: 999px; margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 22px; letter-spacing: -1px; }
.hero h1 em { font-style: normal; color: var(--cyan-glow); }
.hero p.lead { font-size: 1.08rem; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.7rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.hero-visual { position: relative; }
.hero-visual-main { border-radius: var(--radius-xl); overflow: hidden; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); }
.hero-visual-main img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-visual-badge { position: absolute; bottom: -18px; left: -20px; background: #fff; padding: 18px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; z-index: 4; max-width: 260px; }
.hero-visual-badge .icon { width: 46px; height: 46px; background: var(--navy-900); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--cyan-glow); font-size: 1.1rem; flex-shrink: 0; }
.hero-visual-badge b { display: block; font-size: 0.9rem; color: var(--navy-900); }
.hero-visual-badge span { font-size: 0.78rem; color: var(--text-secondary); }
.hero-visual-accent { position: absolute; top: -14px; right: -14px; width: 80px; height: 80px; border: 2px solid var(--cyan); border-radius: var(--radius-lg); opacity: 0.3; z-index: 2; }


/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--bg-warm); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.trust-item i { color: var(--cyan-deep); font-size: 1.1rem; }

/* ===== FEATURE / VALUE CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 28px; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-cyan); }
.feature-card .icon { width: 54px; height: 54px; border-radius: var(--radius-md); background: var(--bg-accent); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

/* ===== PRODUCT CARDS ===== */
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-cyan); }
.product-card .product-img { aspect-ratio: 4/3; background: var(--bg-accent); position: relative; overflow: hidden; }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card .product-img .ph-icon { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; color: var(--cyan-deep); }
.product-card .featured-badge { position: absolute; top: 14px; left: 14px; background: var(--navy-900); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; letter-spacing: 0.03em; }
.product-card .product-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-card .product-cat { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--cyan-deep); margin-bottom: 8px; }
.product-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.product-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
.product-card .product-actions { display: flex; gap: 10px; }
.product-card .product-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.83rem; }

/* ===== STATS BAND ===== */
.stats-band { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); padding: 60px 0; }
.stats-band .grid-4 { text-align: center; }
.stats-band b { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--cyan-glow); }
.stats-band span { color: var(--text-on-dark-muted); font-size: 0.85rem; }

/* ===== ABOUT SPLIT ===== */
.about-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1; background: var(--navy-800); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 32px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-secondary); font-size: 0.96rem; }
.about-list li i { color: var(--cyan); margin-top: 4px; }

/* ===== TESTIMONIAL / CTA BAND ===== */
.cta-band { background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-xl); padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; color: #fff; }
.cta-band h2 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.cta-band p { color: var(--text-on-dark-muted); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.94rem; background: #fff; color: var(--text-primary); transition: all 0.25s ease;
}
.form-control:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(6,182,212,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox-tile { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s ease; }
.checkbox-tile:hover { border-color: var(--border-cyan); }
.checkbox-tile input { accent-color: var(--cyan-deep); width: 17px; height: 17px; }
.checkbox-tile span { font-size: 0.9rem; font-weight: 500; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #E6FBF3; color: #0B7A55; border: 1px solid #B9F0DA; }
.alert-error { background: #FDECEC; color: #B42318; border: 1px solid #F6C4C4; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; align-items: start; }
.contact-info-card { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: 36px; }
.contact-info-card h3 { color: #fff; margin-bottom: 6px; }
.contact-info-card > p { color: var(--text-on-dark-muted); font-size: 0.9rem; margin-bottom: 26px; }
.contact-info-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info-row:first-of-type { border-top: none; }
.contact-info-row .icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(6,182,212,0.15); color: var(--cyan-glow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-row b { display: block; font-size: 0.85rem; color: var(--text-on-dark-muted); font-weight: 500; margin-bottom: 3px; }
.contact-info-row span, .contact-info-row a { font-size: 0.94rem; color: #fff; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 26px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { position: relative; padding: 150px 0 70px; background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: #fff; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--text-on-dark-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-on-dark-muted); }
.breadcrumb a:hover { color: var(--cyan-glow); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-on-dark-muted); font-size: 1.02rem; max-width: 600px; }

/* ===== PRODUCT DETAIL ===== */
.pd-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; }
.pd-media { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1; background: var(--bg-accent); display: flex; align-items: center; justify-content: center; }
.pd-media .ph-icon { font-size: 5rem; color: var(--cyan-deep); }
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-media .img-fallback-icon { display: none; }
.pd-media.img-fallback .img-fallback-icon { display: block; }
.spec-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table td { padding: 12px 4px; font-size: 0.9rem; }
.spec-table td:first-child { color: var(--text-secondary); width: 40%; }
.spec-table td:last-child { font-weight: 600; }

/* ===== FOOTER ===== */
footer { background: var(--navy-950); color: var(--text-on-dark-muted); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin: 16px 0 20px; font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.25s ease; }
.footer-social a:hover { background: var(--cyan); color: var(--navy-950); }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--cyan-glow); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.88rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--cyan); margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 900; transition: transform 0.25s ease; }
.wa-float:hover { transform: scale(1.08); }

/* ===== TICKER STRIP ===== */
.ticker-strip { background: var(--navy-950); overflow: hidden; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ticker-track { display: flex; gap: 46px; width: max-content; animation: ticker-scroll 32s linear infinite; }
.ticker-item { display: flex; align-items: center; gap: 10px; color: var(--text-on-dark-muted); font-size: 0.85rem; font-weight: 500; white-space: nowrap; }
.ticker-item i { color: var(--cyan); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ABOUT COLLAGE (Prozone-style image grid) ===== */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; gap: 14px; }
.about-images img, .about-images .img-ph { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; background: var(--bg-accent); }
.about-images .img-ph { display: flex; align-items: center; justify-content: center; color: var(--cyan-deep); font-size: 2rem; }
.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 28px 0 32px; }
.about-feat { display: flex; gap: 14px; align-items: flex-start; }
.about-feat-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-accent); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.about-feat h5 { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; }
.about-feat p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

/* ===== SERVICE / PRODUCT CARDS (image-top, Prozone-style) ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all 0.3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-img { position: relative; aspect-ratio: 4/3; background: var(--bg-accent); overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card-img .img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--cyan-deep); }
.svc-card-icon { position: absolute; bottom: -22px; left: 24px; width: 52px; height: 52px; border-radius: 14px; background: var(--navy-900); color: var(--cyan-glow); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-md); }
.svc-card-body { padding: 36px 24px 24px; }
.svc-card-body h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.svc-card-body p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.svc-card-link { color: var(--cyan-deep); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-card-link:hover { gap: 10px; }

/* ===== PROCESS STEPS (numbered) ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; position: relative; }
.process-step { position: relative; padding-top: 8px; }
.process-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--bg-accent); -webkit-text-stroke: 1.5px var(--cyan-deep); margin-bottom: 14px; }
.process-step h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* ===== WHY SECTION (dark, independent navy — no cyan mixed into bg) ===== */
.why-section { background: var(--navy-950); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 30px 24px; transition: all 0.3s ease; }
.why-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.why-card-icon { width: 50px; height: 50px; border-radius: var(--radius-md); background: rgba(6,182,212,0.12); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 18px; }
.why-card h4 { color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--text-on-dark-muted); font-size: 0.87rem; line-height: 1.6; }

/* ===== TESTIMONIALS TRACK ===== */
.testimonials-section { background: var(--navy-900); overflow: hidden; }
.testi-track { display: flex; gap: 22px; width: max-content; animation: testi-scroll 46s linear infinite; padding: 4px 0; }
.testimonials-section:hover .testi-track { animation-play-state: paused; }
@keyframes testi-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card { width: 340px; flex-shrink: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 26px; }
.testi-stars { color: var(--cyan); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { color: var(--text-on-dark-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; min-height: 96px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--cyan-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testi-author-info strong { display: block; color: #fff; font-size: 0.88rem; }
.testi-author-info span { color: var(--text-on-dark-muted); font-size: 0.78rem; }

/* ===== CTA SECTION (solid navy — independent, not mixed with cyan) ===== */
.cta-section { background: var(--navy-950); padding: 90px 0; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-section > .container > p, .cta-inner p { color: var(--text-on-dark-muted); max-width: 560px; margin: 0 auto 32px; font-size: 1.02rem; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .about-split, .pd-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 120px 20px 60px; }
  .hero-visual-main img { height: 320px; }
  .hero-visual-badge { position: static; margin-top: 18px; max-width: 100%; }
  .trust-strip .container { justify-content: center; text-align: center; }
  .svc-grid, .why-grid, .process-steps { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .testi-card { width: 280px; }
}
