/* =====================================================================
   Babu Engineering Foundry — Industrial Theme (Light default + Dark mode)
   Brand: Molten Orange (#FF5A1F)
   Type:  Oswald (display, condensed) + Inter (body)
   Theme: light by default; set <html data-theme="dark"> for dark mode.
   ===================================================================== */

/* ---------- Design Tokens : LIGHT (default) ---------- */
:root {
  color-scheme: light;

  /* Molten orange scale */
  --brand:        #E2571E;
  --brand-600:    #d8480f;
  --brand-700:    #c1430f;
  --brand-800:    #9c360c;
  --brand-500:    #f2693a;
  --brand-400:    #f0641f;
  --brand-300:    #f78a5d;
  --brand-200:    #ffc7a8;
  --brand-100:    rgba(226, 87, 30, .16);
  --brand-50:     rgba(226, 87, 30, .08);
  --brand-tint:   #FFF6F1;
  --brand-glow:   rgba(226, 87, 30, .35);

  /* Fixed dark (always-dark sections, both themes) */
  --ink:          #0b0d11;
  --ink-900:      #0a0c0f;
  --ink-800:      #14171c;

  /* Flipping neutrals */
  --ink-700:      #3a4658;
  --text:         #14171c;
  --muted:        #5b6675;
  --muted-400:    #8a93a0;
  --line:         rgba(17,22,31,.10);
  --line-2:       rgba(17,22,31,.06);
  --line-strong:  rgba(17,22,31,.16);

  --bg:           #FBFAF8;
  --bg-cool:      #F4F5F7;
  --surface:      #ffffff;
  --surface-2:    #F7F8FA;
  --nav-bg:       rgba(255,255,255,.88);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 26px;
  --r-pill: 999px;

  /* Shadows (light) */
  --sh-soft:  0 8px 24px -14px rgba(17,22,31,.18);
  --sh-card:  0 24px 60px -28px rgba(17,22,31,.26);
  --sh-lift:  0 32px 70px -30px rgba(17,22,31,.30);
  --sh-brand: 0 18px 38px -16px var(--brand-glow);

  /* Type */
  --font-display: 'Sora', 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
}

/* ---------- Design Tokens : DARK ---------- */
html[data-theme="dark"] {
  color-scheme: dark;
  --brand:        #FF5A1F;
  --brand-600:    #f2571e;
  --brand-700:    #d8480f;
  --brand-800:    #b23a0c;
  --brand-500:    #ff6f3d;
  --brand-400:    #ff9163;
  --brand-300:    #ffb38f;
  --brand-100:    rgba(255, 90, 31, .20);
  --brand-50:     rgba(255, 90, 31, .10);
  --brand-tint:   #15100c;
  --brand-glow:   rgba(255, 90, 31, .45);

  --ink-700:      #c4ccd6;
  --text:         #eef1f5;
  --muted:        #98a2af;
  --muted-400:    #6e7884;
  --line:         rgba(255,255,255,.09);
  --line-2:       rgba(255,255,255,.05);
  --line-strong:  rgba(255,255,255,.16);

  --bg:           #0b0c0f;
  --bg-cool:      #0f1116;
  --surface:      #141619;
  --surface-2:    #1a1d23;
  --nav-bg:       rgba(11,12,15,.85);

  --sh-soft:  0 8px 24px -12px rgba(0,0,0,.65);
  --sh-card:  0 30px 60px -30px rgba(0,0,0,.8);
  --sh-lift:  0 40px 80px -34px rgba(0,0,0,.85);
}

/* ---------- Always-dark scope (dark in BOTH themes) ---------- */
.hero, .stats-band, .section-dark, .footer, .page-hero, .dark-panel,
.cta-band.dark, .grade-side, .apps-box.dark-accent, .glass-box, .callout.dark, .checklist {
  --surface: #15181d;
  --surface-2: #1c2027;
  --bg-cool: #0f1116;
  --text: #f1f4f8;
  --muted: #9aa3b0;
  --muted-400: #6e7884;
  --ink-700: #c8d0da;
  --line: rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.06);
  --line-strong: rgba(255,255,255,.16);
  --brand-50: rgba(255,145,99,.14);
  --brand-100: rgba(255,145,99,.26);
  --brand-400: #ff9163;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}
