@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

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

:root {
  --purple:       #7B2D8B;
  --purple-dark:  #5A1F6A;
  --purple-deep:  #3A1248;
  --purple-light: #C49BD8;
  --purple-pale:  #F5EEF9;
  --magenta:      #C2185B;
  --gold:         #D4A017;
  --gold-light:   #F0C84A;
  --gold-pale:    #FDF8E8;
  --white:        #FFFFFF;
  --off-white:    #FAF8FC;
  --dark:         #1A0D22;
  --text:         #2D1B3D;
  --muted:        #7B6B8A;
  --border:       rgba(123,45,139,0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--off-white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--purple-deep);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 75px;
  box-shadow: 0 2px 20px rgba(58,18,72,0.5);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-text .brand { font-weight: 800; font-size: 18px; color: white; letter-spacing: 0.02em; }
.nav-logo-text .sub { font-size: 9px; color: var(--gold-light); letter-spacing: 0.22em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color .2s; padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--purple-deep); border: none; padding: 9px 22px; border-radius: 4px;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,160,23,0.4); }

/* PAGE HERO BANNER (for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 60%, var(--magenta) 100%);
  padding: 130px 5% 70px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px; border-radius: 20px;
  font-size: 11px; color: var(--gold-light); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 20px;
}
.page-hero-label span { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; display:inline-block; }
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em; }
.page-hero h1 .accent { color: var(--gold-light); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 600px; }

/* SECTIONS */
section { padding: 80px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-label { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--purple); margin-bottom: 14px; }
.sec-label::before { content: ''; width: 20px; height: 2px; background: var(--purple); border-radius: 1px; }
h2.sec-title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.sec-intro { font-size: 16px; color: var(--muted); max-width: 580px; line-height: 1.8; margin-bottom: 50px; }

/* ABOUT */
.about-section { background: var(--purple-pale); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.philosophy-block { background: linear-gradient(135deg, var(--purple-deep), var(--purple)); border-radius: 12px; padding: 36px; border-left: 4px solid var(--gold); margin-top: 28px; }
.philosophy-block p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 17px; color: rgba(255,255,255,0.9); line-height: 1.65; }
.philosophy-block .attr { margin-top: 16px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
.neuvocare-strip { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; margin-bottom: 20px; border-top: 3px solid var(--purple); }
.neuvocare-strip h3 { font-size: 15px; font-weight: 700; color: var(--purple); margin-bottom: 10px; }
.neuvocare-strip p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.exp-cards { display: flex; flex-direction: column; gap: 14px; }
.exp-card { background: white; border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; border-left: 3px solid var(--purple); transition: transform .2s, box-shadow .2s; }
.exp-card:hover { transform: translateX(4px); box-shadow: -4px 0 20px rgba(123,45,139,0.1); }
.exp-card h3 { font-size: 14px; font-weight: 700; color: var(--purple-dark); margin-bottom: 8px; }
.exp-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* COMMITMENT / QUALITY */
.commit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.commit-card { padding: 32px 26px; border-radius: 12px; background: var(--purple-pale); border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.commit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--purple), var(--magenta)); }
.commit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(123,45,139,0.12); }
.commit-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--purple), var(--magenta)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.commit-card h3 { font-size: 16px; font-weight: 700; color: var(--purple-dark); margin-bottom: 10px; }
.commit-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.accred-banner { background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark)); border-radius: 12px; padding: 28px 36px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.accred-banner .abl { color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap; }
.accred-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.ap { background: rgba(212,160,23,0.2); border: 1px solid rgba(212,160,23,0.35); color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 14px; border-radius: 20px; }

