/* ================================================================
   SRNE SOLAR — HERO V10
   Pixel-faithful rebuild dari mockup:
   · Curved organic separator (SVG clipPath)
   · Gradient "SURYA" heading
   · Stats card dengan icon circles
   · Cert badges overlay di image
   · Navbar putih selalu tampil
   ================================================================ */

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

:root {
  --r1: #C0392B;
  --r2: #E8650A;
  --grad: linear-gradient(90deg, #C0392B 0%, #E8650A 100%);
  --dark: #111;
  --muted: #777;
  --font: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #fff; color: var(--dark); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ================================================================
   NAVBAR
   ================================================================ */
.v10-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
.v10-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

/* Logo */
.v10-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v10-logo img {
  height: 36px;
  width: auto;
}
.v10-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}

/* Nav links */
.v10-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.v10-nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: #333;
  padding: .45rem .9rem;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background .18s, color .18s;
}
.v10-nav-links a:hover { color: var(--r1); background: rgba(192,57,43,.06); }
.v10-chevron { font-size: .6rem; color: #aaa; }

/* CTA */
.v10-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff !important;
  font-size: .875rem;
  font-weight: 700;
  padding: .65rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(192,57,43,.28);
  transition: opacity .2s, transform .2s;
}
.v10-nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ================================================================
   HERO WRAPPER
   ================================================================ */
.v10-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

/* ── Full-bleed background image ── */
.v10-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v10-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}
.v10-bg img.loaded { transform: scale(1.04); }

/* Warm orange glow — energy streak effect */
.v10-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 25% at 72% 80%, rgba(255,100,0,.35) 0%, transparent 100%),
    linear-gradient(to left, rgba(0,0,0,.15) 0%, transparent 55%);
  pointer-events: none;
}

/* ── White left panel ── */
.v10-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 59%;
  background: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3.5rem 3rem; /* top accounts for navbar */
  /* Organic curve on right edge */
  clip-path: url(#v10-curve);
}

/* Subtle horizontal rule texture */
.v10-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent calc(100% - 1px), rgba(0,0,0,.04) 1px);
  background-size: 100% 80px;
  pointer-events: none;
}

/* ── Label row ── */
.v10-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.v10-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--r1);
  flex-shrink: 0;
  animation: beat 2s ease infinite;
}
@keyframes beat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.45); }
}
.v10-label-main {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}
.v10-label-sep {
  font-size: .72rem;
  color: #ccc;
  font-weight: 300;
}
.v10-label-country {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--r1);
}

/* ── Main heading ── */
.v10-h1 {
  position: relative;
  z-index: 1;
  line-height: .9;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.v10-h1-line1 {
  display: block;
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 900;
  color: var(--dark);
}
.v10-h1-line2 {
  display: block;
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 900;
  background: linear-gradient(90deg, #C0392B 0%, #E8650A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
.v10-sub {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 2rem;
}
.v10-sub strong {
  font-weight: 700;
  color: var(--r2);
  -webkit-text-fill-color: var(--r2);
}

/* ── CTA buttons ── */
.v10-btns {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.v10-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .95rem 2rem;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(192,57,43,.3);
  transition: transform .25s, box-shadow .25s;
}
.v10-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(192,57,43,.4); color: #fff; }

.v10-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #333;
  font-size: .88rem;
  font-weight: 600;
  padding: .95rem 1.75rem;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  transition: border-color .2s, color .2s;
}
.v10-btn-secondary:hover { border-color: var(--r1); color: var(--r1); }
.v10-btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Stats card ── */
.v10-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  background: #F4F4F4;
  border-radius: 20px;
  padding: 1.1rem 1.5rem;
}

.v10-stat {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 1;
}

.v10-stat-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(232,101,10,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.v10-stat-body { display: flex; flex-direction: column; gap: 2px; }

.v10-stat-num {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--dark);
  line-height: 1;
}
.v10-stat-num small {
  font-size: .7em;
  font-weight: 700;
  letter-spacing: 0;
}
.v10-stat-lbl {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #999;
}

.v10-stat-rule {
  width: 1px;
  height: 36px;
  background: #ddd;
  flex-shrink: 0;
  margin: 0 .5rem;
}

/* ================================================================
   CERT BADGES — bottom of image
   ================================================================ */
.v10-certs {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 5;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.v10-cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,20,20,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .55rem 1.1rem;
  color: #fff;
  white-space: nowrap;
}
.v10-cert-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.v10-cert-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .v10-left { width: 62%; padding: 6rem 2.5rem 3rem; }
  .v10-h1-line1, .v10-h1-line2 { font-size: clamp(3rem, 6.5vw, 6.5rem); }
}