img { max-width: 100%; display: block; }
.ico { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--text); }
.section-tint { background: var(--brand-tint); }
.section-cool { background: var(--bg-cool); }
.center { text-align: center; }
.relative { position: relative; }
.eyebrow-wrap { max-width: 760px; margin: 0 auto 60px; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700; font-size: .74rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); display: inline-block; }
.eyebrow-wrap.center .eyebrow::before { display: none; }
.display { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1.0; letter-spacing: -.028em; color: var(--text); }
.heading { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.08; letter-spacing: -.026em; color: var(--text); }
.subheading { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.65rem); letter-spacing: .01em; color: var(--text); }
.lead { font-size: 1.16rem; color: var(--muted); line-height: 1.75; }
.muted { color: var(--muted); }
.text-grad {
  background: linear-gradient(100deg, var(--brand-300) 0%, var(--brand) 45%, var(--brand-700));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.on-dark .heading, .on-dark .display, .section-dark .heading, .section-dark .display { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: 14px 26px; border-radius: var(--r-sm); border: 1px solid transparent; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--brand-500); transform: translateY(-2px); box-shadow: 0 22px 46px -16px var(--brand-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-50); color: var(--brand); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--brand-700); }
.btn-white:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:active { transform: translateY(0) scale(.985); }
.arrow-shift:hover svg { transform: translateX(4px); }

/* ---------- Badge / pill ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: var(--r-pill);
  background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.badge svg { width: 15px; height: 15px; color: var(--brand); }
.tag { font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--brand-50); color: var(--brand); padding: 4px 9px; border-radius: 5px; border: 1px solid var(--brand-100); }

/* ---------- Navbar ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 18px 0; transition: padding .3s, background .3s, box-shadow .3s, backdrop-filter .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { padding: 10px 0; background: var(--nav-bg); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px -22px rgba(0,0,0,.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { background: #fff; border-radius: 12px; padding: 9px 16px; display: inline-flex; box-shadow: var(--sh-soft); transition: padding .3s; }
.nav-logo img { height: 56px; width: auto; object-fit: contain; transition: height .3s; }
.nav.scrolled .nav-logo img { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
/* nav text: light over hero, theme-text when scrolled */
.nav-link, .nav-dd-btn { position: relative; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.9); padding: 6px 0; transition: color .2s; white-space: nowrap; background: none; border: 0; cursor: pointer; }
.nav-dd-btn { display: inline-flex; align-items: center; gap: 5px; }
.nav.scrolled .nav-link, .nav.scrolled .nav-dd-btn { color: var(--text); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--brand); border-radius: 2px; transition: width .25s ease; }
.nav-link:hover { color: var(--brand); }
.nav-link:hover::after { width: 100%; }
.nav-dd-btn:hover { color: var(--brand); }
.nav-dd-btn svg { width: 15px; height: 15px; transition: transform .25s; }
.nav-dd.open .nav-dd-btn svg { transform: rotate(180deg); }

/* dropdown + hover bridge (fixes unclickable submenu) */
.nav-dd { position: relative; }
.nav-dd::after { content: ""; position: absolute; left: -10px; right: -10px; top: 100%; height: 20px; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 232px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-card); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .22s, transform .22s; z-index: 120;
}
.nav-dd.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-radius: 9px; font-size: .9rem; font-weight: 500; color: var(--text); transition: background .18s, color .18s; }
.dropdown a svg { width: 14px; height: 14px; margin-left: auto; opacity: .55; }
.dropdown a:hover { background: var(--brand-50); color: var(--brand); }
.dropdown a.ext { color: var(--brand); font-weight: 600; }
.dropdown a.ext svg { opacity: 1; }
.dropdown-sep { height: 1px; background: var(--line); margin: 7px 8px; }

/* theme toggle */
.theme-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: var(--r-sm); background: transparent; border: 1px solid var(--line-strong); color: var(--text); cursor: pointer; transition: background .2s, border-color .2s, color .2s; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .ico-sun { display: none; }
html[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
html[data-theme="dark"] .theme-toggle .ico-moon { display: none; }
.nav .theme-toggle { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.28); }
.nav .theme-toggle:hover { color: #fff; border-color: var(--brand); }
.nav.scrolled .theme-toggle { color: var(--text); border-color: var(--line-strong); }
.nav.scrolled .theme-toggle:hover { color: var(--brand); border-color: var(--brand); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: #fff; padding: 6px; }
.nav.scrolled .nav-toggle { color: var(--text); }
.nav-toggle svg { width: 26px; height: 26px; }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--bg); padding: 92px 24px 40px; display: none; flex-direction: column; gap: 6px; opacity: 0; transform: translateY(-12px); transition: opacity .3s, transform .3s; overflow-y: auto; }
.mobile-menu.show { display: flex; opacity: 1; transform: translateY(0); }
.mobile-link { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; text-transform: uppercase; letter-spacing: .01em; color: var(--text); padding: 14px 4px; border-bottom: 1px solid var(--line); }
.mobile-link:active { color: var(--brand); }
.mobile-group-label { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-400); margin-top: 22px; padding: 0 4px; }
.mobile-theme { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-md); }
.mobile-theme span { font-weight: 600; font-size: .95rem; }