/* PRODUCTS */
.products-section { background: #F8F4FC; }
.tabs-bar { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 40px; background: white; border-radius: 10px 10px 0 0; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.tab-btn { padding: 16px 32px; background: none; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all .2s; white-space: nowrap; }
.tab-btn.active { color: var(--purple); border-bottom-color: var(--purple); background: var(--purple-pale); }
.tab-btn:hover { color: var(--purple); background: var(--purple-pale); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }

.prod-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform .2s, box-shadow .2s; border: 1px solid rgba(0,0,0,0.06); }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.prod-header { padding: 24px 24px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.prod-header.clinical    { background: linear-gradient(135deg,#E3F0FF,#C8DFFE); border-bottom: 2px solid #1565C0; }
.prod-header.antifungal  { background: linear-gradient(135deg,#E8F5E9,#C8E6C9); border-bottom: 2px solid #2E7D32; }
.prod-header.soakit      { background: linear-gradient(135deg,#E0F7FA,#B2EBF2); border-bottom: 2px solid #006064; }
.prod-header.shampoo     { background: linear-gradient(135deg,#1a1a1a,#2d2d2d); border-bottom: 2px solid #D4A017; }
.prod-header.moisturizer { background: linear-gradient(135deg,#E8F5E9,#DCEDC8); border-bottom: 2px solid #33691E; }
.prod-header.lotion      { background: linear-gradient(135deg,#FCE4EC,#F8BBD0); border-bottom: 2px solid #AD1457; }
.prod-header.sachets     { background: linear-gradient(135deg,#4a0e0e,#7B1A1A); border-bottom: 2px solid #D4A017; }
.prod-header.facewash    { background: linear-gradient(135deg,#E8F5E9,#C8E6C9); border-bottom: 2px solid #388E3C; }
.prod-header.foamwash    { background: linear-gradient(135deg, #8d96ad, #5b90e3); border-bottom: 2px solid #90CAF9; }
.prod-header.chillgel    { background: linear-gradient(135deg,#FFF9C4,#FFF176); border-bottom: 2px solid #F57F17; }
.prod-header.chilllotion { background: linear-gradient(135deg,#FFF3E0,#FFE0B2); border-bottom: 2px solid #E65100; }
.prod-name { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.prod-header.clinical    .prod-name { color: #0D47A1; }
.prod-header.antifungal  .prod-name { color: #1B5E20; }
.prod-header.soakit      .prod-name { color: #004D40; }
.prod-header.shampoo     .prod-name { color: #D4A017; }
.prod-header.moisturizer .prod-name { color: #1B5E20; }
.prod-header.lotion      .prod-name { color: #880E4F; }
.prod-header.sachets     .prod-name { color: #F0C84A; }
.prod-header.facewash    .prod-name { color: #1B5E20; }
.prod-header.foamwash    .prod-name { color: white; }
.prod-header.chillgel    .prod-name { color: #E65100; }
.prod-header.chilllotion .prod-name { color: #BF360C; }
.prod-sub { font-size: 11px; margin-top: 4px; opacity: 0.75; font-weight: 500; color: #ffff;}
.prod-header.foamwash .prod-sub { color: rgba(255,255,255,0.85); opacity:1; }
.prod-header.sachets  .prod-sub { color: rgba(240,200,74,0.85); opacity:1; }
.prod-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 12px; white-space: nowrap; flex-shrink: 0; }
.badge-clinical   { background: #0D47A1; color: white; }
.badge-antifungal { background: #2E7D32; color: white; }
.badge-first      { background: var(--purple); color: white; }
.badge-rx         { background: var(--magenta); color: white; }
.badge-japan      { background: #B71C1C; color: white; }
.badge-nano       { background: #1565C0; color: white; }
.badge-sun        { background: #F57F17; color: white; }
.badge-bright     { background: #880E4F; color: white; }
.prod-body { padding: 20px 24px 24px; }
.prod-tagline { font-style: italic; font-size: 12px; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.prod-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.prod-highlights { list-style: none; margin-bottom: 14px; }
.prod-highlights li { font-size: 12px; color: var(--text); padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.05); }
.prod-highlights li:last-child { border-bottom: none; }
.prod-highlights li::before { content: '›'; position: absolute; left: 0; color: var(--purple); font-weight: 700; font-size: 16px; line-height: 1.3; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.prod-tag { font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 10px; border: 1px solid var(--border); color: var(--purple); background: var(--purple-pale); }

/* Product UI components */
.quick-acro { background: linear-gradient(135deg,#0D47A1,#1565C0); border-radius: 10px; padding: 16px 20px; margin-bottom: 16px; }
.quick-acro .acro-title { font-size: 11px; font-weight: 700; color: #90CAF9; letter-spacing: 0.15em; margin-bottom: 10px; text-transform: uppercase; }
.acro-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 6px; }
.acro-letter { font-size: 18px; font-weight: 800; color: #F0C84A; width: 20px; flex-shrink: 0; line-height: 1.3; }
.acro-text { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.sachets-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.stat-box { border-radius: 8px; padding: 14px; text-align: center; background: rgba(212,160,23,0.15); border: 1px solid rgba(212,160,23,0.3); }
.stat-box .sn { font-size: 26px; font-weight: 800; color: var(--gold); }
.stat-box .sl { font-size: 10px; color: #7B1A1A; font-weight: 600; margin-top: 2px; }
.soak-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.soak-step { background: linear-gradient(135deg,#006064,#00838F); border-radius: 8px; padding: 14px 10px; text-align: center; }
.soak-step .ss-num { font-size: 20px; font-weight: 800; color: white; }
.soak-step .ss-unit { font-size: 11px; color: rgba(255,255,255,0.8); font-weight: 600; }
.soak-step .ss-label { font-size: 10px; color: rgba(255,255,255,0.65); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }
.smart-acro { background: linear-gradient(135deg, #8d96ad, #5b90e3); border-radius: 10px; padding: 16px 20px; margin-bottom: 16px; }
.smart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.smart-item { background: rgba(255,255,255,0.1); border-radius: 6px; padding: 10px; }
.smart-item .si-letter { font-size: 16px; font-weight: 800; color: #F0C84A; }
.smart-item .si-name { font-size: 11px; font-weight: 700; color: white; margin-top: 2px; }
.smart-item .si-desc { font-size: 10px; color: rgba(255,255,255,0.7); margin-top: 3px; line-height: 1.4; }

/* HOW TO USE */
.prod-usage-section { margin-top: 14px; border-top: 1px dashed var(--border); padding-top: 14px; }
.prod-usage-section .usage-toggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); padding: 6px 0; gap: 6px; }
.prod-usage-section .usage-toggle .chevron { transition: transform 0.2s; font-style: normal; }
.prod-usage-section .usage-toggle.open .chevron { transform: rotate(180deg); }
.prod-usage-content { display: none; margin-top: 10px; }
.prod-usage-content.visible { display: block; }
.usage-block { margin-bottom: 12px; }
.usage-block-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--purple-dark); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.usage-block-title::before { content: ''; display: inline-block; width: 12px; height: 2px; background: var(--purple); border-radius: 1px; }
.usage-steps { list-style: none; }
.usage-steps li { font-size: 12px; color: var(--text); line-height: 1.6; padding: 5px 0 5px 22px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.04); }
.usage-steps li:last-child { border-bottom: none; }
.usage-steps li::before { content: attr(data-step); position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--purple); color: white; font-size: 9px; font-weight: 800; display: flex; align-items: center; justify-content: center; line-height: 1; }
.who-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.who-pill { font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: 10px; background: linear-gradient(135deg, var(--purple-pale), #EDE0F5); border: 1px solid var(--purple-light); color: var(--purple-dark); }
.usage-note { font-size: 11px; color: var(--muted); font-style: italic; background: var(--gold-pale); border-left: 3px solid var(--gold); padding: 8px 12px; border-radius: 0 6px 6px 0; margin-top: 8px; line-height: 1.6; }

/* VISION STRIP */
.vision-strip { background: linear-gradient(135deg,var(--purple-deep),var(--purple),var(--magenta)); padding: 60px 5%; text-align: center; position: relative; overflow: hidden; }
.vision-strip::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.vision-strip p { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(18px,2.5vw,28px); color: white; line-height: 1.6; max-width: 800px; margin: 0 auto 16px; position:relative; z-index:1; }
.vision-strip .attr { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); position:relative; z-index:1; }

/* CONNECT */
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.connect-card { border-radius: 16px; padding: 40px; border: 1px solid var(--border); }
.hcp { background: linear-gradient(135deg, var(--purple-pale), white); border-top: 4px solid var(--purple); }
.patient { background: linear-gradient(135deg, var(--gold-pale), white); border-top: 4px solid var(--gold); }
.cc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.hcp .cc-icon { background: linear-gradient(135deg,var(--purple),var(--magenta)); }
.patient .cc-icon { background: linear-gradient(135deg,var(--gold),var(--gold-light)); }
.connect-card h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.connect-card .cc-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.connect-card ul { list-style: none; }
.connect-card ul li { font-size: 13px; color: var(--text); padding: 9px 0 9px 22px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.06); }
.connect-card ul li:last-child { border-bottom: none; }
.hcp ul li::before { content: '✦'; position: absolute; left: 0; color: var(--purple); font-size: 10px; top: 11px; }
.patient ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 11px; }

/* CONTACT */
.contact-section { background: linear-gradient(135deg,var(--purple-deep) 0%,var(--purple-dark) 100%); }
.contact-grid { display: grid; /*grid-template-columns: 1fr 1fr;*/ gap: 64px; align-items: start; }
.contact-info .sec-label { color: var(--gold-light); }
.contact-info .sec-label::before { background: var(--gold-light); }
.contact-info h2 { color: white; }
.contact-info p.ci-desc { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.8; margin-top: 16px; margin-bottom: 36px; }
.info-items { display: flex; flex-direction: column; gap: 20px; }
.info-item .iil { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 6px; }
.info-item .iiv { color: white; font-size: 15px; font-weight: 600; }
.info-item .iivsub { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; margin-top: 4px; }
.contact-form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 36px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: white; padding: 12px 16px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 13px; outline: none; transition: border-color .2s; resize: none; }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold-light); }
.form-row select option { background: var(--purple-dark); color: white; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: linear-gradient(135deg,var(--gold),var(--gold-light)); color: var(--purple-deep); border: none; padding: 16px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all .2s; margin-top: 8px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.4); }

/* PRODUCT IMAGES */
.prod-img-wrap { background: #f8f8f8; display: flex; align-items: center; justify-content: center; padding: 20px 16px; min-height: 200px; position: relative; overflow: hidden; }
.prod-img-wrap::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0) 40%, rgba(248,248,248,0.6) 100%); pointer-events: none; }
.prod-img-wrap img { max-height: 180px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15)); transition: transform .3s ease; position: relative; z-index: 1; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05) translateY(-4px); }
.prod-img-wrap.dark-bg { background: linear-gradient(135deg, #c1b3b3, #2d2d2d); }
.prod-img-wrap.blue-bg { background: linear-gradient(135deg, #e8f0fe, #dbeafe); }
.prod-img-wrap.green-bg { background: linear-gradient(135deg, #e8f5e9, #dcfce7); }
.prod-img-wrap.teal-bg  { background: linear-gradient(135deg, #e0f7fa, #ccfbf1); }
.prod-img-wrap.pink-bg  { background: linear-gradient(135deg, #fce4ec, #fdf2f8); }
.prod-img-wrap.red-bg   { background: linear-gradient(135deg, #fce4e4, #fff1f2); }
.prod-img-wrap.yellow-bg { background: linear-gradient(135deg, #fef9c3, #fef3c7); }
.prod-img-wrap.purple-bg { background: linear-gradient(135deg, #f3e8ff, #ede9fe); }

/* FOOTER */
footer { background: #0D0614; padding: 36px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo .fb { font-size: 18px; font-weight: 800; color: white; }
.footer-logo .fb span { color: var(--gold-light); }
.footer-logo .fs { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
.footer-logo .fw { font-size: 11px; color: var(--gold-light); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 11px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.fu { opacity:0; animation: fadeUp .6s ease forwards; }
.d1{animation-delay:.1s} .d2{animation-delay:.22s} .d3{animation-delay:.35s} .d4{animation-delay:.5s}

/* RESPONSIVE */
@media (max-width:960px) {
  .hero-inner, .about-grid, .connect-grid, .contact-grid { grid-template-columns:1fr; gap:40px; }
  .hero-panel { display:none; }
  .commit-grid { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
}
@media (max-width:600px) {
  .commit-grid { grid-template-columns:1fr; }
  .tabs-bar { flex-wrap:wrap; }
  .tab-btn { padding:12px 16px; font-size:10px; }
  footer { flex-direction:column; text-align:center; }
  .soak-steps { grid-template-columns:1fr; }
  .sachets-stats, .form-2col, .smart-grid { grid-template-columns:1fr; }
}



  /* Tech card image thumbnail */
  .tech-img-wrap {
    width: 100%; height: 120px;
    border-radius: 10px; overflow: hidden;
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .tech-img-wrap img {
    /* width: 100%;  */
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
  }
  .tech-img-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.52);
    color: white;
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
    text-align: center;
  }