:root {
    --dsb-bg: #f6faf7;
    --dsb-white: #ffffff;
    --dsb-text: #14211a;
    --dsb-muted: #5d6c63;
    --dsb-line: #dfe7e2;
  
    --dsb-green: #0f8d49;
    --dsb-green-dark: #0a6a37;
    --dsb-green-deep: #0c3f2a;
    --dsb-green-soft: #eef8f2;
  
    --dsb-gold: #d4a93d;
    --dsb-gold-dark: #b4871d;
    --dsb-gold-soft: #fff8e8;
  
    --dsb-shadow: 0 16px 40px rgba(15, 60, 33, 0.08);
    --dsb-shadow-strong: 0 24px 60px rgba(10, 38, 24, 0.16);
  
    --dsb-radius: 24px;
    --dsb-max: 1180px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dsb-text);
    background: var(--dsb-white);
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  #dsb-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .dsb-container {
    width: min(var(--dsb-max), calc(100% - 32px));
    margin: 0 auto;
  }
  
  /* TOP BAR */
  .dsb-topbar {
    background: linear-gradient(90deg, #1a5a3b, #0b3523);
    padding: 12px 0;
  }
  
  .dsb-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  .dsb-topbar-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
  }
  
  /* HEADER */
  .dsb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(223, 231, 226, 0.9);
  }
  
  .dsb-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .dsb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .dsb-brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--dsb-green), #27ba65);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 141, 73, 0.24);
  }
  
  .dsb-brand-text small {
    display: block;
    color: var(--dsb-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }
  
  .dsb-brand-text strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
  }
  
  .dsb-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* LANGUAGE TOGGLE */
  .dsb-language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 4px;
  }
  
  .dsb-lang-btn {
    min-width: 44px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--dsb-line);
    background: #ffffff;
    color: var(--dsb-text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .dsb-lang-btn:hover {
    transform: translateY(-1px);
    border-color: var(--dsb-green);
  }
  
  .dsb-lang-btn.active {
    background: var(--dsb-green);
    color: #ffffff;
    border-color: var(--dsb-green);
    box-shadow: 0 10px 20px rgba(15, 141, 73, 0.18);
  }
  
  /* BUTTONS */
  .dsb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    border: 0;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
    text-align: center;
  }
  
  .dsb-btn:hover {
    transform: translateY(-2px);
  }
  
  .dsb-btn-primary {
    background: linear-gradient(135deg, var(--dsb-green), #17aa58);
    color: #ffffff !important;
    box-shadow: 0 14px 30px rgba(15, 141, 73, 0.25);
  }
  
  .dsb-btn-primary:hover {
    box-shadow: 0 18px 36px rgba(15, 141, 73, 0.32);
  }
  
  .dsb-btn-secondary {
    background: #ffffff;
    color: var(--dsb-green) !important;
    border: 2px solid var(--dsb-green);
  }
  
  .dsb-btn-outline {
    background: transparent;
    color: var(--dsb-green) !important;
    border: 1px solid var(--dsb-green);
  }
  
  .dsb-btn-gold {
    background: linear-gradient(135deg, #efc75b, var(--dsb-gold));
    color: #1d1d1d !important;
    box-shadow: 0 16px 34px rgba(212, 169, 61, 0.34);
  }
  
  .dsb-btn-gold:hover {
    box-shadow: 0 20px 40px rgba(212, 169, 61, 0.42);
  }
  
  .dsb-btn-large {
    padding: 18px 30px;
    font-size: 18px;
  }
  
  .dsb-btn-full {
    width: 100%;
  }
  
  /* HERO */
  .dsb-hero {
    padding: 84px 0 54px;
    background:
      radial-gradient(circle at top right, rgba(15, 141, 73, 0.12), transparent 26%),
      radial-gradient(circle at top left, rgba(30, 175, 95, 0.08), transparent 20%),
      linear-gradient(180deg, #f8fcf9 0%, #ffffff 75%);
  }
  
  .dsb-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 30px;
    align-items: center;
  }
  
  .dsb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--dsb-gold-soft);
    color: var(--dsb-gold-dark);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }
  
  .dsb-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.04;
    letter-spacing: -1.4px;
  }
  
  .dsb-hero h1 span {
    display: block;
    color: var(--dsb-green);
  }
  
  .dsb-subtext {
    margin: 0 0 28px;
    color: var(--dsb-muted);
    font-size: 19px;
    max-width: 760px;
  }
  
  .dsb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
  }
  
  .dsb-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--dsb-muted);
    font-size: 14px;
    font-weight: 700;
  }
  
  .dsb-hero-proof span::before {
    content: "✓";
    color: var(--dsb-green);
    margin-right: 8px;
    font-weight: 900;
  }
  
  .dsb-hero-card {
    background: var(--dsb-white);
    border: 1px solid var(--dsb-line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--dsb-shadow-strong);
    position: relative;
    overflow: hidden;
  }
  
  .dsb-hero-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--dsb-green), var(--dsb-gold));
  }
  
  .dsb-hero-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .dsb-hero-card-head strong {
    font-size: 19px;
  }
  
  .dsb-pill {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--dsb-green-soft);
    color: var(--dsb-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  
  .dsb-stack {
    display: grid;
    gap: 14px;
  }
  
  .dsb-mini-panel {
    border: 1px solid var(--dsb-line);
    border-radius: 18px;
    padding: 18px;
    background: #fcfefd;
  }
  
  .dsb-mini-panel small {
    display: block;
    color: var(--dsb-green);
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  
  .dsb-mini-panel strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .dsb-mini-panel p {
    margin: 0;
    color: var(--dsb-muted);
    font-size: 15px;
  }
  
  /* GENERIC SECTIONS */
  .dsb-section {
    padding: 82px 0;
  }
  
  .dsb-section-soft {
    background: linear-gradient(180deg, #f9fcfa 0%, #ffffff 100%);
  }
  
  .dsb-section-dark {
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 20%),
      linear-gradient(135deg, #0b3523 0%, #0d4730 100%);
    color: #ffffff;
  }
  
  .dsb-section-head {
    max-width: 820px;
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .dsb-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    letter-spacing: -1px;
  }
  
  .dsb-section-head p {
    margin: 0;
    color: var(--dsb-muted);
    font-size: 18px;
  }
  
  .dsb-section-dark .dsb-section-head p {
    color: rgba(255, 255, 255, 0.84);
  }
  
  /* VIDEO */
  .dsb-video-section {
    padding: 12px 0 28px;
  }
  
  .dsb-video-wrap {
    background: #ffffff;
    border: 1px solid var(--dsb-line);
    border-radius: 32px;
    padding: 30px;
    box-shadow: var(--dsb-shadow-strong);
  }
  
  .dsb-video-placeholder {
    width: 100%;
    min-height: 470px;
    border-radius: 28px;
    background:
      linear-gradient(135deg, rgba(11, 53, 35, 0.96), rgba(15, 92, 58, 0.88));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
  }
  
  .dsb-video-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 30%);
  }
  
  .dsb-video-placeholder-inner {
    position: relative;
    z-index: 1;
    color: #ffffff;
  }
  
  .dsb-play-button {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    font-size: 28px;
    margin: 0 auto 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  }
  
  .dsb-video-placeholder h3 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 1.1;
  }
  
  .dsb-video-placeholder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
  }
  
  /* VALUE / PROBLEM GRID */
  .dsb-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .dsb-problem-card {
    background: #ffffff;
    border: 1px solid var(--dsb-line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--dsb-shadow);
    text-align: left;
  }
  
  .dsb-problem-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #fff0f0;
    color: #c44444;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 14px;
  }
  
  .dsb-problem-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.2;
  }
  
  .dsb-problem-card p {
    margin: 0;
    color: var(--dsb-muted);
    font-size: 16px;
  }
  
  /* SHIFT */
  .dsb-shift-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 42px 36px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  }
  
  .dsb-shift-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212, 169, 61, 0.18);
    color: #f2d37a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
  }
  
  .dsb-shift-card h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px;
  }
  
  .dsb-shift-big {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
  }
  
  .dsb-shift-big span {
    color: #f2d37a;
  }
  
  .dsb-shift-card p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
  }
  
  /* OFFER */
  .dsb-offer-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 24px;
    align-items: stretch;
  }
  
  .dsb-offer-side-card,
  .dsb-offer-main-card {
    background: #ffffff;
    border: 1px solid var(--dsb-line);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--dsb-shadow-strong);
  }
  
  .dsb-price-label {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--dsb-gold-soft);
    color: var(--dsb-gold-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
  }
  
  .dsb-price-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .dsb-price {
    font-size: 58px;
    line-height: 1;
    color: var(--dsb-green);
    font-weight: 900;
  }
  
  .dsb-price-note {
    margin: 0 0 18px;
    color: var(--dsb-muted);
    font-size: 15px;
    font-weight: 700;
  }
  
  .dsb-secure-note {
    margin-top: 14px;
    text-align: center;
    color: var(--dsb-muted);
    font-size: 13px;
    font-weight: 700;
  }
  
  .dsb-offer-main-card {
    display: grid;
    gap: 16px;
  }
  
  .dsb-offer-block {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid #eef3ef;
  }
  
  .dsb-offer-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  
  .dsb-offer-number {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dsb-green), #23ba61);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 12px 24px rgba(15, 141, 73, 0.18);
  }
  
  .dsb-offer-block h3 {
    margin: 0 0 6px;
    font-size: 23px;
    line-height: 1.2;
  }
  
  .dsb-offer-block p {
    margin: 0;
    color: var(--dsb-muted);
    font-size: 16px;
  }
  
  /* FINAL CTA */
  .dsb-final-cta {
    max-width: 860px;
    margin: 0 auto;
    padding: 42px 34px;
    border-radius: 32px;
    text-align: center;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
  }
  
  .dsb-final-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212, 169, 61, 0.18);
    color: #f2d37a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
  }
  
  .dsb-final-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px;
  }
  
  .dsb-final-cta p {
    margin: 0 auto 18px;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
  }
  
  .dsb-final-price {
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .dsb-final-note {
    margin-top: 14px !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.74) !important;
  }
  
  /* FOOTER */
  .dsb-footer {
    padding: 52px 0 28px;
    background: #122017;
    color: #ffffff;
  }
  
  .dsb-footer-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
  
  .dsb-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .dsb-footer-note {
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
  }
  
  .dsb-footer-links {
    display: grid;
    gap: 10px;
    justify-items: start;
  }
  
  .dsb-footer-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
  }
  
  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .dsb-hero-grid,
    .dsb-offer-grid,
    .dsb-problem-grid {
      grid-template-columns: 1fr;
    }
  
    .dsb-footer-grid {
      grid-template-columns: 1fr;
    }
  
    .dsb-video-placeholder {
      min-height: 360px;
    }
  }
  
  @media (max-width: 720px) {
    .dsb-header-inner {
      min-height: auto;
      padding: 14px 0;
      flex-direction: column;
      align-items: stretch;
    }
  
    .dsb-header-actions {
      width: 100%;
      justify-content: stretch;
    }
  
    .dsb-language-toggle {
      width: 100%;
      justify-content: stretch;
      margin-right: 0;
    }
  
    .dsb-lang-btn {
      flex: 1 1 50%;
    }
  
    .dsb-header-actions .dsb-btn {
      flex: 1 1 100%;
    }
  
    .dsb-hero {
      padding: 68px 0 42px;
    }
  
    .dsb-subtext {
      font-size: 18px;
    }
  
    .dsb-video-wrap,
    .dsb-hero-card,
    .dsb-problem-card,
    .dsb-offer-side-card,
    .dsb-offer-main-card,
    .dsb-final-cta {
      padding: 22px;
    }
  
    .dsb-shift-card {
      padding: 28px 22px;
    }
  
    .dsb-video-placeholder {
      min-height: 270px;
    }
  
    .dsb-play-button {
      width: 72px;
      height: 72px;
      font-size: 24px;
    }
  
    .dsb-video-placeholder h3 {
      font-size: 24px;
    }
  
    .dsb-price {
      font-size: 46px;
    }
  
    .dsb-final-price {
      font-size: 40px;
    }
  
    .dsb-offer-block {
      grid-template-columns: 1fr;
    }
  
    .dsb-offer-number {
      margin-bottom: 4px;
    }
  }
  
  @media (max-width: 520px) {
    .dsb-container {
      width: min(var(--dsb-max), calc(100% - 22px));
    }
  
    .dsb-topbar-inner {
      justify-content: center;
      text-align: center;
    }
  
    .dsb-hero h1 {
      letter-spacing: -1px;
    }
  
    .dsb-section {
      padding: 66px 0;
    }
  
    .dsb-section-head h2,
    .dsb-final-cta h2,
    .dsb-shift-card h2 {
      font-size: 30px;
    }
  
    .dsb-offer-block h3 {
      font-size: 22px;
    }
  
    .dsb-btn,
    .dsb-btn-large {
      width: 100%;
    }
  
    .dsb-hero-actions {
      flex-direction: column;
    }
  
    .dsb-hero-proof {
      justify-content: flex-start;
      gap: 10px;
      text-align: left;
    }
  }