@media (max-width: 900px) {
  .v10-nav-links { display: none; }
  .v10-nav { padding: 0 1.5rem; }
  .v10-hero { height: auto; min-height: 100svh; }
  .v10-left {
    position: relative;
    width: 100%;
    clip-path: none;
    padding: 6rem 1.75rem 2rem;
    min-height: 65vh;
  }
  .v10-bg {
    top: 55vh;
    height: 45vh;
  }
  .v10-certs {
    position: relative;
    bottom: auto; right: auto;
    justify-content: flex-start;
    padding: 1rem 1.75rem;
    background: #fff;
  }
}

@media (max-width: 600px) {
  .v10-h1-line1, .v10-h1-line2 { font-size: 3rem; }
  .v10-btns { flex-direction: column; align-items: flex-start; }
  .v10-stats { flex-wrap: wrap; gap: 1rem; }
  .v10-stat-rule { display: none; }
}

/* ================================================================
   FULLSCREEN STATS SECTION
   ================================================================ */
.fs-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F7F5F2;
  font-family: var(--font);
  overflow: hidden;
}

/* Marquee Strip */
.fs-marquee-wrap {
  background: linear-gradient(90deg, var(--r1), var(--r2));
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
.fs-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.85rem 0;
  animation: fs-scroll 20s linear infinite;
}
@keyframes fs-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fs-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fs-item strong {
  color: #fff;
  font-weight: 800;
}
.fs-sep {
  color: rgba(255,255,255,0.5);
  font-size: 0.55rem;
}

/* Body: split layout */
.fs-body {
  flex: 1;
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

/* Left Side */
.fs-left {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 7rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.fs-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--r1), var(--r2));
}
.fs-overline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--r1);
  margin-bottom: 2rem;
}
.fs-headline {
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #111;
  margin-bottom: 2rem;
}
.fs-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #666;
  max-width: 340px;
  margin-bottom: 3rem;
}
.fs-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--r1);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  width: fit-content;
}
.fs-cta span { font-size: 1.2rem; }
.fs-cta:hover {
  background: var(--r1);
  transform: translateX(4px);
}

/* Right Side: 2×2 stat grid */
.fs-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.fs-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}
.fs-stat-card:nth-child(2n) { border-right: none; }
.fs-stat-card:nth-child(3),
.fs-stat-card:nth-child(4) { border-bottom: none; }
.fs-stat-card:hover { background: #fff; }

.fs-card-accent { background: #fff; }

.fs-big {
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 900;
  color: #111;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.fs-big em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--r1);
}
.fs-lbl {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.fs-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .fs-body { flex-direction: column; }
  .fs-left { flex: none; padding: 4rem 2.5rem 3rem; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .fs-left::after { display: none; }
  .fs-right { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fs-stat-card { padding: 2.5rem 1.5rem; }
  .fs-left { padding: 3rem 1.5rem 2rem; }
  .fs-headline { font-size: 3rem; }
}

/* ================================================================
   PRODUCTS 2026 (STICKY SCROLL WITH IMAGES)
   ================================================================ */
.v13-products {
  background: #FAFAFA;
  color: #111;
  padding: 8rem 2.5rem;
  font-family: var(--font);
}
.v13-container {
  max-width: 1300px;
  margin: 0 auto;
}

.v13-split {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

/* Left Sticky Side */
.v13-sticky-side {
  flex: 1;
  position: sticky;
  top: 140px;
  max-width: 380px;
}
.v13-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--r1);
  margin-bottom: 1.5rem;
  background: rgba(192,57,43,0.08);
  padding: 8px 16px;
  border-radius: 100px;
}
.v13-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: #111;
}
.v13-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #666;
}

/* Right Scroll Side - Single column with connectors */
.v13-scroll-side {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Flowing Connector */
.v13-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: relative;
  z-index: 1;
}
.v13-connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #E8650A, transparent);
  position: relative;
  overflow: hidden;
}
.v13-connector-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #fff, #E8650A);
  animation: flow-down 1.6s ease-in-out infinite;
}
@keyframes flow-down {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 200%; opacity: 0; }
}
.v13-connector-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #E8650A;
  animation: pulse-arrow 1.6s ease-in-out infinite;
}
@keyframes pulse-arrow {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(3px); }
}

