/* Static landing — scoped #page-home */
#page-home {
  font-family: Outfit, system-ui, sans-serif;
  color: #111;
  background: #fff;
  max-width: 100%;
  overflow-x: hidden;
}
#page-home, #page-home *, #page-home *::before, #page-home *::after { box-sizing: border-box; }
/* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #d6f0db 0%, #eaf7ec 40%, #f5fdf6 70%, #fff 100%);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    align-items: stretch;
    min-height: calc(100vh - var(--site-header-height, 64px));
    max-height: 860px;
    height: calc(100vh - var(--site-header-height, 64px));
    overflow: hidden;
    position: relative;
  }
  .hero-content {
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(34,130,58,0.12); color: #22823a;
    font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 20px; margin-bottom: 20px;
    width: fit-content;
    flex-shrink: 0;
  }
  .hero-title {
    font-size: clamp(32px, 4.2vw, 58px); font-weight: 900; line-height: 1.05;
    color: #111; letter-spacing: -2px; margin-bottom: 16px;
    text-wrap: balance;
    flex-shrink: 0;
  }
  .hero-title .accent { color: #22823a; }
  .hero-sub {
    font-size: clamp(15px, 1.6vw, 17px); line-height: 1.65; color: #555;
    max-width: 440px; margin-bottom: 28px; font-weight: 400;
    flex-shrink: 0;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
  .btn-primary {
    background: #22823a; color: #fff;
    font-size: 15px; font-weight: 700; letter-spacing: 0.3px;
    padding: 14px 28px; border-radius: 8px; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #1a6a2d; transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: #22823a;
    font-size: 15px; font-weight: 600;
    padding: 13px 28px; border-radius: 8px; text-decoration: none;
    border: 2px solid #22823a;
    transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline:hover { background: #f0f7f2; }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: stretch;
    min-width: 0;
    min-height: 0;
  }
  /* ── HERO SLIDER ── */
  .hero-slider {
    width: 100%;
    height: 100%;
    min-height: 0;
    flex: 1 1 auto;
    border-radius: 0;
    overflow: hidden;
    position: relative;
  }
  .hero-slides {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }
  .hero-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: repeating-linear-gradient(
      135deg, transparent 0px, transparent 12px,
      rgba(255,255,255,0.15) 12px, rgba(255,255,255,0.15) 14px
    );
  }
  .hero-slide-tag {
    position: absolute;
    bottom: 104px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-family: ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 20px;
  }
  .slide-label {
    position: absolute; bottom: 72px; left: 0; right: 0;
    text-align: center;
    font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    padding: 0 20px;
  }
  .slider-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 2;
  }
  .slider-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none; padding: 0;
  }
  .slider-dot.active { background: #fff; transform: scale(1.35); }
  .slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; z-index: 2;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
  }
  .slider-btn:hover { background: rgba(255,255,255,0.4); }
  .slider-btn.prev { left: 18px; }
  .slider-btn.next { right: 18px; }
  #page-home section.hero { padding: 0; }
  .img-placeholder {
    width: 100%; height: 100%;
    background-image: repeating-linear-gradient(
      135deg,
      transparent 0px, transparent 12px,
      rgba(255,255,255,0.15) 12px, rgba(255,255,255,0.15) 14px
    );
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px;
  }
  .badge-trust {
    position: absolute; bottom: 28px; left: 28px;
    background: #fff; border-radius: 14px; padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    display: flex; align-items: center; gap: 14px;
  }
  .badge-trust .num { font-size: 26px; font-weight: 900; color: #22823a; }
  .badge-trust .lbl { font-size: 12px; color: #666; line-height: 1.3; }

  /* ── SECTIONS shared ── */
#page-home section { padding: 80px 48px; }
  .section-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: #22823a; margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -1.5px;
    line-height: 1.1; color: #111; margin-bottom: 16px; text-wrap: balance;
  }
  .section-sub {
    font-size: 16px; color: #555; line-height: 1.7; max-width: 560px;
  }
  .section-header { margin-bottom: 56px; }
  .section-header.center { text-align: center; }
  .section-header.center .section-sub { margin: 0 auto; }

  /* ── STATS ── */
  .stats-section { background: #f6fdf7; }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: #e4ede6; border-radius: 20px; overflow: hidden;
    margin-top: 48px;
  }
  .stat-card {
    background: #fff; padding: 36px 28px 32px;
    display: flex; flex-direction: column;
  }
  .stat-chart-wrap { margin-bottom: 20px; }
  .stat-num {
    font-size: 44px; font-weight: 900; color: #22823a; letter-spacing: -2px; line-height: 1;
  }
  .stat-unit { font-size: 20px; color: #bbb; font-weight: 400; }
  .stat-lbl { font-size: 13px; color: #666; font-weight: 500; margin-top: 6px; }
  .stat-sublbl { font-size: 11px; color: #aaa; margin-top: 3px; }
  /* Ring */
  .ring-track { fill: none; stroke: #e8f0ea; stroke-width: 7; }
  .ring-fill  { fill: none; stroke: #22823a; stroke-width: 7; stroke-linecap: round;
    transform-origin: 44px 44px; transform: rotate(-90deg);
    transition: stroke-dashoffset 1.5s cubic-bezier(.4,0,.2,1); }
  /* Bars */
  .bar-bg   { fill: #edf5ee; }
  .bar-fill { fill: #22823a; transform-origin: bottom;
    transition: transform 1.3s cubic-bezier(.4,0,.2,1); transform: scaleY(0); }
  .bar-fill.animated { transform: scaleY(1); }
  /* Sparkline */
  .spark-path { fill: none; stroke: #22823a; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 400; stroke-dashoffset: 400;
    transition: stroke-dashoffset 1.8s cubic-bezier(.4,0,.2,1); }
  .spark-area { fill: url(#sparkGrad); opacity: 0; transition: opacity 0.5s 1.5s; }
  .spark-path.animated { stroke-dashoffset: 0; }
  .spark-area.animated { opacity: 1; }
  /* Speed arcs */
  .arc-track { fill: none; stroke: #e8f0ea; stroke-width: 7; stroke-linecap: round; }
  .arc-fill  { fill: none; stroke: #22823a; stroke-width: 7; stroke-linecap: round;
    stroke-dasharray: 160; stroke-dashoffset: 160;
    transition: stroke-dashoffset 1.4s 0.2s cubic-bezier(.4,0,.2,1); }
  .arc-fill.animated { stroke-dashoffset: 30; }
  .arc-needle { transform-origin: 44px 56px; transform: rotate(-80deg);
    transition: transform 1.4s 0.2s cubic-bezier(.4,0,.2,1); }
  .arc-needle.animated { transform: rotate(40deg); }

  /* ── TARGET AUDIENCE ── */
  .audience-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .audience-card {
    border: 1.5px solid #e4ede6; border-radius: 14px; padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
  }
  .audience-card:hover {
    border-color: #22823a; box-shadow: 0 8px 32px rgba(34,130,58,0.1);
    transform: translateY(-3px);
  }
  .audience-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #111; }
  .audience-card p { font-size: 13px; color: #666; line-height: 1.6; }
  .audience-tag {
    display: inline-block; margin-top: 14px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: #22823a; background: #f0f7f2; padding: 4px 10px; border-radius: 20px;
  }
  .audience-num {
    font-size: 11px; font-weight: 800; letter-spacing: 2px; color: #ccc;
    margin-bottom: 14px; font-family: monospace;
  }

  /* ── PRODUCTS ── */
  .products-section { background: #fff; }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .product-card {
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid #eaeaea;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  a.product-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px);
  }
  .product-img {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-family: monospace; font-size: 12px; color: #fff; opacity: 0.8;
    position: relative;
  }
  .product-img--photo {
    background-repeat: no-repeat;
    box-shadow: inset 0 -72px 56px -28px rgba(0, 0, 0, 0.35);
  }
  .product-img .product-category-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,0.45); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px);
  }
  .product-body { padding: 20px 20px 24px; }
  .product-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; color: #111; }
  .product-body .use-case { font-size: 12px; color: #888; margin-bottom: 14px; font-weight: 500; }
  .product-specs { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  .product-spec {
    display: flex; justify-content: space-between;
    font-size: 12px; padding-bottom: 6px; border-bottom: 1px solid #f0f0f0;
    color: #666;
  }
  .product-spec strong { color: #111; font-weight: 600; }
  .product-wholesale {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; color: #22823a;
    background: #f0f7f2; padding: 6px 10px; border-radius: 6px; margin-bottom: 16px;
  }
  .product-cta {
    display: block;
    width: 100%; padding: 11px; background: #22823a; color: #fff;
    font-size: 13px; font-weight: 700; border: none; border-radius: 8px;
    cursor: pointer; transition: background 0.2s; letter-spacing: 0.3px;
    text-align: center;
    box-sizing: border-box;
  }
  a.product-card--link:hover .product-cta {
    background: #1a6a2d;
  }
  .product-cta:hover { background: #1a6a2d; }
  .products-footer { text-align: center; margin-top: 40px; }

  /* ── USE CASES ── */
  .use-cases-section { background: #111; color: #fff; }
  .use-cases-section .section-title { color: #fff; }
  .use-cases-section .section-sub { color: #aaa; }
  .use-cases-section .section-tag { color: #6fd485; }
  .use-cases-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
  }
  .use-case-card {
    border-radius: 14px; overflow: hidden; position: relative;
    aspect-ratio: 3/4; cursor: default;
    transition: transform 0.25s;
  }
  .use-case-card--lead { grid-row: span 2; aspect-ratio: auto; }
  .use-case-card:hover { transform: scale(1.02); }
  .use-case-img {
    width: 100%; height: 100%; min-height: 180px;
    display: flex; align-items: flex-end;
    background-image: repeating-linear-gradient(
      135deg, transparent 0px, transparent 10px,
      rgba(255,255,255,0.04) 10px, rgba(255,255,255,0.04) 12px
    );
  }
  .use-case-img--has-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .use-case-label {
    width: 100%; padding: 20px 18px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  }
  .use-case-label h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
  .use-case-label p { font-size: 12px; color: rgba(255,255,255,0.65); }
  .use-case-img--lead {
    height: 100%;
    min-height: 400px;
  }

  .audience-band {
    background: #fff;
  }

  /* ── WHY US ── */
  .why-section { background: #0e0e0e; padding: 80px 0 0; overflow: hidden; }
  .why-intro {
    padding: 0 48px 56px;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 48px;
  }
  .why-section .section-tag { color: #6fd485; }
  .why-section .section-title { color: #fff; max-width: 480px; }
  .why-intro-right { max-width: 360px; }
  .why-intro-right p { font-size: 15px; color: #888; line-height: 1.7; margin-bottom: 20px; }
  .why-intro-right a { font-size: 13px; font-weight: 700; color: #6fd485; text-decoration: none; }

  /* accordion rows */
  .why-rows { border-top: 1px solid rgba(255,255,255,0.08); }
  .why-row {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer; overflow: hidden;
    transition: background 0.2s;
  }
  .why-row:hover { background: rgba(255,255,255,0.02); }
  .why-row.active { background: rgba(34,130,58,0.07); }
  .why-row-head {
    display: grid; grid-template-columns: 80px 1fr auto;
    align-items: center; gap: 24px;
    padding: 28px 48px;
  }
  .why-row-num {
    font-size: 13px; font-weight: 800; letter-spacing: 2px;
    color: rgba(255,255,255,0.2); font-family: monospace;
    transition: color 0.2s;
  }
  .why-row.active .why-row-num { color: #6fd485; }
  .why-row-title {
    font-size: clamp(20px, 2.5vw, 32px); font-weight: 800;
    color: rgba(255,255,255,0.45); letter-spacing: -0.5px;
    transition: color 0.25s;
  }
  .why-row.active .why-row-title { color: #fff; }
  .why-row:hover .why-row-title { color: rgba(255,255,255,0.75); }
  .why-row-tag {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: transparent; padding: 5px 12px; border-radius: 20px;
    border: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .why-row.active .why-row-tag {
    color: #6fd485; border-color: rgba(111,212,133,0.3);
  }
  .why-row-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.45s cubic-bezier(.4,0,.2,1);
  }
  .why-row.active .why-row-body { max-height: min(70vh, 560px); }
  .why-row-inner {
    display: grid; grid-template-columns: 80px 1fr 320px;
    gap: 24px; padding: 0 48px 36px;
    align-items: start;
  }
  .why-row-desc { font-size: 14px; color: #888; line-height: 1.75; padding-top: 2px; grid-column: 2; }
  .why-row-metric {
    background: rgba(255,255,255,0.04); border-radius: 12px; padding: 20px 24px;
    border: 1px solid rgba(255,255,255,0.07);
    display: flex; flex-direction: column; gap: 6px; grid-column: 3;
  }
  .why-metric-val {
    font-size: 36px; font-weight: 900; color: #6fd485; letter-spacing: -2px; line-height: 1;
  }
  .why-metric-lbl { font-size: 12px; color: #666; }
  .why-bar-wrap { margin-top: 10px; background: rgba(255,255,255,0.07); border-radius: 4px; height: 4px; }
  .why-bar-fill { height: 4px; background: #22823a; border-radius: 4px; transition: width 0.8s 0.1s cubic-bezier(.4,0,.2,1); width: 0; }
  .why-row.active .why-bar-fill { width: var(--bar-pct); }

  /* ── WHOLESALE ── */
  /* ── WHOLESALE ── */
  .wholesale-section { background: #22823a; color: #fff; padding: 80px 0; overflow: hidden; }
  .wholesale-header {
    padding: 0 48px 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
  }
  .wholesale-section .section-tag { color: #a8e6b4; }
  .wholesale-section .section-title { color: #fff; margin-bottom: 0; }
  .wholesale-section .section-sub { color: rgba(255,255,255,0.75); margin-bottom: 0; }
  .wholesale-cta-inline { margin-top: 24px; }
  .wholesale-cta-inline p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 14px; }
  .wf-marquee-wrap {
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
  .wf-marquee {
    display: flex; gap: 16px; padding: 4px 0 24px;
    width: max-content;
    animation: wfScroll 32s linear infinite;
  }
  .wf-marquee:hover { animation-play-state: paused; }
  @keyframes wfScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ── LP vitrin logoları (kayar referans şeridi) ── */
  .lp-ref-band {
    background: linear-gradient(180deg, #f4f6f4 0%, #eef1ee 100%);
    border-top: 1px solid #e2e8e4;
    border-bottom: 1px solid #e2e8e4;
    padding: 28px 0 22px;
    overflow: hidden;
  }
  .lp-ref-band-label {
    text-align: center;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 16px 18px;
    font-family: 'Plus Jakarta Sans', Outfit, system-ui, sans-serif;
  }
  .lp-ref-marquee-wrap {
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
  .lp-ref-marquee {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
    width: max-content;
    padding: 6px 0 8px;
    animation: lpRefMarqueeScroll 42s linear infinite;
  }
  .lp-ref-marquee:hover {
    animation-play-state: paused;
  }
  @keyframes lpRefMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  html[dir='rtl'] .lp-ref-marquee {
    animation-direction: reverse;
  }
  .lp-ref-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    opacity: 0.9;
    transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .lp-ref-item:hover {
    opacity: 1;
    box-shadow: 0 8px 24px rgba(34, 130, 58, 0.12);
    transform: translateY(-1px);
  }
  .lp-ref-item img {
    display: block;
    max-height: 44px;
    max-width: min(160px, 28vw);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.25s ease;
  }
  .lp-ref-item:hover img {
    filter: grayscale(0);
  }
  .wf-card {
    background: rgba(255,255,255,0.10); border-radius: 16px; padding: 28px 28px 24px;
    border: 1px solid rgba(255,255,255,0.14);
    min-width: 280px; max-width: 280px; flex-shrink: 0;
    transition: background 0.2s; cursor: default;
  }
  .wf-card:hover { background: rgba(255,255,255,0.18); }
  .wf-card-num { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,0.28); margin-bottom: 12px; }
  .wf-card h4 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
  .wf-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
  .wf-card-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 14px 0; }
  .wf-card-tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #a8e6b4; }

  /* ── PROCESS ── */
  .process-section { background: #fff; }
  .process-steps {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
    position: relative; margin-top: 56px;
  }
  .process-steps::before {
    content: '';
    position: absolute; top: 28px; left: 40px; right: 40px; height: 2px;
    background: linear-gradient(to right, #22823a, #a8e6b4);
    z-index: 0;
  }
  .process-step {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 0 12px; position: relative; z-index: 1;
  }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: #22823a; color: #fff;
    font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; box-shadow: 0 0 0 6px #fff;
    flex-shrink: 0;
  }
  .process-step:first-child .step-num { background: #111; }
  .process-step h4 { font-size: 13px; font-weight: 700; color: #111; margin-bottom: 6px; }
  .process-step p { font-size: 11.5px; color: #777; line-height: 1.5; }

  /* ── GALLERY ── */
  .gallery-section { background: #f9f9f9; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 12px; margin-top: 48px; border-radius: 20px; overflow: hidden;
  }
  .gallery-item {
    background-image: repeating-linear-gradient(
      135deg, transparent 0px, transparent 12px,
      rgba(255,255,255,0.1) 12px, rgba(255,255,255,0.1) 14px
    );
    display: flex; align-items: flex-end; padding: 16px;
    position: relative; cursor: pointer; overflow: hidden;
  }
  .gallery-item:first-child { grid-row: span 2; }
  .gallery-label {
    background: rgba(0,0,0,0.55); color: #fff;
    font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px;
    backdrop-filter: blur(4px);
  }

  /* ── SPECS ── */
  .specs-section { background: #fff; }
  .specs-table-wrap { overflow-x: auto; margin-top: 48px; border-radius: 16px; border: 1.5px solid #e4ede6; }
  .specs-table {
    width: 100%; border-collapse: collapse; font-size: 13px;
  }
  .specs-table th {
    background: #22823a; color: #fff; padding: 14px 20px;
    font-weight: 700; text-align: left; white-space: nowrap;
  }
  .specs-table th:first-child { border-radius: 0; }
  .specs-table td {
    padding: 12px 20px; border-bottom: 1px solid #f0f4f0; color: #444;
  }
  .specs-table tr:last-child td { border-bottom: none; }
  .specs-table tr:nth-child(even) td { background: #f9fdf9; }
  .specs-table td:first-child { font-weight: 700; color: #111; }
  .spec-check { color: #22823a; font-weight: 700; }

  /* ── FAQ ── */
  .faq-section { background: #f6fdf7; }
  .faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 8px; }
  .faq-item {
    border: 1.5px solid #e4ede6; border-radius: 12px; overflow: hidden;
    background: #fff;
  }
  .faq-q {
    width: 100%; padding: 18px 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; font-weight: 600; color: #111; cursor: pointer;
    background: none; border: none; text-align: left; gap: 16px;
    -webkit-tap-highlight-color: transparent;
  }
  .faq-q .icon { flex-shrink: 0; width: 24px; height: 24px; background: #22823a; border-radius: 50%; color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
  .faq-q.open .icon { transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    font-size: 13px; color: #555; line-height: 1.7; padding: 0 24px;
  }
  .faq-a.open {
    max-height: min(75vh, 520px);
    padding-bottom: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* ── QUOTE FORM ── */
  .quote-section { background: #111; color: #fff; font-family: 'Outfit', system-ui, sans-serif; }
  .quote-section--contact {
    border-radius: 24px;
    overflow: hidden;
    padding: 64px clamp(20px, 4vw, 48px);
  }
  .quote-section .section-tag { color: #6fd485; }
  .quote-section .section-title { color: #fff; }
  .quote-section .section-sub { color: rgba(255,255,255,0.65); }
  .quote-shell { max-width: 1120px; margin: 0 auto; width: 100%; }
  .quote-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
  .quote-grid--split { align-items: start; }
  .quote-form-wrap { display: flex; justify-content: center; }
  .quote-form--centered { width: 100%; max-width: 560px; margin-inline: auto; }
  .quote-form-heading {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
  }
  .form-error-dark { font-size: 12px; color: #ff8a8a; margin-top: 4px; }
  .quote-form {
    background: #1c1c1c; border-radius: 20px; padding: 36px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
  .form-group label { font-size: 12px; font-weight: 600; color: #aaa; letter-spacing: 0.5px; }
  .form-group input, .form-group select, .form-group textarea {
    background: #2a2a2a; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 11px 14px;
    font-size: 13px; color: #fff; font-family: 'Outfit', sans-serif;
    outline: none; transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: #666; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #22823a;
  }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-group select option { background: #2a2a2a; }
  .form-submit {
    width: 100%; padding: 14px; background: #22823a; color: #fff;
    font-size: 15px; font-weight: 700; border: none; border-radius: 8px;
    cursor: pointer; margin-top: 8px; transition: background 0.2s;
    letter-spacing: 0.3px;
  }
  .form-submit:hover { background: #1a6a2d; }
  .form-wa {
    width: 100%; padding: 13px; background: transparent; color: #25D366;
    font-size: 14px; font-weight: 600; border: 1.5px solid #25D366; border-radius: 8px;
    cursor: pointer; margin-top: 10px; transition: background 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .form-wa:hover { background: rgba(37,211,102,0.08); }
  .quote-info { padding-top: 16px; }
  .quote-trust { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
  .qt-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; background: #1c1c1c; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .qt-icon { font-size: 22px; flex-shrink: 0; }
  .qt-item h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
  .qt-item p { font-size: 12px; color: #888; line-height: 1.5; }

  /* ── CTA FINAL ── */
  .final-cta {
    background: linear-gradient(135deg, #1d5e28, #22823a 50%, #2fa348);
    padding: 100px 48px; text-align: center; color: #fff;
  }
  .final-cta h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
  .final-cta p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 40px; }
  .final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: #fff; color: #22823a; font-size: 15px; font-weight: 700;
    padding: 14px 28px; border-radius: 8px; text-decoration: none;
    transition: background 0.2s;
  }
  .btn-white:hover { background: #f0f7f2; }
  .btn-outline-white {
    background: transparent; color: #fff; font-size: 15px; font-weight: 600;
    padding: 13px 28px; border-radius: 8px; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4); transition: border-color 0.2s;
  }
  .btn-outline-white:hover { border-color: #fff; }

  /* ── SAMPLE REQUEST ── */
  .sample-section {
    background: #fff; border-top: 1px solid #f0f0f0;
    padding: 64px 48px;
  }
  .sample-inner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .sample-card {
    border: 1.5px solid #e4ede6; border-radius: 14px; padding: 28px 24px;
    display: flex; flex-direction: column; align-items: flex-start;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .sample-card:hover { border-color: #22823a; box-shadow: 0 8px 24px rgba(34,130,58,0.1); }
  .sample-icon { font-size: 32px; margin-bottom: 16px; }
  .sample-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #111; }
  .sample-card p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 20px; flex: 1; }
  .sample-card a {
    font-size: 13px; font-weight: 700; color: #22823a; text-decoration: none;
    display: flex; align-items: center; gap: 6px;
  }
  .sample-card a:hover { text-decoration: underline; }

  /* utility */
  .divider { height: 1px; background: #f0f0f0; }
  .text-green { color: #22823a; }
  .mt-4 { margin-top: 16px; }
  .mt-8 { margin-top: 32px; }
  .flex-center { display: flex; align-items: center; justify-content: center; }

  @media (max-height: 760px) and (min-width: 1025px) {
    .hero-content {
      padding: 24px 36px;
    }
    .hero-eyebrow { margin-bottom: 14px; }
    .hero-title {
      font-size: clamp(28px, 3.5vw, 44px);
      margin-bottom: 12px;
    }
    .hero-sub {
      font-size: 15px;
      margin-bottom: 20px;
    }
  }

  /* ── Tablet ── */
  @media (max-width: 1024px) {
    .hero {
      grid-template-columns: 1fr;
      gap: 0;
      height: auto;
      max-height: none;
      min-height: 0;
      padding: 0;
      overflow: visible;
    }
    #page-home section.hero { padding: 0; }
    .hero-content {
      padding: 40px 32px 36px;
      order: 2;
      overflow: visible;
    }
    .hero-visual {
      order: 1;
      width: 100%;
      min-height: clamp(280px, 42vw, 420px);
    }
    .hero-slider {
      width: 100%;
      height: 100%;
      min-height: clamp(280px, 42vw, 420px);
      border-radius: 0;
    }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .stat-card {
      align-items: center;
      text-align: center;
    }
    .stat-chart-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
    .stat-chart-wrap .stat-chart {
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
    }
    .audience-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .use-cases-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .use-case-card--lead {
      grid-column: 1 / -1;
      grid-row: auto;
    }
    .use-case-img--lead {
      min-height: 280px;
    }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .gallery-item:first-child {
      grid-column: 1 / -1;
      grid-row: auto;
    }
    .gallery-item:first-child .img-placeholder {
      min-height: 220px !important;
    }
    .quote-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .wholesale-header {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .why-intro {
      flex-direction: column;
      align-items: flex-start;
      gap: 28px;
      padding: 0 32px 40px;
    }
    .why-row-head {
      grid-template-columns: 48px 1fr;
      grid-template-rows: auto auto;
      gap: 12px 16px;
      padding: 20px 24px;
    }
    .why-row-num {
      grid-row: 1 / 3;
    }
    .why-row-title {
      grid-column: 2;
    }
    .why-row-tag {
      grid-column: 2;
      justify-self: start;
      margin-top: 4px;
      white-space: normal;
    }
    .why-row-inner {
      grid-template-columns: 1fr;
      padding: 0 24px 28px;
      gap: 16px;
    }
    .why-row-desc,
    .why-row-metric {
      grid-column: 1;
    }
    .sample-inner {
      grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
      grid-template-columns: repeat(3, 1fr);
    }
    .process-steps::before {
      display: none;
    }
  }

  @media (max-width: 900px) {
    #page-home section {
      padding: 48px 20px;
    }
    .section-header {
      margin-bottom: 36px;
    }
    .hero-content {
      padding: 40px 20px 44px;
    }
    .hero-title {
      letter-spacing: -1px;
    }
    .hero-btns {
      flex-direction: column;
      align-items: stretch;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
      justify-content: center;
      width: 100%;
    }
    .stats-grid,
    .audience-grid,
    .products-grid {
      grid-template-columns: 1fr 1fr;
    }
    .use-cases-grid {
      grid-template-columns: 1fr 1fr;
    }
    .final-cta {
      padding: 56px 20px;
    }
    .final-btns {
      flex-direction: column;
      align-items: stretch;
    }
    .final-btns .btn-white,
    .final-btns .btn-outline-white {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
  }

  /* ── Mobile ── */
  @media (max-width: 640px) {
    #page-home section {
      padding: 40px 16px;
    }
    .hero-content {
      padding: 40px 16px 36px;
    }
    .hero-title {
      font-size: clamp(28px, 9vw, 44px);
    }
    .hero-sub {
      font-size: 15px;
    }
    .hero-visual {
      min-height: clamp(240px, 56vw, 300px);
    }
    .hero-slider {
      min-height: clamp(240px, 56vw, 300px);
    }
    .hero-slide-tag {
      bottom: 88px;
      font-size: 10px;
    }
    .slider-btn {
      width: 40px;
      height: 40px;
      font-size: 15px;
    }
    .slider-btn.prev {
      left: 8px;
    }
    .slider-btn.next {
      right: 8px;
    }
    .slide-label {
      bottom: 56px;
      font-size: 10px;
      line-height: 1.35;
      padding: 0 10px;
    }
    .badge-trust {
      bottom: 14px;
      left: 12px;
      right: 12px;
      max-width: calc(100% - 24px);
      padding: 8px 12px;
    }
    .badge-trust .num {
      font-size: 18px;
    }
    .badge-trust .lbl {
      font-size: 10px;
    }
    .stats-grid {
      grid-template-columns: 1fr;
      border-radius: 16px;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }
    .stat-card {
      padding: 28px 20px 26px;
      align-items: center;
      text-align: center;
    }
    .stat-chart-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-bottom: 18px;
    }
    .stat-chart-wrap .stat-chart {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: auto;
      max-width: min(100%, 320px);
      height: auto;
    }
    .stat-num {
      font-size: 36px;
    }
    .audience-grid,
    .products-grid,
    .use-cases-grid {
      grid-template-columns: 1fr;
    }
    .use-case-card--lead {
      grid-column: auto;
    }
    .use-case-card {
      aspect-ratio: auto;
      min-height: 0;
    }
    .use-case-img {
      min-height: 200px;
    }
    .use-case-img--lead {
      min-height: 240px;
    }
    .products-footer .btn-primary {
      width: 100%;
      justify-content: center;
    }
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    .gallery-item:first-child .img-placeholder {
      min-height: 200px !important;
    }
    .gallery-item .img-placeholder {
      min-height: 180px !important;
    }
    .sample-inner {
      grid-template-columns: 1fr;
    }
    .form-row {
      grid-template-columns: 1fr;
    }
    .quote-form {
      padding: 24px 18px;
    }
    .specs-table {
      font-size: 12px;
    }
    .specs-table th,
    .specs-table td {
      padding: 10px 12px;
    }
    .faq-q {
      padding: 14px 16px;
      font-size: 13px;
      align-items: flex-start;
      gap: 12px;
    }
    .faq-q .icon {
      margin-top: 2px;
    }
    .faq-a {
      padding: 0 16px;
    }
    .wf-card {
      min-width: 260px;
      max-width: 260px;
    }
    .wholesale-section {
      padding: 56px 0;
    }
    .process-steps {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .process-step {
      flex-direction: row;
      text-align: left;
      align-items: flex-start;
      gap: 16px;
      padding: 0 4px;
    }
    .process-step .step-num {
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .process-step h4 {
      margin-top: 4px;
    }
    .why-section {
      padding: 56px 0 0;
    }
    .why-intro {
      padding: 0 16px 32px;
    }
    .why-row-head {
      padding: 16px;
      grid-template-columns: 36px 1fr;
      gap: 10px 12px;
    }
    .why-row-num {
      font-size: 11px;
    }
    .why-row-title {
      font-size: clamp(16px, 4.5vw, 22px);
    }
    .why-row.active .why-row-body {
      max-height: min(85vh, 560px);
    }
    .why-row-inner {
      padding: 0 16px 24px;
    }
    .why-metric-val {
      font-size: 28px;
    }
    .final-cta h2 {
      font-size: clamp(24px, 8vw, 36px);
    }
    .final-cta p {
      font-size: 15px;
    }
  }

  @media (max-width: 380px) {
    #page-home section {
      padding: 36px 12px;
    }
    .hero-content {
      padding: 28px 12px 32px;
    }
    .hero-visual {
      min-height: clamp(220px, 62vw, 260px);
    }
    .hero-slider {
      min-height: clamp(220px, 62vw, 260px);
    }
    .hero-slide-tag {
      bottom: 80px;
    }
    .stat-num {
      font-size: 32px;
    }
  }
