  :root {
    --olive-deep: #57644B;
    /* moss green — deep accent, CTA fills */
    --olive: #889A79;
    /* sage green — primary identity color */
    --olive-mid: #A3B494;
    /* eucalyptus — mid tone accents */
    --olive-light: #D3DAC6;
    /* light olive — soft dividers, thin strokes */
    --sage-wash: #EEF1E7;
    /* soft natural green wash for subtle tints */
    --cream: #F8F6F0;
    /* warm off-white — main character */
    --cream-warm: #F1ECDD;
    --gold: #C6A876;
    /* champagne / soft gold — minimal accent only */
    --gold-light: #E2D2AE;
    /* pale champagne — tiny highlight accents */
    --white: #FFFFFF;
    --charcoal: #2A2B24;
    --charcoal-soft: #5B5C50;
    --line: rgba(42, 43, 36, 0.1);
    --shadow: 0 30px 60px -30px rgba(42, 43, 36, 0.22);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3,
  h4,
  .serif {
    font-family: 'Fraunces', serif;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    display: block;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  @media(max-width:768px) {
    .container {
      padding: 0 20px;
    }
  }

  ::selection {
    background: var(--gold-light);
    color: var(--charcoal);
  }

  /* ---------- utility ---------- */
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--olive);
    font-weight: 600;
    margin-bottom: 18px;
  }

  .eyebrow .twig {
    width: 26px;
    height: 8px;
    flex-shrink: 0;
  }

  .eyebrow .twig path {
    stroke: var(--gold);
  }

  .section-head {
    max-width: 640px;
    margin-bottom: 64px;
  }

  .section-head h2 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--charcoal);
    letter-spacing: -0.01em;
  }

  .section-head p {
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--charcoal-soft);
  }

  section {
    position: relative;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 2px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    border: none;
  }

  .btn-gold {
    background: var(--olive-deep);
    color: var(--white);
    box-shadow: 0 0 0 0 rgba(198, 168, 118, 0);
  }

  .btn-gold:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
  }

  .btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--line);
  }

  .btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
  }

  /* ---------- header ---------- */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    background: rgba(245, 240, 228, 0.7);
    backdrop-filter: blur(10px);
  }

  header.scrolled {
    padding: 16px 0;
    background: rgba(245, 240, 228, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .4s;
  }

  .logo-mark img {
    height: 50px;
    width: auto;
    display: block;
  }

  .logo-plate {
    display: flex;
    align-items: center;
  }

  nav.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
  }

  nav.main-nav a {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--charcoal-soft);
    position: relative;
    padding: 6px 0;
    transition: color .4s;
  }

  nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s;
  }

  nav.main-nav a:hover::after {
    width: 100%;
  }

  nav.main-nav a:hover {
    color: var(--charcoal);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .header-actions .icon-btn {
    color: var(--charcoal-soft);
    cursor: pointer;
    transition: color .4s, transform .3s;
  }

  .header-actions .icon-btn:hover {
    transform: translateY(-1px);
    color: var(--gold);
  }

  .lang-switch {
    display: flex;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--charcoal-soft);
  }

  .lang-switch a {
    cursor: pointer;
    padding: 2px 4px;
    text-decoration: none;
    color: inherit;
  }

  .lang-switch a.active {
    color: var(--gold);
  }

  .quote-btn {
    padding: 11px 24px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--olive-deep);
    color: var(--white);
    border-radius: 2px;
    transition: all .35s;
  }

  .quote-btn:hover {
    background: var(--charcoal);
    box-shadow: 0 0 0 1px var(--gold);
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 22px;
    height: auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--charcoal);
    transition: transform .3s ease, opacity .3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-actions {
    display: none;
  }

  @media(max-width:900px) {
    .logo-mark img {
      height: 40px;
    }

    .stat-card {
      padding: 25px !important;
    }

    .stats {
      padding: 40px 0 !important;
    }

    .hero {
      min-height: auto !important;
      padding-bottom: 80px !important;
    }

    .eyebrow {
      font-size: 10.5px;
      margin-bottom: 15px;
    }

    .hero h1 {
      font-size: clamp(33px, 7vw, 96px) !important;
    }

    .hero p.sub {
      margin-top: 10px !important;
      font-size: 14px !important;
    }

    .trust-pills span {
      font-size: 11px !important;
      padding: 6px 12px;
    }

    .trust-pills {
      gap: 6px;
      margin-top: 17px !important;
    }

    .hero-actions .btn {
      gap: 10px;
      padding: 12px 15px;
      font-size: 12px;
    }

    .hero-actions {
      margin-top: 20px !important;
      gap: 10px !important;
      flex-direction: row;
      align-items: center;
    }

    .header-inner {
      flex-wrap: wrap;
    }

    .menu-toggle {
      display: flex;
      order: 3;
    }

    .logo-mark {
      order: 1;
    }

    .header-actions {
      order: 2;
      gap: 14px;
    }

    .header-actions .lang-switch,
    .header-actions .icon-btn,
    .header-actions .quote-btn {
      display: none;
    }

    nav.main-nav {
      order: 4;
      flex-basis: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      margin-top: 0;
      background: var(--cream);
      border-top: 1px solid transparent;
      transition: max-height .4s ease, opacity .3s ease, margin-top .4s ease;
    }

    nav.main-nav.open {
      max-height: 520px;
      opacity: 1;
      margin-top: 20px;
      border-top-color: var(--line);
      box-shadow: 0 20px 40px -24px rgba(42, 43, 36, 0.25);
      background: transparent;
      border-top: none;
    }

    nav.main-nav a {
      padding: 16px 4px;
      border-bottom: 1px solid var(--line);
    }

    nav.main-nav a:first-child {
      padding-top: 0px;
    }

    nav.main-nav a::after {
      display: none;
    }

    .mobile-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      padding: 22px 4px 26px;
    }

    nav.main-nav .mobile-actions .quote-btn {
      display: inline-flex;
      color: var(--white);
      padding: 11px 24px;
      border-bottom: none;
    }
  }

  /* ---------- hero ---------- */
  .hero {
    min-height: 92vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background:
      radial-gradient(ellipse 60% 50% at 12% 8%, rgba(163, 180, 148, 0.22), transparent 60%),
      radial-gradient(ellipse 55% 50% at 92% 92%, rgba(211, 218, 198, 0.35), transparent 60%),
      linear-gradient(180deg, #FBF9F4 0%, var(--cream) 100%);
    overflow: hidden;
  }

  .hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  .hero-branch {
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%);
    width: min(50vw, 720px);
    opacity: 0.85;
    pointer-events: none;
  }

  .hero-branch path {
    fill: none;
    stroke: var(--olive-light);
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: draw 3.4s cubic-bezier(.65, 0, .35, 1) forwards .3s;
  }

  .hero-branch .leaf {
    fill: var(--olive-mid);
    opacity: 0;
    animation: leafIn .8s ease forwards;
  }

  @keyframes draw {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes leafIn {
    to {
      opacity: 0.6;
    }
  }



  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
  }

  .hero .eyebrow {
    color: var(--olive);
  }

  .hero .eyebrow .twig path {
    stroke: var(--gold);
  }

  .hero h1 {
    font-size: clamp(46px, 7vw, 96px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp 1.1s cubic-bezier(.22, 1, .36, 1) forwards .4s;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--olive-deep);
    font-weight: 300;
  }

  .hero p.sub {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.75;
    color: var(--charcoal-soft);
    max-width: 520px;
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp 1.1s cubic-bezier(.22, 1, .36, 1) forwards .65s;
  }

  .trust-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp 1.1s cubic-bezier(.22, 1, .36, 1) forwards .8s;
  }

  .trust-pills span {
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--charcoal-soft);
    background: rgba(107, 115, 82, 0.08);
    border: 1px solid rgba(34, 33, 28, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
  }

  .hero-actions {
    margin-top: 46px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(26px);
    animation: fadeUp 1.1s cubic-bezier(.22, 1, .36, 1) forwards 1.05s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero .btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid rgba(34, 33, 28, 0.28);
  }

  .hero .btn-outline:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
  }

  .scroll-cue {
    position: absolute;
    bottom: 44px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal-soft);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
    opacity: 0.7;
  }

  .scroll-cue .line {
    width: 1px;
    height: 34px;
    background: rgba(34, 33, 28, 0.2);
    position: relative;
    overflow: hidden;
  }

  .scroll-cue .line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 1.8s ease-in-out infinite;
  }

  @keyframes scrollLine {
    50% {
      top: 0;
    }

    100% {
      top: 100%;
    }
  }

  .stats {
    background: #F8F7F3;
    padding: 150px 0;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
  }

  .stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 44px 34px 38px;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 14px 34px -26px rgba(42, 43, 36, 0.18);
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--olive-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
  }

  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -24px rgba(42, 43, 36, 0.28);
  }

  .stat-card:hover::before {
    transform: scaleX(1);
  }

  .stat-card .stat-icon {
    width: 34px;
    height: 34px;
    color: var(--olive);
    margin-bottom: 34px;
    transition: color .35s ease;
  }

  .stat-card:hover .stat-icon {
    color: var(--gold);
  }

  .stat-card .num {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 4.4vw, 58px);
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .stat-card .num span {
    color: var(--olive-deep);
  }

  .stat-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
  }

  .stat-card p {
    font-size: 14.5px;
    color: var(--charcoal-soft);
    opacity: 0.7;
    line-height: 1.6;
    margin-top: 10px;
  }

  .header-actions .phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    background: var(--white);
    color: var(--olive-deep);
    border: 1px solid var(--line);
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s;
  }

  @media(max-width:1000px) {
    .stats-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:560px) {
    .stats-row {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }

  /* ---------- brands (Dermolive Group) ---------- */
  .brands {
    padding: 200px 0 170px;
    background: var(--cream);
    position: relative;
  }

  .brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 20px;
  }

  .brand-card {
    background: var(--white);
    padding: 56px 34px 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(34, 33, 28, 0.07);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), box-shadow .55s, border-color .55s;
    cursor: pointer;
    position: relative;
  }

  .brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 64px -26px rgba(34, 33, 28, 0.24);
    border-color: rgba(198, 168, 118, 0.4);
  }

  .brand-card .logo-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    box-shadow: inset 0 0 0 1px rgba(34, 33, 28, 0.06);
    transition: box-shadow .5s;
    padding: 10px;
  }

  .brand-card:hover .logo-wrap {
    box-shadow: inset 0 0 0 1px rgba(198, 168, 118, 0.3), 0 0 0 6px rgba(198, 168, 118, 0.07);
  }

  .brand-card.thyateira .logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .brand-card.flagship .logo-wrap img {
    width: 82%;
    height: 82%;
  }

  .brand-card .logo-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    border-radius: 200px;
  }

  .brand-card h4 {
    font-size: 19px;
    font-weight: 500;
    font-family: 'Fraunces', serif;
    margin-bottom: 12px;
  }

  .brand-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--charcoal-soft);
    max-width: 230px;
  }

  .brand-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--olive-deep);
    border-bottom: 1px solid var(--olive-deep);
    padding-bottom: 3px;
    transition: all .3s;
  }

  .brand-card-btn svg {
    transition: transform .3s;
  }

  .brand-card .flagship-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    background: rgba(198, 168, 118, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
  }

  .brand-card.flagship {
    background: linear-gradient(180deg, var(--white) 0%, #FBF8F1 100%);
    border-color: rgba(198, 168, 118, 0.35);
    box-shadow: 0 24px 50px -28px rgba(42, 43, 36, 0.28);
  }

  .dededimya {
    display: none;
  }

  .brand-card.flagship .logo-wrap {
    background: linear-gradient(150deg, var(--cream-warm), var(--cream));
    box-shadow: inset 0 0 0 1px rgba(198, 168, 118, 0.25);
  }

  .brand-card.thyateira .logo-wrap img {
    width: 88%;
    height: auto;
    object-fit: contain;
  }

  @media(max-width:900px) {
    .lang-switch a {
      padding: 0px 0px 3px 0px !important;
    }

    .header-actions .phone-btn {
      display: none;
    }

    .brand-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:560px) {
    .brand-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- categories (Koleksiyonlarımız) ---------- */
  .categories {
    padding: 190px 0 190px;
    background: #F7F5F1;
  }

  .categories .section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .cat-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 18px 40px -24px rgba(34, 33, 28, 0.28);
    border: 1px solid rgba(34, 33, 28, 0.06);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), box-shadow .5s;
  }

  .cat-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 60px -22px rgba(34, 33, 28, 0.4);
  }

  .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.25, .8, .3, 1);
  }

  .cat-card:hover img {
    transform: scale(1.05);
  }

  .cat-card .base-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 22, 15, 0.72) 0%, rgba(20, 22, 15, 0.04) 48%);
    transition: background .5s;
  }

  .cat-card .hover-shade {
    position: absolute;
    inset: 0;
    background: rgba(47, 60, 39, 0.45);
    opacity: 0;
    transition: opacity .5s;
  }

  .cat-card:hover .hover-shade {
    opacity: 1;
  }

  .cat-card .cat-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    right: 28px;
  }

  .cat-card .tag {
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 9px;
    display: block;
  }

  .cat-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.15;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    margin-bottom: 2px;
  }

  .cat-card:hover h4 {
    transform: translateY(-8px);
  }

  .cat-card .cat-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .45s ease .05s, transform .45s ease .05s;
  }

  .cat-card:hover .cat-link {
    opacity: 1;
    transform: translateY(0);
  }

  .cat-card.placeholder-art {
    background: linear-gradient(150deg, var(--olive-deep) 0%, var(--olive) 55%, var(--olive-mid) 100%);
  }

  .cat-card.placeholder-art .art-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
  }

  @media(max-width:900px) {
    .cat-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:600px) {
    .cat-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- why us / trust ---------- */
  .why {
    background: var(--white);
    padding: 190px 0 0px 0px;
    border-top: 1px solid var(--line);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 10px;
  }

  .why-item {
    background: var(--white);
    padding: 44px 30px;
    transition: background .4s;
  }

  .why-item:hover {
    background: var(--cream);
  }

  .why-item svg {
    width: 30px;
    height: 30px;
    color: var(--olive);
    margin-bottom: 26px;
  }

  .why-item h4 {
    font-size: 16.5px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Fraunces', serif;
    color: var(--charcoal);
  }

  .why-item p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--charcoal-soft);
  }

  @media(max-width:900px) {
    .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:560px) {
    .why-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ---------- process ---------- */
  .process {
    padding: 190px 0 160px;
  }

  .timeline {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
  }

  .timeline::-webkit-scrollbar {
    height: 5px;
  }

  .timeline::-webkit-scrollbar-thumb {
    background: var(--olive-light);
    border-radius: 10px;
  }

  .tl-step {
    min-width: 210px;
    flex: 1;
    position: relative;
    padding: 0 24px 0 0;
  }

  .tl-step .dot-line {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
  }

  .tl-step .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .tl-step .bar {
    height: 1px;
    flex: 1;
    background: var(--line);
    margin-left: 8px;
  }

  .tl-step:last-child .bar {
    display: none;
  }

  .tl-step .idx {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }

  .tl-step h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .tl-step p {
    font-size: 13px;
    color: var(--charcoal-soft);
    line-height: 1.6;
  }

  /* ---------- private label CTA ---------- */
  .pl-cta {
    background: linear-gradient(120deg, var(--olive-deep) 0%, #6B7A5C 100%);
    color: var(--white);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
  }

  .pl-cta::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 210, 174, 0.16), transparent 70%);
  }

  .pl-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }

  .pl-cta .eyebrow {
    color: var(--gold-light);
  }

  .pl-cta .eyebrow .twig path {
    stroke: var(--gold-light);
  }

  .pl-cta h2 {
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 22px;
  }

  .pl-cta p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 520px;
  }

  .pl-steps {
    display: flex;
    gap: 34px;
    margin-top: 56px;
    flex-wrap: wrap;
  }

  .pl-steps div {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
  }

  .pl-steps div b {
    display: block;
    color: var(--gold-light);
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
  }

  /* ---------- certificates ---------- */
  /* ---------- certificates / trust bar ---------- */
  .certs {
    padding: 130px 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .certs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .cert-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 6px 34px;
    position: relative;
    border-left: 1px solid var(--line);
  }

  .cert-item:first-child {
    border-left: none;
    padding-left: 0;
  }

  .cert-item .icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }

  .cert-item:hover .icon-wrap {
    transform: translateY(-4px);
  }

  .cert-item svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--olive);
    transition: color .28s;
  }

  .cert-item:hover svg {
    color: var(--olive-deep);
  }

  .cert-item .cert-text {
    padding-top: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color .28s;
    padding-bottom: 12px;
  }

  .cert-item h5 {
    font-family: 'Fraunces', serif;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.01em;
    margin-bottom: 5px;
    transition: color .28s;
  }

  .cert-item:hover h5 {
    color: var(--olive-deep);
  }

  .cert-item p {
    font-size: 12px;
    color: var(--charcoal-soft);
    opacity: 0.75;
    line-height: 1.5;
    transition: opacity .28s;
  }

  .cert-item:hover p {
    opacity: 1;
  }

  .cert-item:hover .cert-text {
    border-color: var(--gold);
  }

  @media(max-width:900px) {
    .certs-row {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 44px;
    }

    .cert-item:nth-child(3) {
      border-left: none;
      padding-left: 0;
    }
  }

  @media(max-width:560px) {
    .certs-row {
      grid-template-columns: 1fr;
      row-gap: 36px;
    }

    .cert-item {
      border-left: none;
      padding-left: 0;
    }
  }

  /* ---------- footer ---------- */
  footer {
    background: var(--charcoal-soft);
    color: var(--cream);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(245, 240, 228, 0.12);
  }

  .footer-brand .logo-mark {
    margin-bottom: 22px;
  }

  .footer-brand .logo-plate {
    background: var(--cream);
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 40px;
    box-shadow: none;
  }

  .footer-brand .logo-plate img {
    height: 30px;
  }

  .footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(245, 240, 228, 0.55);
    max-width: 260px;
  }

  footer h5 {
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
    font-weight: 600;
  }

  footer ul li {
    margin-bottom: 13px;
  }

  footer ul li a {
    font-size: 13.5px;
    color: rgba(245, 240, 228, 0.7);
    transition: color .3s;
  }

  footer ul li a:hover {
    color: var(--white);
  }

  .newsletter input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 240, 228, 0.35);
    padding: 10px 0;
    color: var(--white);
    font-size: 13.5px;
    margin-bottom: 18px;
  }

  .newsletter input::placeholder {
    color: rgba(245, 240, 228, 0.45);
  }

  .newsletter button {
    width: 100%;
  }

  .social-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
  }

  .social-row a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245, 240, 228, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
  }

  .social-row a:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 26px 0;
    font-size: 12px;
    color: rgba(245, 240, 228, 0.5);
    flex-wrap: wrap;
    gap: 10px;
  }

  @media(max-width:900px) {
    footer {
      padding: 40px 0 0;
    }

    .footer-top {
      grid-template-columns: repeat(2, 1fr);
      padding-bottom: 30px;
      gap: 20px;
    }
  }

  /* ---------- mobile bottom nav ---------- */
  .mobile-nav {
    display: none;
  }

  @media(max-width:768px) {
    .mobile-nav {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: var(--white);
      border-top: 1px solid var(--line);
      padding: 10px 0 8px;
      justify-content: space-around;
      box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);
    }

    .mobile-nav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      color: var(--charcoal-soft);
    }

    .mobile-nav a svg {
      width: 20px;
      height: 20px;
    }

    .mobile-nav a.active {
      color: var(--gold);
    }

    body {
      padding-bottom: 64px;
    }
  }

  /* reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1.1s cubic-bezier(.22, 1, .36, 1), transform 1.1s cubic-bezier(.22, 1, .36, 1);
  }

  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  .brand-grid.reveal.in .brand-card,
  .why-grid.reveal.in .why-item,
  .cat-grid.reveal.in .cat-card {
    animation: none;
  }

  .brand-card,
  .why-item,
  .cat-card {
    opacity: 0;
    transform: translateY(18px);
  }

  .brand-grid.in .brand-card,
  .why-grid.in .why-item,
  .cat-grid.in .cat-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
  }

  .brand-grid.in .brand-card:nth-child(1) {
    transition-delay: .05s;
  }

  .brand-grid.in .brand-card:nth-child(2) {
    transition-delay: .12s;
  }

  .brand-grid.in .brand-card:nth-child(3) {
    transition-delay: .19s;
  }

  .brand-grid.in .brand-card:nth-child(4) {
    transition-delay: .26s;
  }

  .brand-grid.in .brand-card:nth-child(5) {
    transition-delay: .33s;
  }

  .brand-grid.in .brand-card:nth-child(6) {
    transition-delay: .4s;
  }

  .cat-grid.in .cat-card:nth-child(1) {
    transition-delay: .04s;
  }

  .cat-grid.in .cat-card:nth-child(2) {
    transition-delay: .1s;
  }

  .cat-grid.in .cat-card:nth-child(3) {
    transition-delay: .16s;
  }

  .cat-grid.in .cat-card:nth-child(4) {
    transition-delay: .22s;
  }

  .cat-grid.in .cat-card:nth-child(5) {
    transition-delay: .28s;
  }

  .cat-grid.in .cat-card:nth-child(6) {
    transition-delay: .34s;
  }

  .why-grid.in .why-item:nth-child(1) {
    transition-delay: .03s;
  }

  .why-grid.in .why-item:nth-child(2) {
    transition-delay: .08s;
  }

  .why-grid.in .why-item:nth-child(3) {
    transition-delay: .13s;
  }

  .why-grid.in .why-item:nth-child(4) {
    transition-delay: .18s;
  }

  .why-grid.in .why-item:nth-child(5) {
    transition-delay: .23s;
  }

  .why-grid.in .why-item:nth-child(6) {
    transition-delay: .28s;
  }

  .why-grid.in .why-item:nth-child(7) {
    transition-delay: .33s;
  }

  .why-grid.in .why-item:nth-child(8) {
    transition-delay: .38s;
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .hero-branch path,
    .hero-branch .leaf,
    .hero h1,
    .hero p.sub,
    .hero-actions {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
      stroke-dashoffset: 0 !important;
    }
  }

  .guarantee {
    background: var(--white);
    padding: 20px 0 20px;
  }

  .guarantee-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 44px 50px;
  }

  .guarantee-seal {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .guarantee-seal svg {
    width: 40px;
    height: 40px;
    color: var(--olive-deep);
  }

  .guarantee-seal::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px dashed rgba(198, 168, 118, 0.5);
  }

  .guarantee-text .tag {
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
  }

  .guarantee-text p {
    font-family: 'Fraunces', serif;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--charcoal);
  }

  .guarantee-text p em {
    font-style: italic;
    color: var(--olive-deep);
  }

  @media(max-width:700px) {
    .guarantee-inner {
      flex-direction: column;
      text-align: center;
      padding: 38px 28px;
      gap: 22px;
    }
  }

  /* ---------- manifesto band (dark accent) ---------- */
  .manifesto {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--white);
    background:
      radial-gradient(ellipse 70% 80% at 85% 20%, rgba(163, 180, 148, 0.16), transparent 60%),
      linear-gradient(155deg, var(--charcoal) 0%, var(--olive-deep) 60%, #4a5540 100%);
  }

  .manifesto-branch {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: min(46vw, 640px);
    opacity: 0.5;
    pointer-events: none;
  }

  .manifesto-branch path {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.1;
    stroke-linecap: round;
  }

  .manifesto-branch .leaf {
    fill: var(--olive-mid);
    opacity: 0.55;
  }

  .manifesto-inner {
    max-width: 660px;
    position: relative;
    z-index: 2;
  }

  .manifesto .eyebrow {
    color: var(--gold-light);
  }

  .manifesto .eyebrow .twig path {
    stroke: var(--gold-light);
  }

  .manifesto h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 400;
    line-height: 1.35;
    color: var(--white);
    font-family: 'Fraunces', serif;
  }

  .manifesto h2 em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
  }

  .manifesto-stats {
    display: flex;
    gap: 56px;
    margin-top: 52px;
    flex-wrap: wrap;
  }

  .manifesto-stats div b {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
  }

  .manifesto-stats div span {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
  }

  /* ---------- product vitrine (tabbed showcase) ---------- */
  .vitrine {
    padding: 150px 0 130px;
  }

  .vitrine-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 44px;
    margin-bottom: 56px;
  }

  .vitrine-tab {
    font-size: 13px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 30px;
    border: 1px solid var(--line);
    color: var(--charcoal-soft);
    cursor: pointer;
    transition: all .3s;
    background: var(--white);
    letter-spacing: 0.01em;
  }

  .vitrine-tab.active {
    background: var(--olive-deep);
    color: var(--white);
    border-color: var(--olive-deep);
  }

  .vitrine-tab:hover {
    border-color: var(--gold);
  }

  .vitrine-stage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 480px;
    box-shadow: 0 30px 70px -40px rgba(42, 43, 36, 0.3);
  }

  .vitrine-visual {
    position: relative;
    overflow: hidden;
    background: var(--cream);
  }

  .vitrine-visual img,
  .vitrine-visual .art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
  }

  .vitrine-visual img.active,
  .vitrine-visual .art.active {
    opacity: 1;
  }

  .vitrine-visual .art {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--olive-deep) 0%, var(--olive) 55%, var(--olive-mid) 100%);
  }

  .vitrine-visual .art svg {
    width: 64px;
    height: 64px;
    color: var(--cream);
    opacity: 0.85;
  }

  .vitrine-info {
    background: var(--white);
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .vitrine-info .tag {
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
  }

  .vitrine-info h3 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .vitrine-info p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--charcoal-soft);
    margin-bottom: 30px;
    max-width: 400px;
  }

  .vitrine-cta {
    text-align: center;
    margin-top: 48px;
  }

  .btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 4px;
    width: fit-content;
    transition: all .3s;
  }

  .btn-text-link:hover {
    color: var(--olive-deep);
    border-color: var(--gold);
  }

  .btn-text-link svg {
    transition: transform .3s;
  }

  .btn-text-link:hover svg {
    transform: translateX(4px);
  }

  .vitrine-info>div {
    display: none;
  }

  .vitrine-info>div.active {
    display: block;
    animation: vFade .5s ease;
  }

  @keyframes vFade {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tab-panel .pd-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 10px;
    margin-bottom: 25px;
  }

  .tab-panel .pd-tags .item {
    background: #eef1e8;
    padding: 7px 12px;
    border-radius: 200px;
    font-size: 15px;
    font-weight: 400;
  }

  .tab-panel .alert-block {
    margin-top: 25px;
    margin-bottom: 25px;
    background: #eef1e8;
    border-left: 5px solid #57644b;
    border-radius: 9px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .tab-panel .alert-block .title {
    font-size: 16px;
    font-weight: 600;
    color: #57644b;
  }

  .tab-panel .alert-block .desc {
    font-size: 15px;
    font-weight: 400;
    color: #57644b;
  }

  .vitrine-tabs .overflow-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* bura */
  .footer-contact {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    color: rgba(245, 240, 228, 0.75);
    transition: color .3s;
  }

  .footer-contact a svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--gold-light);
  }

  .showcase .section-head h2 {
    color: #fff;
  }

  .footer-olive-branch {
    position: absolute;
    left: -4%;
    bottom: -8%;
    width: 340px;
    opacity: 0.06;
    pointer-events: none;
  }

  .footer-olive-branch path {
    fill: none;
    stroke: var(--cream);
    stroke-width: 1.2;
  }

  .footer-olive-branch ellipse {
    fill: var(--cream);
  }

  .cart-actions a {
    text-align: center !important;
    justify-content: center;
    align-items: center;
  }

  .quick-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-soft);
  }

  .quick-contact-row a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--olive-deep);
    transition: color .3s;
    font-size: 14px;
  }

  .quick-contact-row .qc-divider {
    color: var(--line);
  }

  .quick-contact-row a svg {
    width: 15px;
    height: 15px;
  }

  @media(max-width:900px) {
    .quick-contact-row {
      margin-bottom: 16px;
      margin-top: -10px;
    }

    .showcase-head-row .section-head {
      margin: 0px !important;
    }

    .vitrine-tabs .overflow-block {
      flex-wrap: nowrap;
      width: max-content;
    }

    .btn-text-link {
      font-size: 11.5px;
    }

    .vitrine-info p {
      font-size: 13px;
      margin-bottom: 15px;
    }

    .vitrine-info h3 {
      font-size: clamp(21px, 3vw, 36px);
    }

    .vitrine-tab {
      font-size: 12px !important;
      padding: 8px 16px;
      width: max-content;
    }

    .vitrine-tabs {
      margin-top: -12px;
      margin-bottom: 20px;
      overflow: auto;
    }

    .vitrine {
      padding: 40px 0 40px;
    }

    .manifesto {
      padding: 60px 0;
    }

    .manifesto-stats div span {
      font-size: 11px !important;
    }

    .manifesto-stats div b {
      font-size: 22px;
      margin-bottom: -3px;
    }

    .manifesto-stats {
      gap: 20px;
      margin-top: 26px;
    }

    .manifesto h2 {
      font-size: clamp(24px, 3.6vw, 42px) !important;
    }

    .section-head {
      margin-bottom: 30px !important;
    }

    .section-head p {
      margin-top: 14px !important;
      font-size: 15.5px !important;
    }

    .section-head h2 {
      font-size: clamp(25px, 4vw, 50px) !important;
    }

    .brands {
      padding: 40px 0 40px;
    }

    .stat-card h4 {
      font-size: 16px !important;
      margin-top: 12px !important;
    }

    .stat-card p {
      font-size: 13.5px !important;
      margin-top: 5px !important;
    }

    .stat-card .num {
      font-family: 'Fraunces', serif;
      font-size: clamp(29px, 4.4vw, 58px) !important;
    }

    .stat-card .stat-icon {
      width: 32px !important;
      height: 32px !important;
      margin-bottom: 20px !important;
    }

    .scroll-cue {
      bottom: 13px;
      left: 20px;
      font-size: 10px;
    }

    .tab-panel .alert-block .desc {
      font-size: 13px;
    }

    .tab-panel .alert-block .title {
      font-size: 14px;
    }

    .tab-panel .alert-block {
      margin-top: 15px;
      margin-bottom: 15px;
      padding: 20px 20px;
      gap: 4px;
    }

    .tab-panel .pd-tags {
      gap: 8px 6px;
      margin-bottom: 15px;
    }

    .tab-panel .pd-tags .item {
      padding: 5px 11px;
      font-size: 13px;
    }

    .vitrine-stage {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .vitrine-visual {
      aspect-ratio: 16/10;
    }

    .vitrine-cta {
      margin-top: 30px;
    }

    .vitrine-info {
      padding: 14px 20px 30px 20px;
    }

    .vitrine-cta .btn {
      padding: 13px 20px;
      font-size: 13px;
    }

    .why {
      padding: 40px 0 0px 0px;
    }

    .process {
      padding: 40px 0 40px;
    }

    .pl-cta {
      padding: 40px 0;
    }

    .pl-cta h2 {
      font-size: clamp(23px, 4.2vw, 54px);
      margin-bottom: 12px;
    }

    .pl-cta p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .pl-inner .btn {
      padding: 11px 21px;
      font-size: 13px;
    }

    .pl-steps {
      margin-top: 25px;
    }

    .certs {
      padding: 40px 0;
    }
  }