/* simple header (sub pages) */
.subheader { position: sticky; top: 0; z-index: 80; background: var(--nav-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.subheader-inner { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.subheader-left { display: flex; align-items: center; gap: 22px; margin-right: auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--brand); transition: color .2s, gap .2s; }
.back-link svg { width: 18px; height: 18px; transition: transform .2s; }
.back-link:hover { color: var(--brand-600); }
.back-link:hover svg { transform: translateX(-3px); }
.subheader-divider { width: 1px; height: 30px; background: var(--line); }
.subheader-logo { background: #fff; border-radius: 9px; padding: 6px 12px; display: inline-flex; box-shadow: var(--sh-soft); }
.subheader-logo img { height: 44px; width: auto; }
.subheader-label { text-align: right; }
.subheader-label .k { font-size: .66rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-400); }
.subheader-label .v { font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--text); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.items-center { align-items: center; }
.gap-sm { gap: 16px; }
.gap-lg { gap: 56px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Cinematic Hero ---------- */
.hero { position: relative; min-height: 96vh; display: flex; align-items: center; padding: 168px 0 96px; overflow: hidden; background: var(--ink); color: var(--text); }
.hero-media-bg { position: absolute; inset: 0; z-index: 0; }
.hero-media-bg video, .hero-media-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,8,.92) 0%, rgba(6,7,8,.7) 42%, rgba(6,7,8,.28) 100%), linear-gradient(0deg, rgba(6,7,8,.95) 2%, rgba(6,7,8,0) 45%); }
.hero-veil::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 80% 20%, var(--brand-glow), transparent 55%); opacity: .35; mix-blend-mode: screen; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.2rem, 7.5vw, 6.1rem); line-height: 1.0; letter-spacing: -.032em; margin: 22px 0 24px; color: #fff; }
.hero p.lead { margin-bottom: 36px; max-width: 36rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .btn-ghost:hover { color: var(--brand-300); border-color: var(--brand); background: rgba(255,255,255,.06); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 52px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.14); }
.hs-item .n { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; color: #fff; }
.hs-item .n .accent { color: var(--brand-300); }
.hs-item .l { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-top: 8px; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); display: grid; place-items: center; }
.scroll-cue svg { width: 22px; height: 22px; animation: floaty 2.2s ease-in-out infinite; }

/* legacy split-hero frame (cookware) */
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg::before, .hero-bg::after { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; filter: blur(120px); opacity: .35; }
.hero-bg::before { top: -120px; left: -80px; background: radial-gradient(circle, var(--brand-glow), transparent 70%); }
.hero-bg::after { bottom: -160px; right: -100px; background: radial-gradient(circle, rgba(247,138,93,.3), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lift); border: 1px solid var(--line); }
.hero-frame img { width: 100%; height: 520px; object-fit: cover; }
.hero-frame .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,7,8,.55), transparent 55%); }
.media-caption { position: absolute; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 16px; background: rgba(20,22,25,.55); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-md); padding: 16px; }
.media-caption .ic { background: var(--brand); width: 48px; height: 48px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.media-caption .ic svg { width: 24px; height: 24px; }
.media-caption .t { color: #fff; font-weight: 700; font-size: .98rem; }
.media-caption .s { color: rgba(255,255,255,.7); font-size: .84rem; }
.float-stat { position: absolute; top: -24px; right: -20px; background: var(--surface); padding: 20px 24px; border-radius: var(--r-md); box-shadow: var(--sh-card); border: 1px solid var(--line); animation: floaty 4.5s ease-in-out infinite; }
.float-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--brand); line-height: 1; }
.float-stat .l { color: var(--muted); font-size: .8rem; font-weight: 500; margin-top: 4px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Showcase band (full-width image) ---------- */
.showcase-band { position: relative; padding: 134px 0; background-size: cover; background-position: center; background-attachment: fixed; }
.showcase-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,7,8,.92), rgba(6,7,8,.55) 65%, rgba(6,7,8,.25)); }
.showcase-band .container { position: relative; z-index: 1; }
.showcase-inner { max-width: 640px; }
.showcase-inner .eyebrow { color: var(--brand-300); }
.showcase-inner h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 3rem); color: #fff; line-height: 1.06; letter-spacing: -.028em; margin-top: 10px; }
.showcase-inner p { color: rgba(255,255,255,.82); font-size: 1.1rem; line-height: 1.7; margin-top: 16px; max-width: 38rem; }
@media (max-width: 820px) { .showcase-band { background-attachment: scroll; padding: 88px 0; } }

