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

:root {
  --blue: #1a6fff;
  --blue-dark: #0f52cc;
  --blue-light: #4d8fff;
  --dark: #1a1a1a;
  --darker: #111111;
  --mid: #2e2e2e;
  --light-bg: #f7f7f7;
  --white: #ffffff;
  --gray: #888888;
  --border: #e8e8e8;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
  --font-hero: var(--font-sans);
  --nav-h: 70px;
  --admin-bar-h: 0px;
  --nav-top: 0px;
  --transition: 0.36s cubic-bezier(0.4,0,0.2,1);
}

body.admin-bar { --admin-bar-h: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar { --admin-bar-h: 46px; }
}

html { scroll-behavior: smooth; font-family: var(--font-sans); }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-size: 13px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: var(--admin-bar-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; z-index: 1002; }
.logo-icon { width: 36px; height: 22px; }
.logo-text { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.04em; color: var(--text-primary); font-weight: 400; }
.logo-text strong { font-weight: 800; }
.logo-text.white { color: var(--white); }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: 5px;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: var(--light-bg); }
.nav-link.active { color: var(--blue); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-contact {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  line-height: 1;
  transition: all var(--transition);
}
.btn-contact:hover { border-color: #aaa; background: var(--light-bg); }

.btn-store {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 8px 16px;
  border-radius: 6px;
  line-height: 1;
  transition: background var(--transition), transform 0.2s;
}
.btn-store:hover { background: var(--blue-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* HERO — sits directly below fixed navbar, no gap */
.hero {
  position: relative;
  height: calc(100vh - var(--admin-bar-h) - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
  background: #08090c;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Push non-hero pages below navbar */
.site-main,
#main,
#content,
.page-content,
.entry-content {
  padding-top: calc(var(--admin-bar-h) + var(--nav-h));
}
/* But NOT when hero is the first child */
.site-main:has(.hero),
#main:has(.hero),
#content:has(.hero) {
  padding-top: 0;
}

.hero-bg-container { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 8s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,12,0.55) 0%, rgba(6,8,12,0.15) 42%, rgba(6,8,12,0.65) 100%),
    linear-gradient(90deg, rgba(4,5,8,0.82) 0%, rgba(4,5,8,0.25) 38%, rgba(4,5,8,0.25) 62%, rgba(4,5,8,0.5) 100%);
  z-index: 1;
}

/* Side panel */
.hero-side-panel {
  position: absolute;
  left: 40px;
  bottom: 100px;
  z-index: 3;
  font-family: var(--font-hero);
}
.side-menu { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0; padding-left: 14px;
  position: relative;
  cursor: pointer; border: none; background: none; text-align: left;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.side-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px; height: 1.05em;
  background: var(--white); border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.side-item.active::before { transform: translateY(-50%) scaleY(1); }
.side-text {
  font-family: var(--font-hero);
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.42);
  letter-spacing: -0.01em; line-height: 1.25; white-space: nowrap;
  transition: color 0.4s ease, font-size 0.4s ease, font-weight 0.4s ease, opacity 0.4s ease;
}
.side-item.active .side-text { font-size: 17px; font-weight: 600; color: var(--white); letter-spacing: -0.02em; }
.side-item:not(.active):hover .side-text { color: rgba(255,255,255,0.62); }

/* Hero content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(92vw, 660px);
  max-width: 660px;
  padding: 0 16px;
  font-family: var(--font-hero);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}

.hero-tag {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px; line-height: 1.4;
  animation: heroFadeIn 0.55s ease both;
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: heroFadeIn 0.55s 0.08s ease both;
}
.hero-sub {
  font-family: var(--font-hero);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  letter-spacing: 0em;
  line-height: 1.5;
  animation: heroFadeIn 0.55s 0.14s ease both;
}
.hero-desc { display: none; }

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  animation: heroFadeIn 0.55s 0.2s ease both;
}
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  color: var(--white);
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.75);
  background: transparent;
  text-decoration: none; line-height: 1; letter-spacing: 0.01em; white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s;
}
.btn-hero:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-1px); }

.btn-primary { font-size: 13px; font-weight: 600; color: var(--white); background: var(--blue); padding: 10px 22px; border-radius: 8px; transition: background var(--transition), transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(26,111,255,0.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,111,255,0.45); }
.btn-ghost { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); padding: 10px 0; transition: color var(--transition); }
.btn-ghost:hover { color: var(--white); }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; border-radius: 0;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease, transform 0.3s ease;
}
.hero-arrow svg { width: 24px; height: 24px; stroke-width: 1.5; }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }
.hero-arrow:hover { color: var(--white); transform: translateY(-50%) scale(1.05); }

.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.1); z-index: 4; }
.hero-progress-bar { height: 100%; background: rgba(255,255,255,0.85); width: 0%; transition: width linear; }

.hero-dots { position: absolute; bottom: 24px; right: 36px; display: flex; gap: 5px; z-index: 4; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.35); transition: all var(--transition); }
.dot.active { background: var(--white); width: 18px; border-radius: 3px; }

.hero-content.animating .hero-tag,
.hero-content.animating .hero-title,
.hero-content.animating .hero-sub,
.hero-content.animating .hero-actions { animation: heroFadeIn 0.5s ease both; }
.hero-content.animating .hero-title   { animation-delay: 0.07s; }
.hero-content.animating .hero-sub     { animation-delay: 0.13s; }
.hero-content.animating .hero-actions { animation-delay: 0.19s; }

@keyframes heroFadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp     { from { opacity: 0; transform: translateY(20px);  } to { opacity: 1; transform: translateY(0); } }

/* SHOWCASE */
.showcase { padding: 60px 40px; background: #f9f9f7; }
.showcase-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; align-items: start; }
.showcase-headings { max-width: 480px; }
.showcase-label { font-family: var(--font-sans); font-size: clamp(16px,1.8vw,20px); font-weight: 700; color: var(--text-primary); margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.2; }
.showcase-title { font-family: var(--font-sans); font-size: clamp(20px,2.4vw,30px); font-weight: 700; color: var(--text-primary); line-height: 1.2; letter-spacing: -0.03em; }
.showcase-media { padding-top: 36px; max-width: 480px; }
.showcase-text { font-family: var(--font-sans); font-size: 13px; font-weight: 400; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.mission-btn { display: inline-block; font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: var(--blue); padding: 10px 20px; border: 1.5px solid var(--blue); border-radius: 2px; background: transparent; transition: background 0.25s ease, color 0.25s ease; }
.mission-btn:hover { background: var(--blue); color: var(--white); }

/* SPOTLIGHT GRID */
.spotlight-grid { display: flex; flex-direction: column; gap: 4px; background: var(--white); }
.spotlight-row { display: grid; gap: 4px; }
.spotlight-row--full { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.spotlight-row--duo { grid-template-columns: 1fr 1fr; }
.spotlight-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 28px 0; min-height: 380px; overflow: hidden; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }
.spotlight-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%); z-index: 1; }
.spotlight-card--tall { min-height: min(62vh,560px); padding-top: 48px; }
.spotlight-card--lavender { background-image: url('https://images.unsplash.com/photo-1527977966376-1c8408f9f108?w=800&q=85'); }
.spotlight-card--grey     { background-image: url('https://images.unsplash.com/photo-1473968512647-3e447244af8f?w=800&q=85'); }
.spotlight-card--cool     { background-image: url('https://images.unsplash.com/photo-1559827291-72ee739d0d9a?w=800&q=85'); }
.spotlight-kicker  { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 8px; letter-spacing: 0.01em; position: relative; z-index: 2; }
.spotlight-title   { font-family: var(--font-sans); font-size: clamp(20px,2.5vw,28px); font-weight: 700; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.15; margin-bottom: 8px; position: relative; z-index: 2; }
.spotlight-card--tall .spotlight-title { font-size: clamp(22px,3vw,34px); }
.spotlight-tagline { font-size: clamp(13px,1.4vw,15px); font-weight: 500; color: rgba(255,255,255,0.95); margin-bottom: 14px; position: relative; z-index: 2; }
.spotlight-links   { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 20px; position: relative; z-index: 2; }
.spotlight-links a { font-size: 12px; font-weight: 500; color: var(--white); transition: opacity 0.2s ease; }
.spotlight-links a:hover { opacity: 0.65; }
.spotlight-links .sep { color: rgba(255,255,255,0.6); font-weight: 300; user-select: none; }
.spotlight-cta-pill { margin-bottom: 24px; position: relative; z-index: 2; }
.spotlight-visual   { flex: 1; width: 100%; display: flex; align-items: flex-end; justify-content: center; padding: 0 16px 0; margin-top: auto; }
.spotlight-visual img { display: block; width: auto; max-width: min(92%,600px); max-height: min(40vh,340px); object-fit: contain; object-position: center bottom; filter: drop-shadow(0 16px 36px rgba(0,0,0,0.12)); }

/* PRODUCTS SECTION */
.products-section { padding: 60px 32px; max-width: 1440px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag    { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue); margin-bottom: 10px; }
.section-title  { font-family: var(--font-display); font-size: clamp(22px,3vw,36px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 10px; }
.section-sub    { font-size: 13px; color: var(--text-secondary); max-width: 420px; margin: 0 auto; line-height: 1.65; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub   { color: rgba(255,255,255,0.65); }

.products-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: auto auto; gap: 16px; }

.accreditation-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.accreditation-card { background: var(--light-bg); border-radius: 10px; padding: 24px 20px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid var(--border); }
.accreditation-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.accred-icon { width: 44px; height: 44px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; margin: 0 auto 14px; }
.accreditation-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.01em; }
.accreditation-card p  { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

.product-card { position: relative; border-radius: 12px; overflow: hidden; background: var(--light-bg); transition: transform var(--transition), box-shadow var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.1); }
.product-card.large           { grid-column: span 7; }
.product-card:not(.large)     { grid-column: span 5; }
.product-card:nth-child(3),
.product-card:nth-child(4)    { grid-column: span 6; }
.product-img { width: 100%; height: 200px; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.product-card.large .product-img { height: 240px; }
.product-card:hover .product-img { transform: scale(1.04); }
.product-info { padding: 18px 20px; }
.product-tag  { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; color: var(--blue); display: block; margin-bottom: 6px; }
.product-info h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.product-info p  { font-size: 12px; color: var(--text-secondary); margin-bottom: 14px; }
.product-links   { display: flex; gap: 14px; align-items: center; }
.product-links a { font-size: 12px; font-weight: 600; color: var(--text-secondary); transition: color var(--transition); }
.product-links a:hover { color: var(--text-primary); }
.product-links a.primary       { color: var(--blue); }
.product-links a.primary:hover { color: var(--blue-dark); }

/* STATS */
.stats-section { background: var(--darker); padding: 48px 32px; }
.stats-inner   { max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 32px; flex-wrap: wrap; }
.stat-item     { text-align: center; }
.stat-num      { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-unit     { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--blue); }
.stat-item p   { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.04em; }
.stat-divider  { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }

/* INDUSTRIES */
.industries-section { background: #0a0b0e; padding: 0; position: relative; }
.industries-slider  { position: relative; width: 100%; height: 560px; overflow: hidden; }
.ind-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; z-index: 0; }
.ind-slide.active { opacity: 1; z-index: 1; }
.ind-slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.15) 100%); }
.ind-section-header { position: absolute; top: 36px; left: 0; right: 0; text-align: center; z-index: 5; pointer-events: none; }
.ind-section-tag   { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue); margin-bottom: 8px; text-transform: uppercase; }
.ind-section-title { font-family: var(--font-sans); font-size: clamp(20px,2.8vw,34px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; }
.ind-slide-content { position: absolute; top: 50%; left: 56px; transform: translateY(-50%) translateX(-20px); z-index: 2; max-width: 420px; opacity: 0; transition: opacity 0.55s ease 0.25s, transform 0.55s ease 0.25s; margin-top: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.ind-slide.active .ind-slide-content { opacity: 1; transform: translateY(-50%) translateX(0); }
.ind-slide-bar   { width: 3px; height: 100%; background: var(--blue); border-radius: 2px; position: absolute; left: -16px; top: 0; bottom: 0; }
.ind-slide-kicker { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; color: var(--blue); text-transform: uppercase; margin-bottom: 10px; display: block; }
.ind-slide-title  { font-family: var(--font-sans); font-size: clamp(22px,2.6vw,34px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
.ind-slide-desc   { font-family: var(--font-sans); font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 24px; max-width: 340px; }
.ind-slide-btn    { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-sans); font-size: 12px; font-weight: 600; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); padding: 9px 22px; border-radius: 2px; background: transparent; transition: background 0.25s ease, border-color 0.25s ease; text-decoration: none; flex-shrink: 0; }
.ind-slide-btn:hover { background: var(--blue); border-color: var(--blue); }

.ind-thumbs { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; display: flex; align-items: stretch; height: 80px; background: rgba(0,0,0,0.72); backdrop-filter: blur(8px); }
.ind-thumb  { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 20px; border: none; background: transparent; cursor: pointer; border-top: 3px solid transparent; transition: background 0.3s ease, border-color 0.3s ease; font-family: var(--font-sans); text-align: left; position: relative; }
.ind-thumb + .ind-thumb::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.ind-thumb.active            { background: rgba(26,111,255,0.12); border-top-color: var(--blue); }
.ind-thumb:hover:not(.active){ background: rgba(255,255,255,0.05); }
.ind-thumb-icon  { font-size: 20px; flex-shrink: 0; }
.ind-thumb-label { display: flex; flex-direction: column; gap: 2px; }
.ind-thumb-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); line-height: 1.2; }
.ind-thumb.active .ind-thumb-title { color: var(--white); }
.ind-thumb-sub   { font-size: 11px; color: rgba(255,255,255,0.42); line-height: 1.3; font-weight: 400; }
.ind-thumb-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--blue); width: 0%; transition: width linear; }

