* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #171717;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    /* HEADER */

    .site-header {
      background: #101010;
      border-bottom: 1px solid #292929;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .logo img {
      width: 155px;
      height: auto;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav a {
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.2s ease;
    }

    .nav a:hover,
    .nav a.active {
      color: #f45145;
    }

    .nav .header-button {
      background: #f45145;
      color: #ffffff;
      padding: 13px 22px;
      border: 1px solid #f45145;
    }

    .nav .header-button:hover {
      background: #dc4036;
      border-color: #dc4036;
      color: #ffffff;
    }

    /* HERO */

    .apps-hero {
      background:
        radial-gradient(
          circle at 85% 20%,
          rgba(244, 81, 69, 0.16),
          transparent 28%
        ),
        radial-gradient(
          circle at 10% 80%,
          rgba(244, 81, 69, 0.07),
          transparent 30%
        ),
        #181818;

      color: #ffffff;
      padding: 100px 0 92px;
      text-align: center;
    }

    .apps-hero-inner {
      max-width: 830px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-block;
      padding: 7px 14px;
      background: rgba(244, 81, 69, 0.12);
      border: 1px solid rgba(244, 81, 69, 0.42);
      color: #ff675d;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 20px;
    }

    .apps-hero h1 {
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1.08;
      letter-spacing: -2px;
      margin-bottom: 19px;
    }

    .apps-hero h1 span {
      color: #f45145;
    }

    .apps-hero p {
      color: #c4c4c4;
      font-size: 18px;
      max-width: 720px;
      margin: 0 auto;
    }

    /* INTRO */

    .intro-section {
      padding: 82px 0 30px;
      background: #ffffff;
    }

    .section-heading {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .section-heading > span {
      display: block;
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 9px;
    }

    .section-heading h2 {
      font-size: clamp(31px, 4vw, 46px);
      line-height: 1.15;
      letter-spacing: -1.3px;
      margin-bottom: 14px;
    }

    .section-heading p {
      color: #6a6a6a;
      font-size: 16px;
    }

    /* APP ROWS */

    .apps-list {
      padding: 60px 0 95px;
      background: #ffffff;
    }

    .app-feature {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 55px;
      align-items: stretch;

      border: 1px solid #e3e3e3;
      margin-bottom: 28px;
      background: #ffffff;
      transition: 0.25s ease;
    }

    .app-feature:hover {
      border-color: #f45145;
      box-shadow: 0 18px 50px rgba(0,0,0,0.07);
      transform: translateY(-3px);
    }

    .app-visual {
      background: #181818;
      min-height: 390px;
      padding: 40px;
      position: relative;
      overflow: hidden;

      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .app-visual::after {
      content: "";
      position: absolute;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      border: 1px solid rgba(244,81,69,0.18);
      right: -110px;
      bottom: -110px;
    }

    .app-icon {
      width: 68px;
      height: 68px;
      background: #111111;
      color: #f45145;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 22px;
      font-weight: 800;

      position: relative;
      z-index: 2;
    }

    .app-visual-copy {
      position: relative;
      z-index: 2;
    }

    .app-visual-copy span {
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      display: block;
      margin-bottom: 8px;
    }

    .app-visual-copy h3 {
      color: #ffffff;
      font-size: 31px;
      line-height: 1.15;
    }

    .app-content {
      padding: 42px 44px 42px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .app-content-label {
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      margin-bottom: 9px;
    }

    .app-content h2 {
      font-size: 34px;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 14px;
    }

    .app-description {
      color: #666666;
      font-size: 15px;
      margin-bottom: 23px;
      max-width: 650px;
    }

    .feature-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 18px;
      margin-bottom: 27px;
    }

    .feature-list li {
      color: #3e3e3e;
      font-size: 14px;
      position: relative;
      padding-left: 22px;
    }

    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #f45145;
      font-weight: 800;
    }

    .app-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 47px;
      padding: 11px 21px;
      font-size: 13px;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .button-primary {
      background: #f45145;
      border: 1px solid #f45145;
      color: #ffffff;
    }

    .button-primary:hover {
      background: #dc4036;
      border-color: #dc4036;
    }

    .button-secondary {
      background: #ffffff;
      color: #171717;
      border: 1px solid #d6d6d6;
    }

    .button-secondary:hover {
      border-color: #f45145;
      color: #f45145;
    }

    /* DIFFERENT SECOND CARD */

    .app-feature.reverse {
      grid-template-columns: 1.15fr 0.85fr;
    }

    .app-feature.reverse .app-content {
      order: 1;
      padding: 42px 0 42px 44px;
    }

    .app-feature.reverse .app-visual {
      order: 2;
    }

    /* SUPPORT STRIP */

    .support-strip {
      background: #f7f7f7;
      padding: 88px 0;
    }

    .support-strip-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 50px;
      align-items: center;
    }

    .support-strip span {
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.1px;
      display: block;
      margin-bottom: 8px;
    }

    .support-strip h2 {
      font-size: clamp(30px, 4vw, 43px);
      line-height: 1.15;
      margin-bottom: 11px;
    }

    .support-strip p {
      color: #696969;
      max-width: 690px;
      font-size: 15px;
    }

    /* WHY */

    .why-section {
      background: #181818;
      color: #ffffff;
      padding: 90px 0;
    }

    .why-section .section-heading {
      margin-bottom: 45px;
    }

    .why-section .section-heading p {
      color: #b5b5b5;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .why-card {
      background: #202020;
      border: 1px solid #333333;
      padding: 26px;
    }

    .why-number {
      color: #f45145;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .why-card h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .why-card p {
      color: #a9a9a9;
      font-size: 13px;
    }

    /* CTA */

    .cta-wrap {
      background: #ffffff;
      padding: 90px 0;
    }

    .cta {
      background: #f45145;
      color: #ffffff;
      text-align: center;
      padding: 60px 35px;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.18);
      position: absolute;
      top: -160px;
      right: -110px;
    }

    .cta h2,
    .cta p,
    .cta a {
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      font-size: clamp(31px, 4vw, 46px);
      line-height: 1.15;
      margin-bottom: 13px;
    }

    .cta p {
      max-width: 650px;
      margin: 0 auto 27px;
      color: #fff0ee;
      font-size: 15px;
    }

    .cta .button {
      background: #171717;
      color: #ffffff;
      border: 1px solid #171717;
    }

    .cta .button:hover {
      background: #ffffff;
      color: #171717;
      border-color: #ffffff;
    }

    /* FOOTER */

    .footer {
      background: #111111;
      color: #ffffff;
      padding: 55px 0 25px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 60px;
      margin-bottom: 45px;
    }

    .footer-brand {
      max-width: 390px;
    }

    .footer-brand img {
      width: 145px;
      margin-bottom: 20px;
    }

    .footer-brand p {
      color: #9e9e9e;
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(120px, 1fr));
      gap: 45px;
    }

    .footer-column h4 {
      font-size: 15px;
      margin-bottom: 15px;
    }

    .footer-column a {
      display: block;
      color: #a9a9a9;
      font-size: 14px;
      margin-bottom: 9px;
    }

    .footer-column a:hover {
      color: #f45145;
    }

    .footer-bottom {
      border-top: 1px solid #292929;
      padding-top: 23px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #777777;
      font-size: 13px;
    }

    /* EFFECTS & ANIMATIONS */

    @keyframes floatBlob {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-18px, 22px) scale(1.07); }
    }

    @keyframes drift {
      0% { transform: translateY(0) translateX(0); opacity: 0.35; }
      50% { opacity: 0.85; }
      100% { transform: translateY(-90px) translateX(12px); opacity: 0.35; }
    }

    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(244, 81, 69, 0.55); }
      70% { box-shadow: 0 0 0 8px rgba(244, 81, 69, 0); }
      100% { box-shadow: 0 0 0 0 rgba(244, 81, 69, 0); }
    }

    @keyframes shineSweep {
      0% { left: -75%; }
      100% { left: 125%; }
    }

    @keyframes checkIn {
      from { opacity: 0; transform: translateX(-6px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
    .why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }
    .why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }

    .app-feature.is-visible .feature-list li {
      animation: checkIn 0.4s ease both;
    }

    .feature-list li:nth-child(1) { animation-delay: 0.05s; }
    .feature-list li:nth-child(2) { animation-delay: 0.1s; }
    .feature-list li:nth-child(3) { animation-delay: 0.15s; }
    .feature-list li:nth-child(4) { animation-delay: 0.2s; }
    .feature-list li:nth-child(5) { animation-delay: 0.25s; }
    .feature-list li:nth-child(6) { animation-delay: 0.3s; }
    .feature-list li:nth-child(7) { animation-delay: 0.35s; }
    .feature-list li:nth-child(8) { animation-delay: 0.4s; }

    /* Header glass state on scroll */
    .site-header {
      transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    }

    .site-header.is-scrolled {
      background: rgba(16, 16, 16, 0.82);
      backdrop-filter: blur(12px) saturate(140%);
      -webkit-backdrop-filter: blur(12px) saturate(140%);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .logo img {
      transition: transform 0.3s ease;
    }

    .logo:hover img {
      transform: scale(1.05) rotate(-1deg);
    }

    .nav a:not(.header-button) {
      position: relative;
      padding-bottom: 4px;
    }

    .nav a:not(.header-button)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: #f45145;
      transition: width 0.25s ease;
    }

    .nav a:not(.header-button):hover::after,
    .nav a.active::after {
      width: 100%;
    }

    /* Button shine sweep */
    .button {
      position: relative;
      overflow: hidden;
    }

    .button::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 45%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
      transform: skewX(-20deg);
    }

    .button:hover::after {
      animation: shineSweep 0.85s ease forwards;
    }

    /* Hero animated particles */
    .apps-hero {
      position: relative;
      overflow: hidden;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-particles span {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #f45145;
      opacity: 0.5;
      animation: drift 8s ease-in-out infinite;
    }

    .hero-particles span:nth-child(1) { left: 12%; top: 70%; animation-delay: 0s; }
    .hero-particles span:nth-child(2) { left: 24%; top: 30%; animation-delay: 1.2s; width: 3px; height: 3px; }
    .hero-particles span:nth-child(3) { left: 46%; top: 80%; animation-delay: 2.4s; }
    .hero-particles span:nth-child(4) { left: 63%; top: 22%; animation-delay: 0.6s; width: 4px; height: 4px; }
    .hero-particles span:nth-child(5) { left: 78%; top: 62%; animation-delay: 3s; }
    .hero-particles span:nth-child(6) { left: 90%; top: 35%; animation-delay: 1.8s; width: 3px; height: 3px; }

    .apps-hero-inner {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      position: relative;
    }

    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #f45145;
      margin-right: 8px;
      animation: pulseDot 1.8s ease-out infinite;
    }

    /* App feature rows */
    .app-visual::after {
      animation: floatBlob 12s ease-in-out infinite;
    }

    .app-icon {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .app-feature:hover .app-icon {
      transform: rotate(-6deg) scale(1.08);
      box-shadow: 0 10px 22px rgba(244, 81, 69, 0.35);
    }

    .feature-list li::before {
      transition: transform 0.2s ease;
    }

    .feature-list li:hover::before {
      transform: scale(1.25);
    }

    /* Support strip */
    .support-strip-grid > div:first-child span {
      position: relative;
    }

    /* Why cards */
    .why-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .why-card:hover {
      transform: translateY(-6px);
      border-color: #f45145;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    }

    .why-number {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    .why-card:hover .why-number {
      transform: scale(1.15);
    }

    /* CTA circle animate */
    .cta::before {
      animation: floatBlob 13s ease-in-out infinite;
    }

    /* Footer logo subtle hover */
    .footer-brand img {
      transition: transform 0.3s ease;
    }

    .footer-brand img:hover {
      transform: scale(1.04);
    }

    @media (prefers-reduced-motion: reduce) {
      .app-visual::after,
      .eyebrow::before,
      .cta::before,
      .reveal,
      .feature-list li {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }


    /* RESPONSIVE */

    @media (max-width: 950px) {
      .app-feature,
      .app-feature.reverse {
        grid-template-columns: 1fr;
      }

      .app-feature.reverse .app-content,
      .app-feature.reverse .app-visual {
        order: initial;
      }

      .app-content,
      .app-feature.reverse .app-content {
        padding: 35px;
      }

      .app-visual {
        min-height: 290px;
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .support-strip-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .header-inner {
        min-height: 72px;
      }

      .logo img {
        width: 125px;
      }

      .nav {
        gap: 10px;
      }

      .nav a:not(.header-button) {
        display: none;
      }

      .nav .header-button {
        padding: 10px 14px;
        font-size: 11px;
      }

      .apps-hero {
        padding: 70px 0 66px;
      }

      .apps-hero h1 {
        font-size: 41px;
      }

      .intro-section {
        padding-top: 65px;
      }

      .apps-list {
        padding: 45px 0 70px;
      }

      .app-content,
      .app-feature.reverse .app-content {
        padding: 27px 22px;
      }

      .app-visual {
        padding: 27px 22px;
        min-height: 235px;
      }

      .app-content h2 {
        font-size: 28px;
      }

      .feature-list {
        grid-template-columns: 1fr;
      }

      .app-actions {
        flex-direction: column;
      }

      .app-actions .button {
        width: 100%;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .footer-top,
      .footer-bottom {
        flex-direction: column;
      }

      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }
    }