/* ---------- Value items ---------- */
.value-item { display: flex; gap: 16px; }
.value-ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; }
.value-ic svg { width: 24px; height: 24px; }
.value-item h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 4px; color: var(--text); }
.value-item p { color: var(--muted); font-size: .9rem; line-height: 1.55; }

/* ---------- Timeline (dark card) ---------- */
.dark-panel { background: linear-gradient(180deg, #1c2027, #0c0e12); color: #fff; border: 1px solid var(--line); border-radius: var(--r-2xl); padding: 50px; position: relative; overflow: hidden; }
.dark-panel::before { content: ""; position: absolute; top: -120px; right: -120px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--brand-glow), transparent 70%); filter: blur(40px); opacity: .6; }
.dark-panel > * { position: relative; z-index: 1; }
.timeline { display: flex; flex-direction: column; gap: 30px; margin-top: 28px; }
.tl-item { display: flex; gap: 22px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-50), 0 0 16px var(--brand-glow); flex-shrink: 0; }
.tl-line { width: 2px; flex: 1; background: rgba(255,255,255,.12); margin: 8px 0; }
.tl-year { color: var(--brand-300); font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .04em; }
.tl-item h5 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: .02em; text-transform: uppercase; margin: 2px 0 4px; color: #fff; }
.tl-item p { color: var(--muted); font-size: .9rem; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: #fff; padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -14px; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.12); }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 4.4vw, 3.4rem); line-height: 1; color: #fff; }
.stat .n .accent { color: var(--brand-300); }
.stat .l { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-top: 12px; }

/* ---------- Service cards ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; overflow: hidden; transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s, background .3s; display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-card); border-color: var(--brand); }
.card-media { margin: -34px -34px 26px; height: 184px; overflow: hidden; border-bottom: 1px solid var(--line); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-media img { transform: scale(1.06); }
.svc-ic { width: 62px; height: 62px; border-radius: 14px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; margin-bottom: 22px; transition: background .3s, color .3s; }
.svc-ic svg { width: 30px; height: 30px; }
.card:hover .svc-ic { background: var(--brand); color: #fff; border-color: var(--brand); }
.card h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 12px; color: var(--text); }
.card .desc { color: var(--muted); font-size: .94rem; margin-bottom: 22px; }
.feat-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.feat-list li { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; color: var(--ink-700); }
.feat-list svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }
.card-detail { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.card-detail .k { font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: 5px; }
.card-detail p { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.card-link { margin-top: auto; padding-top: 22px; display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 700; font-size: .9rem; transition: gap .25s, color .25s; }
.card-link svg { width: 17px; height: 17px; }
.card-link:hover { gap: 13px; color: var(--brand-600); }

/* ---------- Machinery ---------- */
.machine-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px; transition: border-color .3s; }
.machine-card:hover { border-color: var(--line-strong); }
.machine-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.machine-head .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--brand); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-brand); }
.machine-head .ic svg { width: 22px; height: 22px; }
.machine-head h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: .02em; text-transform: uppercase; }
.machine-item { background: var(--bg-cool); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px; margin-bottom: 12px; }
.machine-item:last-child { margin-bottom: 0; }
.machine-item .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 4px; }
.machine-item .name { font-weight: 700; font-size: .96rem; color: var(--text); }
.machine-item .spec { color: var(--muted); font-size: .86rem; }

