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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background: #ffffff;
      color: #101010;
      line-height: 1.5;
    }

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

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

    button {
      font-family: inherit;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    /* NAVBAR */

    .header {
      height: 82px;
      background: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid #ececec;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(14px);
    }

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

    .logo {
      font-size: 23px;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .logo span {
      color: #7c3aed;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: #555;
      transition: 0.2s ease;
    }

    .nav-links a:hover {
      color: #111;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .icon-btn {
      height: 42px;
      width: 42px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #e9e9e9;
      display: grid;
      place-items: center;
      cursor: pointer;
    }

    .icon-btn svg {
      width: 18px;
      fill: none;
      stroke: #111;
      stroke-width: 1.8;
    }

    .nav-btn {
      background: #101010;
      color: #fff;
      padding: 12px 19px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 600;
    }

    /* HERO */

    .hero {
      padding: 80px 0 65px;
      overflow: hidden;
      background:
        radial-gradient(circle at 75% 40%, #f3edff 0%, transparent 30%),
        #fff;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 55px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      background: #f7f4ff;
      border: 1px solid #e8ddff;
      color: #6530c4;
      border-radius: 999px;
      font-weight: 600;
      font-size: 12px;
      margin-bottom: 25px;
    }

    .hero-badge span {
      display: block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #7c3aed;
    }

    .hero h1 {
      font-size: clamp(56px, 6vw, 82px);
      line-height: 0.97;
      letter-spacing: -5px;
      font-weight: 800;
      max-width: 650px;
    }

    .hero h1 span {
      color: #7c3aed;
    }

    .hero-description {
      font-size: 17px;
      color: #686868;
      max-width: 570px;
      margin-top: 28px;
      line-height: 1.75;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 53px;
      padding: 0 24px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      transition: 0.25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-dark {
      color: #fff;
      background: #101010;
    }

    .btn-light {
      background: #fff;
      border: 1px solid #dfdfdf;
    }

    .hero-stats {
      display: flex;
      align-items: center;
      margin-top: 55px;
      gap: 24px;
    }

    .stat {
      display: flex;
      flex-direction: column;
    }

    .stat strong {
      font-size: 18px;
    }

    .stat span {
      font-size: 12px;
      color: #888;
      margin-top: 2px;
    }

    .stat-divider {
      width: 1px;
      height: 35px;
      background: #e4e4e4;
    }

    /* HERO IMAGE */

    .hero-product {
      min-height: 600px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .product-glow {
      position: absolute;
      width: 460px;
      height: 460px;
      border-radius: 50%;
      background: #eee7ff;
    }

    .pc-image {
      width: 470px;
      height: 540px;
      overflow: hidden;
      position: relative;
      border-radius: 30px;
      transform: rotate(2deg);
      box-shadow: 0 35px 80px rgba(18, 12, 35, 0.14);
      z-index: 2;
    }

    .pc-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .floating-card {
      position: absolute;
      background: rgba(255,255,255,0.94);
      border: 1px solid rgba(220,220,220,0.8);
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
      border-radius: 14px;
      padding: 13px 17px;
      display: flex;
      align-items: center;
      gap: 11px;
      z-index: 4;
      backdrop-filter: blur(12px);
    }

    .floating-card strong {
      display: block;
      font-size: 13px;
    }

    .floating-card span {
      display: block;
      color: #8a8a8a;
      font-size: 10px;
      margin-top: 2px;
    }

    .floating-icon {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: #f1ebff;
      color: #7c3aed;
    }

    .card-one {
      top: 80px;
      left: -12px;
    }

    .card-two {
      right: -25px;
      bottom: 110px;
    }

    /* TRUST BAR */

    .trust-bar {
      padding: 30px 0;
      border-top: 1px solid #ececec;
      border-bottom: 1px solid #ececec;
    }

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

    .trust-item {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      padding: 0 26px;
      border-right: 1px solid #eaeaea;
    }

    .trust-item:last-child {
      border-right: 0;
    }

    .trust-icon {
      width: 38px;
      height: 38px;
      background: #f5f5f5;
      border-radius: 10px;
      display: grid;
      place-items: center;
    }

    .trust-item strong,
    .trust-item span {
      display: block;
    }

    .trust-item strong {
      font-size: 13px;
      line-height: 1.35;
    }

    .trust-item span {
      color: #8c8c8c;
      font-size: 11px;
      line-height: 1.55;
      margin-top: 4px;
    }

    /* COMMON */

    .section {
      padding: 105px 0;
    }

    .section-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 42px;
    }

    .eyebrow {
      display: block;
      color: #7c3aed;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 1.6px;
      margin-bottom: 9px;
    }

    .section-heading h2,
    .cta-box h2 {
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.1;
      letter-spacing: -2px;
    }

    .text-link {
      font-size: 13px;
      font-weight: 600;
    }

    /* CATEGORIES */

    .categories {
      background: #fafafa;
    }

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

    .category-card {
      min-height: 310px;
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 18px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: 0.3s ease;
    }

    .category-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    }

    .category-top {
      display: flex;
      justify-content: space-between;
    }

    .category-number {
      color: #aaa;
      font-size: 12px;
    }

    .arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #ddd;
      display: grid;
      place-items: center;
    }

    .category-card h3 {
      font-size: 25px;
      margin-bottom: 10px;
      letter-spacing: -1px;
    }

    .category-card p {
      color: #777;
      font-size: 14px;
      line-height: 1.7;
    }

    .category-bottom {
      border-top: 1px solid #eee;
      padding-top: 20px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .category-bottom span {
      color: #999;
      font-size: 11px;
    }

    .category-bottom strong {
      font-size: 19px;
    }

    .featured-category {
      border-color: #7c3aed;
    }

    .popular-label {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      color: #fff;
      background: #7c3aed;
      padding: 5px 13px;
      font-size: 9px;
      letter-spacing: 1px;
      border-radius: 999px;
      font-weight: 700;
    }

    /* PRODUCT CARDS */

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

    .product-card {
      border: 1px solid #e8e8e8;
      border-radius: 18px;
      overflow: hidden;
      transition: 0.3s ease;
    }

    .product-card-link {
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 55px rgba(0,0,0,0.07);
    }

    .product-image-box {
      height: 350px;
      position: relative;
      background: #fff;
      overflow: hidden;
    }

    .product-image-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 28px 24px 16px;
      transition: transform 0.35s ease, filter 0.35s ease;
    }

    .product-card:hover img {
      transform: scale(1.015);
      filter: saturate(1.03);
    }

    .product-tag {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      padding: 7px 10px;
      background: #fff;
      border-radius: 7px;
      font-size: 9px;
      font-weight: 700;
    }

    .product-content {
      padding: 25px;
    }

    .rating {
      font-size: 11px;
      color: #7c3aed;
    }

    .rating span {
      color: #999;
      margin-left: 5px;
    }

    .product-content h3 {
      margin-top: 12px;
      font-size: 24px;
    }

    .product-subtitle {
      color: #777;
      font-size: 13px;
      margin-top: 4px;
    }

    .spec-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 20px;
    }

    .spec-list span {
      background: #f6f6f6;
      border: 1px solid #ededed;
      padding: 7px 9px;
      border-radius: 7px;
      font-size: 10px;
      font-weight: 600;
    }

    .product-footer {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 26px;
      padding-top: 21px;
      border-top: 1px solid #eee;
    }

    .price small,
    .price strong {
      display: block;
    }

    .price small {
      color: #999;
      font-size: 10px;
    }

    .price strong {
      font-size: 20px;
    }

    .small-btn {
      padding: 10px 14px;
      background: #111;
      color: #fff;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 600;
    }

    /* TRUSTED BY */

    .trusted-section {
      background: #101010;
      color: #fff;
    }

    .trusted-heading {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 55px;
    }

    .trusted-heading .eyebrow {
      color: #bb9bff;
    }

    .trusted-heading h2 {
      font-size: clamp(34px, 4vw, 50px);
      line-height: 1.08;
      letter-spacing: -2.5px;
    }

    .trusted-heading p {
      max-width: 570px;
      margin: 18px auto 0;
      color: #999;
      line-height: 1.7;
      font-size: 14px;
    }

    .brand-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border: 1px solid #282828;
      border-radius: 17px;
      overflow: hidden;
    }

    .brand-item {
      height: 115px;
      display: grid;
      place-items: center;
      border-right: 1px solid #282828;
      background: #141414;
      transition: 0.25s ease;
    }

    .brand-item:last-child {
      border-right: 0;
    }

    .brand-item span {
      color: #747474;
      font-size: 17px;
      font-weight: 800;
      transition: 0.25s ease;
    }

    .brand-item:hover span {
      color: #fff;
    }

    .trusted-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 60px;
      border-top: 1px solid #282828;
      padding-top: 50px;
    }

    .trusted-stat {
      text-align: center;
      border-right: 1px solid #282828;
    }

    .trusted-stat:last-child {
      border-right: 0;
    }

    .trusted-stat strong {
      display: block;
      font-size: 29px;
    }

    .trusted-stat span {
      display: block;
      font-size: 11px;
      margin-top: 7px;
      color: #777;
    }

    /* BLOG */

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

    .blog-card {
      border-radius: 18px;
      overflow: hidden;
    }

    .blog-image {
      position: relative;
      height: 270px;
      border-radius: 17px;
      overflow: hidden;
      display: block;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .blog-category {
      position: absolute;
      z-index: 2;
      top: 16px;
      left: 16px;
      padding: 7px 10px;
      background: rgba(255,255,255,0.94);
      border-radius: 7px;
      font-weight: 700;
      font-size: 9px;
    }

    .blog-content {
      padding: 22px 3px 0;
    }

    .blog-meta {
      color: #999;
      display: flex;
      gap: 7px;
      font-size: 10px;
      margin-bottom: 12px;
    }

    .blog-content h3 {
      font-size: 20px;
      line-height: 1.35;
    }

    .blog-content p {
      color: #777;
      margin-top: 12px;
      font-size: 12px;
      line-height: 1.7;
    }

    .blog-link {
      display: inline-flex;
      gap: 10px;
      margin-top: 18px;
      font-weight: 600;
      font-size: 11px;
    }

    /* FAQ */

    .faq-section {
      background: #fafafa;
    }

    .faq-container {
      display: grid;
      grid-template-columns: 0.85fr 1.25fr;
      gap: 100px;
      align-items: start;
    }

    .faq-heading {
      position: sticky;
      top: 130px;
    }

    .faq-heading h2 {
      font-size: clamp(38px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: -2.5px;
    }

    .faq-heading > p {
      margin-top: 21px;
      color: #777;
      line-height: 1.75;
      font-size: 13px;
    }

    .faq-contact {
      display: inline-flex;
      flex-direction: column;
      margin-top: 35px;
      color: #999;
      font-size: 11px;
    }

    .faq-contact strong {
      color: #111;
      margin-top: 4px;
    }

    .faq-list {
      border-top: 1px solid #dedede;
    }

    .faq-item {
      border-bottom: 1px solid #dedede;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      min-height: 84px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      font-size: 15px;
      font-weight: 600;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-icon {
      position: relative;
      width: 30px;
      height: 30px;
      flex-shrink: 0;
      border: 1px solid #dfdfdf;
      border-radius: 50%;
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      background: #111;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .faq-icon::before {
      width: 10px;
      height: 1px;
    }

    .faq-icon::after {
      height: 10px;
      width: 1px;
    }

    .faq-item[open] .faq-icon {
      background: #111;
    }

    .faq-item[open] .faq-icon::before,
    .faq-item[open] .faq-icon::after {
      background: #fff;
    }

    .faq-item[open] .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }

    .faq-answer {
      padding: 0 55px 28px 0;
    }

    .faq-answer p {
      color: #737373;
      font-size: 13px;
      line-height: 1.8;
    }

    /* CTA */

    .cta-section {
      padding: 30px 0 110px;
    }

    .cta-box {
      background:
        radial-gradient(circle at 80% 40%, #3b1c64, transparent 30%),
        #101010;
      color: #fff;
      padding: 70px;
      border-radius: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cta-box .eyebrow {
      color: #c9aaff;
    }

    .cta-box p {
      max-width: 580px;
      margin-top: 17px;
      color: #aaa;
      font-size: 14px;
      line-height: 1.7;
    }

    .btn-white {
      background: #fff;
      color: #111;
      flex-shrink: 0;
    }

    /* FOOTER */

    footer {
      background: #fafafa;
      border-top: 1px solid #e7e7e7;
      padding: 70px 0 25px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 55px;
    }

    .footer-description {
      color: #888;
      max-width: 330px;
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.7;
    }

    footer h4 {
      font-size: 13px;
      margin-bottom: 17px;
    }

    .footer-grid > div:not(:first-child) {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-grid > div:not(:first-child) a {
      color: #777;
      font-size: 12px;
      margin-bottom: 11px;
    }

    .footer-bottom {
      margin-top: 60px;
      padding-top: 22px;
      border-top: 1px solid #e4e4e4;
      display: flex;
      justify-content: space-between;
      color: #999;
      font-size: 10px;
    }

    /* RESPONSIVE */

    @media (max-width: 1000px) {
      .nav-links {
        display: none;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-content {
        text-align: center;
      }

      .hero-description {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-buttons,
      .hero-stats {
        justify-content: center;
      }

      .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }

      .trust-item {
        border: 0;
        padding: 0;
      }

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

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

      .trusted-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
      }

      .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }

      .faq-heading {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
      }
    }

    @media (max-width: 700px) {
      .container {
        width: min(100% - 26px, 1180px);
      }

      .header {
        height: 70px;
      }

      .icon-btn {
        display: none;
      }

      .hero {
        padding-top: 55px;
      }

      .hero h1 {
        letter-spacing: -3px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-product {
        min-height: 460px;
      }

      .pc-image {
        width: 330px;
        height: 410px;
      }

      .product-glow {
        width: 350px;
        height: 350px;
      }

      .floating-card {
        transform: scale(0.8);
      }

      .section {
        padding: 75px 0;
      }

      .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .category-grid,
      .product-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

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

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

      .cta-box {
        padding: 45px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: span 2;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
      }
    }

    @media (max-width: 430px) {
      .hero h1 {
        font-size: 48px;
      }

      .pc-image {
        width: 290px;
        height: 380px;
      }

      .faq-heading h2 {
        font-size: 38px;
      }
    }
