:root {
    --home-bg: #121212;
    --home-bg-secondary: #1a1a1a;
    --home-text: #f2f2f2;
    --home-text-soft: #d6d6d6;
    --home-accent: #b1c900;
    --home-accent-hover: #d6f000;
    --home-accent-text: #121212;
    --home-border: rgba(255, 255, 255, 0.08);
    --home-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  }
  
  body {
    background:
      radial-gradient(circle at top left, rgba(177, 201, 0, 0.06), transparent 35%),
      radial-gradient(circle at top right, rgba(214, 240, 0, 0.03), transparent 25%),
      #f6f7f5;
    color: #121212;
  }
  
  .home-hero {
    position: relative;
    padding: 2.75rem 0 3.25rem;
  }
  
  .home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(177, 201, 0, 0.09), transparent 20%),
      linear-gradient(135deg, #060606 0%, #121212 35%, #1a1a1a 100%);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    z-index: 0;
    pointer-events: none;
  }
  
  .home-hero .container,
  .home-hero__box {
    position: relative;
    z-index: 2;
  }
  
  .home-hero__content {
    max-width: 620px;
  }
  
  .home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.34rem 0.72rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--home-border);
    border-radius: 999px;
    color: var(--home-text-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
  }
  
  .home-hero__title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
  }
  
  .home-hero__text {
    max-width: 580px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--home-text-soft);
    margin-bottom: 1.35rem;
  }
  
  .home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 1.45rem;
  }
  
  .hero-stat {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.35rem 0.62rem;
    min-width: 0;
    min-height: 72px;
    padding: 0.72rem 0.78rem;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .hero-stat::before {
    content: "";
    grid-row: 1 / span 2;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: var(--home-accent);
    box-shadow: 0 0 0 0.32rem rgba(193, 217, 50, 0.1);
  }
  
  .hero-stat strong {
    display: inline-flex;
    align-items: baseline;
    gap: 0.22rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    white-space: nowrap;
  }
  
  .hero-stat span {
    display: block;
    grid-column: 2;
    color: var(--home-text-soft);
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .hero-stat:hover {
    transform: translateY(-1px);
    border-color: rgba(193, 217, 50, 0.24);
    background: rgba(255, 255, 255, 0.075);
  }
  
  .home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .home-hero__note {
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
  }
  
  .home-btn {
    min-height: 56px;
    padding: 0.92rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
  }

  .home-hero__actions .home-btn {
    min-height: 48px;
    padding-inline: 1.18rem;
    font-size: 0.95rem;
    font-weight: 800;
  }

  .home-hero__actions .home-btn--accent {
    padding-inline: 1.35rem;
  }

  .home-hero__actions .home-btn--ghost {
    min-height: 46px;
    padding-inline: 1.05rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .home-btn--accent {
    background: var(--home-accent);
    color: var(--home-accent-text);
    border: 1px solid var(--home-accent);
    box-shadow: 0 12px 28px rgba(177, 201, 0, 0.22);
  }
  
  .home-btn--accent:hover,
  .home-btn--accent:focus {
    background: var(--home-accent-hover);
    border-color: var(--home-accent-hover);
    color: #121212;
    transform: translateY(-2px);
  }
  
  .home-btn--ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }
  
  .home-btn--ghost:hover,
  .home-btn--ghost:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
  }
  
  .home-btn--outline {
    background: transparent;
    color: #121212;
    border: 1px solid rgba(18, 18, 18, 0.12);
  }
  
  .home-btn--outline:hover,
  .home-btn--outline:focus {
    background: rgba(18, 18, 18, 0.04);
    color: #121212;
    border-color: rgba(18, 18, 18, 0.22);
    transform: translateY(-2px);
  }
  
  .home-btn--light {
    background: #ffffff;
    color: #121212;
    border: 1px solid rgba(18, 18, 18, 0.08);
    box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
  }
  
  .home-btn--light:hover,
  .home-btn--light:focus {
    background: #f2f2f2;
    color: #121212;
    transform: translateY(-2px);
  }
  
  .home-btn--dark {
    background: #121212;
    color: #ffffff;
    border: 1px solid #121212;
  }
  
  .home-btn--dark:hover,
  .home-btn--dark:focus {
    background: #1f1f1f;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .home-trust-strip {
    padding: 1.4rem 0 1.55rem;
    background: #f6f7f5;
    border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  }

  .home-trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .home-trust-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.8rem;
    min-height: 112px;
    padding: 1rem;
    border: 1px solid rgba(18, 18, 18, 0.07);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18, 18, 18, 0.04);
  }

  .home-trust-card__icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(177, 201, 0, 0.14);
    color: #879900;
    flex: 0 0 auto;
  }

  .home-trust-card h2 {
    margin: 0 0 0.35rem;
    color: #1f2933;
    font-size: 0.96rem;
    line-height: 1.25;
    font-weight: 800;
  }

  .home-trust-card p {
    margin: 0;
    color: #66717f;
    font-size: 0.86rem;
    line-height: 1.5;
  }
  
  .home-hero__visual {
    position: relative;
    max-width: 470px;
    margin-left: auto;
  }
  
  .hero-visual-card {
    background: linear-gradient(180deg, #ffffff, #f1f2ef);
    border-radius: 28px;
    padding: 1rem;
    box-shadow: var(--home-shadow);
  }
  
  .home-hero__image {
    width: 100%;
    display: block;
    border-radius: 20px;
  }
  
  .hero-visual-panel {
    position: absolute;
    z-index: 3;
    max-width: 220px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 36px rgba(18, 18, 18, 0.16);
    border: 1px solid rgba(18, 18, 18, 0.06);
  }
  
  .hero-visual-panel span {
    display: block;
    color: #7b7b7b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    font-weight: 700;
  }
  
  .hero-visual-panel strong {
    display: block;
    color: #121212;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 800;
  }
  
  .hero-visual-panel--top {
    top: -16px;
    right: -16px;
  }
  
  .hero-visual-panel--bottom {
    left: -20px;
    bottom: 24px;
  }
  
  .home-value-strip {
    padding: 1.75rem 0 0;
  }

  .home-simple-cta {
    padding: 0 0 4.25rem;
    background: #f6f7f5;
  }

  .home-simple-cta__box {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3.1rem 2rem;
    text-align: center;
    background:
      linear-gradient(135deg, rgba(177, 201, 0, 0.1), rgba(255, 255, 255, 0.78)),
      #eef2f5;
    border: 1px solid rgba(18, 18, 18, 0.05);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.05);
  }

  .home-simple-cta__box h2 {
    margin: 0 auto 1rem;
    max-width: 760px;
    color: #121212;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
  }

  .home-simple-cta__box p {
    max-width: 680px;
    margin: 0 auto 1.65rem;
    color: #586473;
    font-size: 1.02rem;
    line-height: 1.75;
  }
  
  .value-strip-card {
    height: 100%;
    padding: 1.25rem 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(18, 18, 18, 0.06);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(18, 18, 18, 0.05);
  }
  
  .value-strip-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(177, 201, 0, 0.14);
    color: #121212;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .value-strip-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #121212;
  }
  
  .value-strip-card p {
    margin: 0;
    color: #5f5f5f;
    font-size: 0.95rem;
    line-height: 1.55;
  }
  
  .home-section {
    padding: 5rem 0;
  }
  
  .section-heading {
    max-width: 900px;
    margin: 0 auto 3rem;
  }
  
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.34rem 0.72rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: rgba(177, 201, 0, 0.12);
    color: #556100;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
  }
  
  .section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
    color: #121212;
    margin-bottom: 1rem;
    letter-spacing: 0;
  }
  
  .section-heading p {
    margin: 0;
    color: #5d5d5d;
    font-size: 1.06rem;
    line-height: 1.85;
  }
  
  .content-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(18, 18, 18, 0.06);
  }
  
  .content-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .content-card ul {
    margin: 0 0 1.35rem;
    padding-left: 1.2rem;
  }
  
  .content-card li {
    margin-bottom: 0.85rem;
    line-height: 1.75;
  }
  
  .content-card--light {
    background: #ffffff;
    border: 1px solid rgba(18, 18, 18, 0.08);
  }
  
  .content-card--dark {
    background: linear-gradient(135deg, #121212 0%, #1f1f1f 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .content-card--dark h3,
  .content-card--dark li {
    color: #ffffff;
  }

  .home-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: auto;
    padding: 0.78rem 1.15rem;
    border-radius: 999px;
    background: #121212;
    border: 1px solid #121212;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .home-card-cta:hover,
  .home-card-cta:focus {
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #ffffff;
    transform: translateY(-2px);
  }

  .home-card-cta--light {
    background: var(--home-accent);
    border-color: var(--home-accent);
    color: #121212;
  }

  .home-card-cta--light:hover,
  .home-card-cta--light:focus {
    background: var(--home-accent-hover);
    border-color: var(--home-accent-hover);
    color: #121212;
  }
  
  .feature-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(18, 18, 18, 0.06);
    padding: 2rem 1.4rem;
    box-shadow: 0 18px 34px rgba(18, 18, 18, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(18, 18, 18, 0.08);
  }
  
  .feature-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    background: rgba(177, 201, 0, 0.14);
    color: #121212;
    font-size: 1.2rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #121212;
  }
  
  .feature-card p {
    margin: 0;
    color: #5d5d5d;
    line-height: 1.75;
  }

  .home-section-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 2.25rem;
  }
  
  .home-pricing {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.03), rgba(18, 18, 18, 0));
  }
  
  .pricing-card-head h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  
  .pricing-card-head p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  .pricing-price {
    font-size: 2.3rem;
    font-weight: 800;
    color: #121212;
    margin-bottom: 1.4rem;
  }
  
  .pricing-price small {
    font-size: 0.95rem;
    font-weight: 600;
    color: #747474;
  }
  
  .pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.8rem;
  }
  
  .pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    line-height: 1.65;
    color: #2d2d2d;
  }
  
  .pricing-feature-list li i {
    margin-top: 0.2rem;
  }
  
  .pricing-feature-list li.is-enabled i {
    color: #4caf50;
  }
  
  .pricing-feature-list li.is-disabled {
    color: #a0a0a0;
  }
  
  .pricing-feature-list li.is-disabled i {
    color: #d9534f;
  }
  
  .pricing-card-foot {
    margin-top: auto;
    padding-top: 1rem;
  }
  
  .faq-box {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(18, 18, 18, 0.06);
    border: 1px solid rgba(18, 18, 18, 0.06);
  }
  
  .accordion-dark .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  }
  
  .accordion-dark .accordion-item:last-child {
    border-bottom: 0;
  }
  
  .accordion-dark .accordion-button {
    background: transparent;
    color: #121212;
    font-weight: 700;
    box-shadow: none;
    padding: 1.25rem 0.5rem;
  }
  
  .accordion-dark .accordion-button:not(.collapsed) {
    color: #121212;
    background: transparent;
  }
  
  .accordion-dark .accordion-body {
    padding: 0 0.5rem 1.25rem;
    color: #5d5d5d;
    line-height: 1.8;
  }
  
  .home-final-cta {
    padding: 0 0 5rem;
  }
  
  .final-cta-box {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 2.4rem;
    box-shadow: 0 24px 48px rgba(18, 18, 18, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .final-cta-box h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 0.9rem;
  }
  
  .final-cta-box p {
    color: #d0d0d0;
    margin: 0;
    line-height: 1.8;
  }
  
  .final-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  
  @media (min-width: 992px) {
    .final-cta-actions .home-btn {
      min-width: 220px;
    }
  }
  
  @media (max-width: 1199.98px) {
    .home-hero__content {
      max-width: 100%;
    }
  
    .home-hero__title {
      font-size: clamp(1.95rem, 2.8vw, 2.9rem);
    }
  
    .home-hero__text {
      max-width: 100%;
    }
  
    .home-hero__visual {
      max-width: 390px;
      margin-inline: auto;
    }
  
    .hero-visual-panel--top {
      right: -10px;
    }
  
    .hero-visual-panel--bottom {
      left: -10px;
    }
  }
  
  @media (max-width: 991.98px) {
    .home-hero {
      padding: 1.55rem 0 2.1rem;
    }

    .home-hero__content {
      display: flex;
      flex-direction: column;
    }
  
    .home-hero__title {
      font-size: clamp(1.95rem, 7vw, 2.7rem);
      margin-bottom: 0.75rem;
    }

    .home-hero__text {
      margin-bottom: 1rem;
    }
  
    .home-hero__stats {
      order: 5;
      display: grid;
      grid-template-columns: 1fr;
      width: 100%;
      gap: 0.5rem;
      padding: 0;
      border-radius: 0;
      margin: 0.15rem 0 0.85rem;
    }

    .hero-stat {
      grid-template-columns: auto auto 1fr;
      min-height: 0;
      padding: 0.62rem 0.72rem;
      gap: 0.35rem 0.55rem;
    }

    .hero-stat::before {
      grid-row: 1;
      width: 0.42rem;
      height: 0.42rem;
      box-shadow: 0 0 0 0.25rem rgba(193, 217, 50, 0.09);
    }

    .hero-stat strong {
      flex: 0 0 auto;
      font-size: 0.92rem;
    }

    .hero-stat span {
      grid-column: auto;
      min-width: 0;
      font-size: 0.82rem;
      line-height: 1.35;
    }
  
    .home-hero__actions {
      order: 4;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      margin-bottom: 0.85rem;
    }

    .home-hero__actions .home-btn {
      width: 100%;
      min-height: 52px;
    }

    .home-trust-strip__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-trust-card {
      min-height: 0;
      border-radius: 16px;
    }

    .home-hero__note {
      order: 6;
      font-size: 0.9rem;
      line-height: 1.55;
    }
  
    .home-hero__visual {
      max-width: 100%;
      margin-top: 0.5rem;
    }
  
    .hero-visual-panel {
      position: static;
      max-width: none;
      margin-top: 1rem;
    }
  
    .home-section {
      padding: 4rem 0;
    }

    .home-simple-cta {
      padding-bottom: 3.5rem;
    }
  
    .final-cta-box {
      padding: 2rem 1.25rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .home-hero::before {
      border-bottom-left-radius: 22px;
      border-bottom-right-radius: 22px;
    }

    .home-hero__eyebrow {
      min-height: 28px;
      margin-bottom: 0.75rem;
      font-size: 0.62rem;
    }

    .home-hero__title {
      font-size: 1.82rem;
      line-height: 1.08;
    }
  
    .home-hero__text {
      font-size: 0.96rem;
      line-height: 1.62;
    }

    .home-hero__stats {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }

    .hero-stat {
      display: grid;
      grid-template-columns: auto auto 1fr;
      align-items: center;
      gap: 0.35rem 0.55rem;
    }

    .home-btn {
      min-height: 50px;
      padding: 0.78rem 1.1rem;
    }

    .home-trust-strip__grid {
      grid-template-columns: 1fr;
    }

    .home-section-cta {
      flex-direction: column;
      align-items: stretch;
    }

    .home-simple-cta__box {
      padding: 2.25rem 1.15rem;
      border-radius: 22px;
    }
  
    .section-heading h2,
    .final-cta-box h2 {
      font-size: 2rem;
    }
  
    .pricing-price {
      font-size: 2rem;
    }
  
    .content-card,
    .feature-card,
    .faq-box {
      border-radius: 20px;
    }
  }

  @media (max-height: 720px) and (max-width: 991.98px) {
    .home-hero {
      padding-top: 1.1rem;
    }

    .home-hero__text {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .home-hero__note {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-stat,
    .home-btn,
    .feature-card {
      transition: none;
    }

    .hero-stat:hover,
    .home-btn:hover,
    .feature-card:hover {
      transform: none;
    }
  }