/* ---------- Sectors ---------- */
.client-grid, .sector-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.sector-card { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 16px; transition: transform .3s, border-color .3s, background .3s; }
.sector-card .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; transition: background .3s, color .3s; }
.sector-card .ic svg { width: 24px; height: 24px; }
.sector-card .client-name, .sector-card span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .3s; }
.sector-card:hover { transform: translateY(-5px); border-color: var(--brand); }
.sector-card:hover .ic { background: var(--brand); color: #fff; }
.sector-card:hover .client-name, .sector-card:hover span { color: var(--brand); }

/* ---------- Quality / panel ---------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-2xl); padding: 60px; position: relative; overflow: hidden; box-shadow: var(--sh-soft); }
.panel::before { content: ""; position: absolute; top: -120px; right: -120px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--brand-glow), transparent 70%); filter: blur(30px); opacity: .4; }
.panel > * { position: relative; z-index: 1; }
.q-step { display: flex; gap: 16px; margin-bottom: 22px; }
.q-step .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; }
.q-step .ic svg { width: 22px; height: 22px; }
.q-step h5 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .02em; text-transform: uppercase; color: var(--text); }
.q-step p { color: var(--muted); font-size: .9rem; }
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.collage img { border-radius: var(--r-md); height: 270px; width: 100%; object-fit: cover; box-shadow: var(--sh-soft); border: 1px solid var(--line); }
.collage img:nth-child(2) { margin-top: 36px; }

/* ---------- Video gallery ---------- */
.video-feature { position: relative; border-radius: var(--r-2xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-lift); background: #000; }
.video-feature video { width: 100%; display: block; max-height: 560px; object-fit: cover; background: #000; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.video-card { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: var(--sh-soft); transition: transform .3s, border-color .3s, box-shadow .3s; }
.video-card:hover { transform: translateY(-5px); border-color: var(--brand); box-shadow: var(--sh-card); }
.video-card video { width: 100%; height: 230px; object-fit: cover; display: block; background: #000; }
.video-card .vlabel { position: absolute; left: 0; right: 0; top: 0; padding: 16px 18px 26px; background: linear-gradient(180deg, rgba(6,7,8,.85), transparent); font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; color: #fff; pointer-events: none; display: flex; align-items: center; gap: 8px; }
.video-card .vlabel svg { width: 16px; height: 16px; color: var(--brand-300); }

/* ---------- Contact ---------- */
.contact-row { display: flex; align-items: center; gap: 22px; margin-bottom: 26px; }
.contact-row .ic { width: 56px; height: 56px; border-radius: 13px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ic svg { width: 24px; height: 24px; }
.contact-row .k { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-400); }
.contact-row .v { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; letter-spacing: .02em; color: var(--text); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--sh-soft); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-700); margin-bottom: 8px; }
.input, .select, .textarea { width: 100%; background: var(--bg-cool); border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 13px 16px; font-size: .95rem; color: var(--text); transition: border-color .2s, box-shadow .2s, background .2s; }
.input::placeholder, .textarea::placeholder { color: var(--muted-400); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 3px var(--brand-50); }
.select option { background: var(--surface); color: var(--text); }
.textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 84px 0 36px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { display: inline-flex; background: #fff; padding: 14px 18px; border-radius: var(--r-md); margin-bottom: 22px; box-shadow: var(--sh-soft); }
.footer-logo img { height: 58px; width: auto; }
.wordmark { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.wordmark svg { width: 26px; height: 26px; color: var(--brand); }
.wordmark .w { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; text-transform: uppercase; }
.wordmark .w span { color: var(--brand); }
.footer p.about { color: var(--muted); font-size: .92rem; line-height: 1.7; max-width: 32ch; }
.footer h5 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 22px; color: #fff; }
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer ul a { color: var(--muted); font-size: .92rem; transition: color .2s, padding .2s; }
.footer ul a:hover { color: var(--brand-300); padding-left: 4px; }
.newsletter { display: flex; gap: 8px; margin-top: 18px; }
.newsletter input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-sm); padding: 11px 14px; color: #fff; font-size: .9rem; }
.newsletter input::placeholder { color: #8a93a0; }
.newsletter input:focus { outline: none; border-color: var(--brand); }
.newsletter button { background: var(--brand); border: 0; border-radius: var(--r-sm); width: 46px; display: grid; place-items: center; color: #fff; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.newsletter button:hover { background: var(--brand-600); }
.newsletter button svg { width: 20px; height: 20px; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #8a93a0; font-size: .86rem; flex-wrap: wrap; }
.footer-bottom a { color: #8a93a0; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 30px; }
.footer-mini { background: var(--bg-cool); border-top: 1px solid var(--line); padding: 34px 0; text-align: center; color: var(--muted); font-size: .88rem; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 130px 0 90px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 90% 0%, var(--brand-glow), transparent 55%); opacity: .4; }
.page-hero::after { content: ""; position: absolute; top: 50%; right: -60px; transform: translateY(-50%); width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, var(--brand-glow), transparent 70%); filter: blur(70px); opacity: .4; }
.page-hero .inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 1.04; letter-spacing: -.03em; margin-bottom: 22px; color: #fff; }
.page-hero h1 .accent { color: var(--brand-300); }
.page-hero p { color: var(--muted); font-size: 1.16rem; line-height: 1.7; max-width: 46rem; }

/* ---------- Grade cards ---------- */
.grade-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-soft); margin-bottom: 40px; }
.grade-layout { display: grid; grid-template-columns: 280px 1fr; }
.grade-side { padding: 40px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; }
.grade-side.brand { background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); }
.grade-side.dark { background: var(--ink-800); }
.grade-side .k { font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }
.grade-side.brand .k { color: #ffe2d2; }
.grade-side.dark .k { color: var(--brand-300); }
.grade-side .grade-no { font-family: var(--font-display); font-weight: 700; font-size: 3.2rem; line-height: 1; margin-top: 8px; }
.grade-side .pill { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700; }
.grade-side.brand .pill { color: #fff; }
.grade-side.dark .pill { color: var(--brand-300); }
.grade-side .pill svg { width: 18px; height: 18px; }
.grade-body { padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; background: var(--surface); }
.grade-block h3 { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 16px; color: var(--text); }
.grade-block h3 svg { width: 19px; height: 19px; color: var(--brand); }
.kv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kv { background: var(--bg-cool); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; }
.kv.brandbg { background: var(--brand-50); border-color: var(--brand-100); }
.kv .k { font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-400); margin-bottom: 3px; }
.kv.brandbg .k { color: var(--brand); }
.kv .v { font-size: .86rem; font-weight: 700; color: var(--text); }
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.char-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.char-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: var(--ink-700); }
.char-list svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.apps-box { background: var(--ink-800); color: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.apps-box.brand { background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); border-color: transparent; box-shadow: var(--sh-brand); }
.apps-box .k { font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }
.apps-box.dark-accent .k { color: var(--brand-300); }
.apps-box.brand .k { color: #ffe2d2; }
.apps-box p { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.9); }

/* ---------- CTA band ---------- */
.cta-band { padding: 90px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band.brand { background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); }
.cta-band.dark { background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band.dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 50% 0%, var(--brand-glow), transparent 60%); opacity: .35; }
.cta-band .inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.022em; font-size: clamp(2rem, 3.8vw, 2.85rem); margin-bottom: 18px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 32px; }
.cta-band.brand p { color: #ffe9dd; }
.cta-band.dark p { color: var(--muted); }

/* ---------- Feature cards ---------- */
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; transition: transform .3s, box-shadow .3s, border-color .3s; height: 100%; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-card); border-color: var(--brand); }
.feature-card .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; margin-bottom: 22px; transition: transform .3s, background .3s, color .3s; }
.feature-card:hover .ic { transform: scale(1.08); background: var(--brand); color: #fff; }
.feature-card .ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 10px; color: var(--text); }
.feature-card p { color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ---------- Product cards ---------- */
.product-card { display: block; color: inherit; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-soft); transition: transform .3s, box-shadow .3s, border-color .3s; height: 100%; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh-card); border-color: var(--brand); }
.product-card .media { height: 240px; overflow: hidden; background: var(--bg-cool); }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-card:hover .media img { transform: scale(1.08); }
.product-card .body { padding: 28px; }
.product-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 10px; color: var(--text); }
.product-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 18px; }
.product-card .more { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-weight: 700; font-size: .88rem; transition: gap .25s; }
.product-card:hover .more { gap: 11px; }
.product-card .more svg { width: 16px; height: 16px; }