/* Card Styling */
.v13-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: row; /* Horizontal: image left, content right */
  align-items: stretch;
}
.v13-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.v13-img-wrap {
  width: 220px;
  min-width: 220px;
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v13-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  mix-blend-mode: multiply;
}
.v13-card:hover .v13-img-wrap img {
  transform: scale(1.05);
}
.v13-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--r1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v13-content {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.v13-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
.v13-card-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0;
  line-height: 1.3;
}
.v13-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #eee;
  letter-spacing: -0.05em;
  line-height: 1;
  transition: color 0.4s;
}
.v13-card:hover .v13-num {
  color: rgba(232,101,10,0.2);
}

.v13-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
  flex: 1;
}

.v13-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.v13-link span {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.v13-card:hover .v13-link { color: var(--r2); }
.v13-card:hover .v13-link span { transform: translateX(5px); }

/* Responsive */
@media (max-width: 1024px) {
  .v13-split { flex-direction: column; gap: 4rem; }
  .v13-sticky-side { position: relative; top: 0; max-width: 100%; }
}
@media (max-width: 768px) {
  .v13-card { flex-direction: column; }
  .v13-img-wrap { width: 100%; min-width: unset; aspect-ratio: 4/3; }
  .v13-products { padding: 5rem 1.5rem; }
  .v13-content { padding: 1.5rem; }
  .v13-card-header h3 { font-size: 1.25rem; }
}

/* ── SEGMENTS V2 (EDITORIAL) ─────────────────────────────────── */
.seg2-section {
  padding: 8rem 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.seg2-header {
  padding: 0 7%;
}

.seg2-overline {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--r1);
  margin-bottom: 1.5rem;
}

.seg2-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #111;
  letter-spacing: -0.03em;
}

.seg2-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  height: 600px;
  gap: 0;
}

.seg2-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  text-decoration: none;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.seg2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.8) 100%);
  transition: opacity 0.4s;
}

.seg2-card:hover .seg2-overlay {
  background: linear-gradient(to bottom, transparent 10%, rgba(0,0,0,0.9) 100%);
}

.seg2-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.4s;
}

.seg2-card:hover .seg2-body {
  transform: translateY(-10px);
}

.seg2-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--r1);
  display: block;
}

.seg2-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.seg2-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.seg2-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.seg2-card:hover .seg2-link {
  gap: 12px;
  color: var(--r1);
}

@media (max-width: 1024px) {
  .seg2-grid { grid-template-columns: 1fr; height: auto; }
  .seg2-card { height: 400px; }
  .seg2-header { padding: 0 5%; }
}

/* ── FEATURED PRODUCTS (V14) ─────────────────────────────────── */
.v14-products-section {
  padding: 100px 0;
  background: #fff;
}
.v14-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.v14-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.v14-overline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--r1);
  margin-bottom: 10px;
}
.v14-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111;
  margin: 0;
}
.v14-all-link {
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.v14-all-link:hover { color: var(--r1); }

.v14-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.v14-p-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.v14-p-card:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #eee;
  transform: translateY(-10px);
}
.v14-p-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.v14-p-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s;
}
.v14-p-card:hover .v14-p-img img { transform: scale(1.1); }

.v14-p-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.v14-p-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}
.v14-p-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--r1);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .v14-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v14-grid { grid-template-columns: 1fr; }
  .v14-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
.v14-p-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--r2);
  margin-bottom: 8px;
}