/* ACADEMY */
.academy-section { background: var(--light-bg); padding: 60px 32px; }
.academy-inner   { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.academy-text .section-tag { text-align: left; display: block; margin-bottom: 10px; }
.academy-text h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,38px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
.academy-text p  { font-size: 13px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.academy-list    { margin-bottom: 26px; display: flex; flex-direction: column; gap: 6px; }
.academy-list li { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.academy-visual  { position: relative; }
.academy-img     { width: 100%; height: 360px; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.academy-badge   { position: absolute; bottom: -16px; left: -16px; background: var(--blue); border-radius: 12px; padding: 16px 22px; box-shadow: 0 10px 32px rgba(26,111,255,0.3); text-align: center; }
.badge-num       { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); }
.badge-label     { font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* DJI SWIPER */
.premium-video-slider { background: #f0f2f5; padding: 56px 0 44px; overflow: hidden; position: relative; }
.slider-header   { text-align: center; margin-bottom: 28px; padding: 0 20px; }
.slider-tag      { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue); margin-bottom: 10px; text-transform: uppercase; }
.slider-title    { font-family: var(--font-display); font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 8px; }
.slider-subtitle { font-size: 13px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.6; }

.dji-swiper-wrapper  { position: relative; display: flex; align-items: center; }
.dji-swiper-viewport { overflow: hidden; width: 100%; padding: 16px 9vw; box-sizing: border-box; }
.dji-swiper-track    { display: flex; gap: 14px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.dji-slide { flex: 0 0 calc(82vw - 18vw); max-width: 720px; min-width: 240px; transition: opacity 0.45s ease, transform 0.45s ease; opacity: 0.45; transform: scale(0.93); cursor: pointer; }
.dji-slide.is-active { opacity: 1; transform: scale(1); }
.dji-slide-inner { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: #111; }
.dji-slide-inner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.dji-slide.is-active .dji-slide-inner img { transform: scale(1.03); }
.dji-slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 22px 22px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%); opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; text-align: center; }
.dji-slide.is-active .dji-slide-overlay { opacity: 1; transform: translateY(0); }
.dji-slide-kicker { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; margin: 0 0 4px; }
.dji-slide-name   { font-family: var(--font-display); font-size: clamp(16px,2vw,22px); font-weight: 700; color: #fff; letter-spacing: 0.02em; margin: 0 0 10px; }
.dji-slide-links  { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 12px; }
.dji-slide-links a       { color: #fff; font-weight: 500; transition: opacity 0.2s; }
.dji-slide-links a:hover { opacity: 0.65; }
.dji-slide-links span    { color: rgba(255,255,255,0.4); }

.dji-arrow     { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 40px; height: 40px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #1a1a1a; box-shadow: 0 2px 12px rgba(0,0,0,0.15); transition: background 0.25s, transform 0.25s; }
.dji-arrow svg { width: 18px; height: 18px; }
.dji-arrow--prev { left: 12px; }
.dji-arrow--next { right: 12px; }
.dji-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.dji-dots { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 20px; }
.dji-dot  { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.22); border: none; cursor: pointer; padding: 0; transition: all 0.3s; }
.dji-dot.is-active { background: var(--text-primary); width: 18px; border-radius: 3px; }

/* TESTIMONIALS */
.testimonials-section { background: var(--white); padding: 60px 36px 48px; overflow: hidden; }
.testimonials-inner   { max-width: 1100px; margin: 0 auto 36px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.testimonials-header  { display: flex; align-items: flex-start; gap: 14px; }
.testimonials-title-bar  { width: 3px; height: 54px; background: var(--blue); border-radius: 2px; flex-shrink: 0; margin-top: 3px; }
.testimonials-heading    { font-family: var(--font-sans); font-size: clamp(18px,2.4vw,28px); font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; }
.testimonials-subheading { font-size: 13px; color: var(--text-secondary); line-height: 1.6; max-width: 380px; }
.testimonials-rating-block { text-align: right; flex-shrink: 0; padding-top: 3px; }
.testimonials-rating-num   { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--text-primary); line-height: 1; letter-spacing: -0.03em; }
.testimonials-stars        { display: flex; align-items: center; justify-content: flex-end; gap: 2px; margin: 4px 0; }
.testimonials-stars svg    { width: 17px; height: 17px; }
.testimonials-google-link  { font-size: 12px; font-weight: 500; color: var(--blue); text-decoration: underline; text-decoration-color: rgba(26,111,255,0.35); text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.testimonials-google-link:hover { text-decoration-color: var(--blue); }

.testi-slider-wrap   { overflow: hidden; max-width: 1200px; margin: 0 auto; padding: 0 0 4px; cursor: grab; }
.testi-slider-wrap:active { cursor: grabbing; }
.testi-track { display: flex; gap: 16px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.testi-card  { flex: 0 0 calc(25% - 12px); min-width: 240px; background: #f7f8fa; border: 1px solid #e8eaed; border-radius: 12px; padding: 22px 20px 26px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,111,255,0.08); border-color: rgba(26,111,255,0.2); }
.testi-card-top  { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.testi-avatar    { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--white); flex-shrink: 0; letter-spacing: 0.03em; }
.testi-meta      { flex: 1; min-width: 0; }
.testi-name      { display: block; font-size: 12px; font-weight: 700; color: var(--text-primary); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.testi-date      { display: block; font-size: 11px; color: var(--gray); line-height: 1.4; margin-top: 1px; }
.testi-score     { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.testi-star-icon { width: 13px; height: 13px; }
.testi-score span { font-size: 12px; font-weight: 700; color: var(--text-primary); }
.testi-source    { font-size: 11px; font-weight: 600; color: var(--blue); margin-bottom: 12px; letter-spacing: 0.01em; }
.testi-text      { font-size: 12.5px; color: var(--text-secondary); line-height: 1.7; }
.testi-controls  { display: flex; align-items: center; justify-content: center; margin-top: 28px; }
.testi-dots      { display: flex; align-items: center; gap: 6px; }
.testi-dot       { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.18); border: none; cursor: pointer; padding: 0; transition: all 0.3s; }
.testi-dot.active { background: var(--blue); width: 18px; border-radius: 3px; }

/* FOOTER */
.footer       { background: #222222; padding: 52px 32px 0; }
.footer-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 220px 200px 140px 140px 140px 160px; gap: 32px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo    { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.social-btn     { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: all var(--transition); }
.social-btn svg { width: 14px; height: 14px; }
.social-btn:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-store-footer { display: inline-block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); padding: 7px 18px; border-radius: 6px; transition: all var(--transition); }
.btn-store-footer:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.footer-heading { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.footer-list    { display: flex; flex-direction: column; gap: 9px; }
.footer-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-list li svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.35); }
.footer-list.plain li   { display: block; }
.footer-list.plain a    { font-size: 12px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-list.plain a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom   { text-align: center; padding: 16px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* FLOATING BUTTONS */
.floating-btns { position: fixed; right: 16px; bottom: 64px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.float-btn     { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.25s, box-shadow 0.25s; color: var(--white); }
.float-btn:hover    { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.float-btn.phone    { background: #555555; }
.float-btn.whatsapp { background: #25D366; }
.float-btn svg      { width: 18px; height: 18px; }
.scroll-top { position: fixed; right: 16px; bottom: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(30,30,30,0.7); backdrop-filter: blur(8px); color: white; display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; transform: translateY(10px); transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { background: var(--blue); }
.scroll-top svg     { width: 16px; height: 16px; }

/* =============================================
   RESPONSIVE — 1200px
   ============================================= */
@media (max-width: 1200px) {
  .footer-inner  { grid-template-columns: repeat(3,1fr); }
  .footer-brand  { grid-column: span 3; }
  .nav-links     { gap: 0; }
  .nav-link      { padding: 6px 7px; font-size: 12px; }
  .hero-side-panel { left: 28px; }
  .academy-inner { gap: 36px; }
  .ind-slide-content { left: 36px; }
  .ind-thumb     { padding: 0 14px; }
  .testi-card    { flex: 0 0 calc(33.33% - 11px); }
}

/* =============================================
   RESPONSIVE — 992px
   ============================================= */
@media (max-width: 992px) {
  .hero-side-panel { left: 24px; bottom: 74px; }
  .hero-arrow.prev { left: 10px; }
  .side-item.active .side-text { font-size: 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.large,
  .product-card:not(.large),
  .product-card:nth-child(3),
  .product-card:nth-child(4) { grid-column: span 1; }
  .academy-inner { grid-template-columns: 1fr; gap: 32px; }
  .academy-img   { height: 260px; }
  .academy-badge { bottom: -12px; left: 12px; }
  .dji-slide     { flex: 0 0 70vw; }
  .industries-slider { height: 480px; }
  .ind-slide-content { left: 28px; max-width: 340px; }
  .ind-thumb     { padding: 0 12px; gap: 8px; }
  .ind-thumb-icon { font-size: 18px; }
  .ind-section-header { top: 28px; }
  .testi-card    { flex: 0 0 calc(50% - 8px); }
}

/* =============================================
   TABLET — 769px to 1024px
   ============================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  :root { --nav-h: 64px; }

  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }

  .nav-inner { padding: 0 20px; }

  /* Logo always visible */
  .nav-logo { display: flex !important; }
  .logo-text { font-size: 15px; }

  /* Show CTA buttons on tablet — slightly compact */
  .nav-cta {
    display: flex !important;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .btn-contact {
    display: inline-flex !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  .btn-store {
    display: flex !important;
    font-size: 12px !important;
    padding: 7px 14px !important;
  }

  /* Nav drawer */
  .nav-links {
    position: fixed;
    top: calc(var(--admin-bar-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 20px 24px;
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
    box-shadow: 0 10px 32px rgba(0,0,0,0.10);
    align-items: flex-start;
    gap: 2px;
    z-index: 999;
    max-height: calc(100vh - var(--admin-bar-h) - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    width: 100%;
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 7px;
    color: var(--text-primary);
  }
  .nav-link:hover { background: var(--light-bg); }

  /* Hero */
  .hero { min-height: 520px; }
  .hero-side-panel { left: 28px; bottom: 90px; }
  .side-item.active .side-text { font-size: 15px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.large,
  .product-card:not(.large),
  .product-card:nth-child(3),
  .product-card:nth-child(4) { grid-column: span 1; }

  /* Academy */
  .academy-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .academy-img { height: 280px; }

  /* Testimonials */
  .testi-card { flex: 0 0 calc(50% - 8px); }

  /* Footer */
  .footer-inner { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: span 3; }
}

/* =============================================
   MOBILE — max-width: 768px
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  body.admin-bar { --admin-bar-h: 46px; }

  /* Show hamburger */
  .hamburger { display: flex; }

  /* nav-inner: logo LEFT, hamburger RIGHT */
  .nav-inner {
    padding: 0 14px;
    justify-content: space-between;
  }

  /* Logo always visible */
  .nav-logo {
    display: flex !important;
    flex-shrink: 0;
  }
  .logo-icon { width: 32px; height: 20px; }
  .logo-text { font-size: 13px; }

  /* Show CTA buttons on mobile — compact size */
  .nav-cta {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .btn-contact {
    display: inline-flex !important;
    font-size: 11px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
  }
  .btn-store {
    display: flex !important;
    font-size: 11px !important;
    padding: 6px 10px !important;
    gap: 4px !important;
    border-radius: 6px !important;
  }

  /* Nav drawer */
  .nav-links {
    position: fixed;
    top: calc(var(--admin-bar-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 16px 20px;
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
    box-shadow: 0 10px 32px rgba(0,0,0,0.10);
    align-items: flex-start;
    gap: 2px;
    z-index: 999;
    max-height: calc(100vh - var(--admin-bar-h) - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    width: 100%;
    font-size: 14px;
    padding: 11px 14px;
    border-radius: 7px;
    color: var(--text-primary);
  }
  .nav-link:hover { background: var(--light-bg); }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-side-panel { display: none; }
  .hero-content  { width: calc(100% - 32px); padding: 0 10px; margin-top: 0; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
  .hero-dots   { right: 50%; transform: translateX(50%); bottom: 16px; }
  .hero-title  { font-size: clamp(22px,6vw,32px); }
  .hero-sub    { font-size: 13px; margin-bottom: 16px; }
  .hero-tag    { font-size: 10px; }
  .btn-hero    { font-size: 12px; padding: 9px 22px; }

  /* Showcase */
  .showcase    { padding: 44px 20px; }
  .showcase-inner  { grid-template-columns: 1fr; gap: 24px; }
  .showcase-media  { padding-top: 0; max-width: none; }

  /* Spotlight */
  .spotlight-row--duo { grid-template-columns: 1fr; }
  .spotlight-card     { min-height: 320px; padding: 36px 20px 0; }
  .spotlight-card--tall { min-height: 420px; }

  /* Products */
  .products-section { padding: 44px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card.large,
  .product-card:not(.large),
  .product-card:nth-child(3),
  .product-card:nth-child(4) { grid-column: span 1; }

  /* Stats */
  .stats-inner  { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }

  /* Academy */
  .academy-section { padding: 44px 16px; }

  /* Footer */
  .footer       { padding: 36px 20px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }

  /* DJI Swiper */
  .dji-swiper-viewport { padding: 12px 5vw; }
  .dji-slide   { flex: 0 0 82vw; }
  .dji-arrow   { width: 32px; height: 32px; }
  .dji-arrow svg { width: 16px; height: 16px; }
  .dji-arrow--prev { left: 5px; }
  .dji-arrow--next { right: 5px; }

  /* Industries */
  .industries-slider { height: auto; }
  .ind-slide         { position: relative; height: 380px; }
  .ind-slide:not(.active) { display: none; }
  .ind-slide-content { left: 24px; right: 20px; max-width: none; margin-top: 16px; }
  .ind-section-header { top: 18px; }
  .ind-section-title  { font-size: 18px; }
  .ind-thumbs { flex-wrap: wrap; height: auto; }
  .ind-thumb  { flex: 1 1 50%; min-width: 0; padding: 10px 12px; height: 60px; }
  .ind-thumb-sub { display: none; }

  /* Testimonials */
  .testimonials-section  { padding: 44px 16px 36px; }
  .testi-slider-wrap     { padding: 0; }
  .testi-card            { flex: 0 0 calc(82vw - 32px); min-width: 220px; }
  .testimonials-inner    { flex-direction: column; gap: 16px; }
  .testimonials-rating-block { text-align: left; }
  .testimonials-stars    { justify-content: flex-start; }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .ind-thumb    { flex: 1 1 50%; }
  .testi-card   { flex: 0 0 calc(88vw - 32px); }
  .hero-title   { font-size: clamp(20px, 7vw, 28px); }
  .hero-sub     { font-size: 12px; }
  .btn-hero     { font-size: 11px; padding: 8px 18px; }
  .accreditation-grid { grid-template-columns: 1fr; }
  .hero-actions { gap: 8px; }
}