/* ---------- Clickable product tile (cookware) ---------- */
.product-link { display: block; text-decoration: none; color: inherit; transition: transform .3s; }
.product-link:hover { transform: translateY(-4px); }
.product-thumb { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1; margin-bottom: 16px; border: 1px solid var(--line); box-shadow: var(--sh-soft); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-link:hover .product-thumb img { transform: scale(1.05); }
.product-sub { color: var(--brand); font-weight: 600; font-size: .88rem; }
.product-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; color: var(--text); font-weight: 700; font-size: .85rem; }
.product-cta svg { width: 15px; height: 15px; transition: transform .25s; }
.product-link:hover .product-cta { color: var(--brand); }
.product-link:hover .product-cta svg { transform: translateX(4px); }

/* ---------- Checklist (dark panel) ---------- */
.checklist { display: flex; flex-direction: column; gap: 18px; }
.checklist .item { display: flex; align-items: flex-start; gap: 14px; }
.checklist .item .dot { margin-top: 2px; background: var(--brand); border-radius: 50%; width: 22px; height: 22px; display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 0 14px var(--brand-glow); }
.checklist .item .dot svg { width: 13px; height: 13px; color: #fff; }
.checklist .item p { color: var(--muted); font-weight: 500; font-size: .96rem; }

.glass-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: 32px; backdrop-filter: blur(6px); }
.glass-box h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: .02em; text-transform: uppercase; color: var(--brand-300); margin-bottom: 14px; }
.glass-box p { color: var(--muted); margin-bottom: 26px; }

.step-row { display: flex; gap: 16px; margin-bottom: 22px; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand); display: grid; place-items: center; font-weight: 700; flex-shrink: 0; }
.step-row h5 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .02em; text-transform: uppercase; color: var(--text); }
.step-row p { color: var(--muted); font-size: .9rem; }

.stat-tile { border-radius: var(--r-lg); padding: 30px; text-align: center; border: 1px solid var(--line); }
.stat-tile.tint { background: var(--brand-50); border-color: var(--brand-100); }
.stat-tile.dark { background: var(--ink); color: #fff; }
.stat-tile.brand { background: linear-gradient(160deg, var(--brand-500), var(--brand-700)); color: #fff; box-shadow: var(--sh-brand); border-color: transparent; }
.stat-tile svg { width: 38px; height: 38px; margin: 0 auto 14px; }
.stat-tile.tint svg { color: var(--brand); }
.stat-tile.dark svg { color: var(--brand-300); }
.stat-tile .n { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; }
.stat-tile .l { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

.callout { display: flex; gap: 16px; padding: 24px; border-radius: var(--r-md); }
.callout.tint { background: var(--brand-50); border: 1px solid var(--brand-100); }
.callout.dark { background: var(--ink); border: 1px solid var(--line); color: #fff; }
.callout .ic { flex-shrink: 0; color: var(--brand); }
.callout.dark .ic { color: var(--brand-300); }
.callout .ic svg { width: 24px; height: 24px; }
.callout h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 5px; }
.callout.tint h4 { color: var(--brand-700); }
.callout.tint p { color: var(--ink-700); font-size: .9rem; line-height: 1.6; }
.callout.dark p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

.info-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--sh-soft); }
.chip-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chip-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; color: var(--ink-700); }
.chip-list li .d { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.chip-list li svg { width: 16px; height: 16px; color: var(--brand); flex-shrink: 0; }

.framed-img { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-lift); border: 1px solid var(--line); }
.framed-img img { width: 100%; height: 500px; object-fit: cover; }
.float-card { position: absolute; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-card); max-width: 270px; }
.float-card .h { display: flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 700; margin-bottom: 8px; font-size: .95rem; }
.float-card .h svg { width: 18px; height: 18px; }
.float-card p { color: var(--muted); font-size: .82rem; line-height: 1.55; }

.order-1 { order: 1; } .order-2 { order: 2; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .grade-layout { grid-template-columns: 1fr; }
  .grade-side { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .client-grid, .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .panel { padding: 44px; }
  .dark-panel { padding: 40px; }
}
@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat + .stat::before { display: none; }
  .grade-body { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .float-stat { right: 12px; top: -16px; }
  .order-1 { order: 0; } .order-2 { order: 0; }
  .subheader-label { display: none; }
  .collage img:nth-child(2) { margin-top: 0; }
  .hero-stats { gap: 26px; }
  .video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { min-height: 88vh; padding: 124px 0 72px; }
  .hero-frame img { height: 380px; }
  .client-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-list { grid-template-columns: 1fr; }
  .panel, .form-card, .dark-panel { padding: 28px; }
  .grade-body { padding: 28px; }
  .grade-side { padding: 28px; }
  .footer-legal { gap: 18px; }
}

/* =====================================================================
   2026 UPDATE — common header on inner pages, stat icons, animated
   timeline + founder, client logo board, footer map, form states,
   grade summary, Bhagya branding, prominent phone
   ===================================================================== */

/* ---- Common header on inner pages (point 22): solid nav, no cinematic hero ---- */
/* Pages with .page-hero already have 130px top padding that clears the fixed bar.
   .inner-toppad is only for inner pages whose first section is light (e.g. cookware). */
.inner-toppad { padding-top: 118px !important; }
.nav.nav-solid { padding: 10px 0; background: var(--nav-bg); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px -22px rgba(0,0,0,.4); }
.nav.nav-solid .nav-link, .nav.nav-solid .nav-dd-btn { color: var(--text); }
.nav.nav-solid .nav-toggle { color: var(--text); }
.nav.nav-solid .theme-toggle { color: var(--text); border-color: var(--line-strong); }
.nav.nav-solid .nav-logo img { height: 46px; }
.nav.nav-solid .theme-toggle:hover { color: var(--brand); border-color: var(--brand); }

/* ---- Stats band icons (point 8) ---- */
.stat-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: var(--brand-300); }
.stat-ic svg { width: 27px; height: 27px; }

/* ---- Journey: founder lockup (point 11) ---- */
.founder { display: flex; align-items: center; gap: 18px; padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
.founder img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); box-shadow: 0 0 0 4px rgba(255,90,31,.16); background: #0c0e12; flex-shrink: 0; }
.founder .nm { font-family: var(--font-display); font-weight: 700; font-size: 1.14rem; color: #fff; letter-spacing: .02em; }
.founder .rl { color: var(--brand-300); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-top: 4px; }
.founder .yr { color: var(--muted); font-size: .82rem; margin-top: 4px; }

/* ---- Animated timeline w/ icon badges (point 12) ---- */
.tl-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-300); display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 0 18px rgba(255,90,31,.16); }
.tl-ic svg { width: 21px; height: 21px; }
.timeline .tl-item.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.timeline .tl-item.reveal.in { opacity: 1; transform: none; }

/* ---- Client logo board (point 15) ---- */
.clients-board { margin-top: 46px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 40px 34px 30px; box-shadow: var(--sh-soft); }
.clients-note { text-align: center; color: var(--muted-400); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; margin-bottom: 26px; }
.clients-board img { width: 100%; display: block; image-rendering: -webkit-optimize-contrast; }
.client-logo-grid { display: flex; flex-direction: column; gap: 0; }
.client-logo-row { display: grid; grid-template-columns: repeat(5, 1fr); }
.cl-item { display: flex; align-items: center; justify-content: center; padding: 24px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cl-item:last-child { border-right: none; }
.client-logo-row:last-child .cl-item { border-bottom: none; }
.cl-item img { max-height: 48px; max-width: 120px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s; }
.cl-item img:hover { filter: grayscale(0); opacity: 1; }

/* ---- Footer map (point 19) ---- */
.footer-map { margin: 4px 0 44px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--sh-soft); }
.footer-map iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }

/* ---- Prominent primary phone (points 9, 24) ---- */
.contact-row.primary .ic { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--sh-brand); }
.contact-row.primary .v { font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 700; }
.contact-row.primary .v a { color: var(--brand); }
.contact-row.primary .v a:hover { color: var(--brand-600); }

/* ---- Form states (points 20, 27) ---- */
.hp { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; line-height: 1.5; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.42); color: #15a34a; }
.form-status.err { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.42); color: #dc2626; }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* ---- Grade summary strip above technical specs (point 10) ---- */
.grade-summary { margin: 0 0 40px; }
.grade-summary .gs-label { display: inline-flex; align-items: center; gap: 9px; font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.grade-summary .gs-label svg { width: 16px; height: 16px; }
.grade-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.grade-chip { display: inline-flex; align-items: baseline; gap: 7px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 18px; font-size: .86rem; font-weight: 700; color: var(--text); box-shadow: var(--sh-soft); transition: border-color .2s, transform .2s; }
.grade-chip:hover { border-color: var(--brand); transform: translateY(-2px); }
.grade-chip small { color: var(--muted); font-weight: 600; font-size: .72rem; }
.page-hero .grade-summary .grade-chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.page-hero .grade-summary .grade-chip small { color: rgba(255,255,255,.7); }

/* ---- Bhagya brand lockup (points 18, 23) ---- */
.brand-lockup { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.brand-lockup img { height: 60px; width: auto; }
.brand-lockup .bl-k { font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-400); }
.brand-lockup .bl-v { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; color: var(--text); margin-top: 2px; }
.section-dark .brand-lockup .bl-v, .cta-band .brand-lockup .bl-v { color: #fff; }

/* ---- Explore-more link / product section (point 28) ---- */
.section-headrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 46px; }
.explore-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .95rem; color: var(--brand); white-space: nowrap; transition: gap .25s, color .25s; }
.explore-more svg { width: 17px; height: 17px; }
.explore-more:hover { gap: 13px; color: var(--brand-600); }
.partner-brands { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; color: var(--muted); font-size: .9rem; font-weight: 600; }
.partner-brands .pb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

@media (max-width: 820px) {
  .footer-map iframe { height: 220px; }
  .founder img { width: 74px; height: 74px; }
  .clients-board { padding: 26px 18px 20px; }
  .section-headrow { margin-bottom: 34px; }
  .client-logo-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .client-logo-row { grid-template-columns: repeat(2, 1fr); }
  .cl-item { padding: 18px 12px; }
  .cl-item img { max-height: 36px; max-width: 90px; }
}

/* ---- Nav dropdown anchor (Services link inside button) ---- */
.nav-dd-anchor { color: inherit; text-decoration: none; }
.nav-dd-anchor:hover { color: inherit; }
