/* ================================
       GLOBAL
    ================================= */

    * {
      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 {
      color: #f45145;
    }

    .nav .header-button {
      background: #f45145;
      color: #ffffff;
      padding: 13px 22px;
      border: 1px solid #f45145;
    }

    .nav .header-button:hover {
      background: #dc4036;
      color: #ffffff;
      border-color: #dc4036;
    }


    /* ================================
       HERO
    ================================= */

    .hero {
      position: relative;
      overflow: hidden;

      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.08),
          transparent 30%
        ),
        #181818;

      padding: 115px 0 110px;
      color: #ffffff;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 430px;
      height: 430px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      right: -150px;
      top: -160px;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      background: rgba(244, 81, 69, 0.12);
      border: 1px solid rgba(244, 81, 69, 0.45);

      color: #ff675d;

      padding: 7px 15px;
      margin-bottom: 23px;

      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    .hero h1 {
      font-size: clamp(43px, 6vw, 72px);
      line-height: 1.06;
      letter-spacing: -2.5px;
      margin-bottom: 24px;
    }

    .hero h1 span {
      color: #f45145;
    }

    .hero p {
      max-width: 730px;
      margin: 0 auto 35px;
      color: #c7c7c7;
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }


    /* ================================
       BUTTONS
    ================================= */

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      min-height: 49px;
      padding: 12px 24px;

      font-size: 14px;
      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;
      transform: translateY(-2px);
    }

    .button-secondary {
      border: 1px solid #555555;
      background: transparent;
      color: #ffffff;
    }

    .button-secondary:hover {
      border-color: #f45145;
      color: #f45145;
      transform: translateY(-2px);
    }


    /* ================================
       GENERAL SECTIONS
    ================================= */

    .section {
      padding: 95px 0;
    }

    .section-heading {
      max-width: 750px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .section-heading > span {
      display: block;
      color: #f45145;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
    }

    .section-heading h2 {
      font-size: clamp(32px, 4vw, 47px);
      line-height: 1.15;
      letter-spacing: -1.4px;
      margin-bottom: 16px;
    }

    .section-heading p {
      color: #686868;
      font-size: 17px;
    }


    /* ================================
       APPS
    ================================= */

    .apps-section {
      background: #ffffff;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .app-card {
      position: relative;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid #e4e4e4;
      padding: 34px;
      transition: 0.25s ease;
    }

    .app-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 3px;
      background: #f45145;
      transition: width 0.3s ease;
    }

    .app-card:hover {
      transform: translateY(-5px);
      border-color: #d6d6d6;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
    }

    .app-card:hover::before {
      width: 100%;
    }

    .app-icon {
      width: 58px;
      height: 58px;

      background: #181818;
      color: #f45145;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 20px;
      font-weight: 800;

      margin-bottom: 24px;
    }

    .app-card h3 {
      font-size: 23px;
      margin-bottom: 12px;
    }

    .app-card p {
      color: #666666;
      font-size: 15px;
      margin-bottom: 25px;
      min-height: 96px;
    }

    .app-link {
      color: #f45145;
      font-size: 14px;
      font-weight: 700;
    }

    .app-link:hover {
      color: #d93e34;
    }


    /* ================================
       SUPPORT DARK SECTION
    ================================= */

    .support-section {
      position: relative;
      overflow: hidden;
      background: #181818;
      color: #ffffff;
    }

    .support-section::after {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(244, 81, 69, 0.05);
      border-radius: 50%;
      right: -220px;
      bottom: -280px;
    }

    .support-grid {
      position: relative;
      z-index: 2;

      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 75px;
      align-items: center;
    }

    .support-copy > span {
      display: block;
      color: #f45145;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 11px;
    }

    .support-copy h2 {
      font-size: clamp(35px, 4vw, 52px);
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
    }

    .support-copy p {
      max-width: 590px;
      color: #bfbfbf;
      font-size: 16px;
      margin-bottom: 29px;
    }

    .support-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .support-item {
      background: #202020;
      border: 1px solid #333333;
      padding: 24px 21px;
      transition: 0.2s ease;
    }

    .support-item:hover {
      border-color: #f45145;
    }

    .support-icon {
      color: #f45145;
      font-size: 25px;
      line-height: 1;
      margin-bottom: 15px;
    }

    .support-item strong {
      display: block;
      font-size: 16px;
      margin-bottom: 6px;
    }

    .support-item span {
      display: block;
      color: #aaaaaa;
      font-size: 13px;
      line-height: 1.6;
    }


    /* ================================
       WHY Z DZINE
    ================================= */

    .why-section {
      background: #f7f7f7;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .why-card {
      background: #ffffff;
      border: 1px solid #e5e5e5;
      padding: 28px 25px;
    }

    .why-number {
      color: #f45145;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 17px;
    }

    .why-card h3 {
      font-size: 18px;
      margin-bottom: 9px;
    }

    .why-card p {
      color: #696969;
      font-size: 14px;
    }


    /* ================================
       CTA
    ================================= */

    .cta-wrap {
      background: #ffffff;
      padding: 95px 0;
    }

    .cta {
      position: relative;
      overflow: hidden;

      background: #f45145;
      color: #ffffff;

      padding: 62px 40px;
      text-align: center;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      right: -120px;
      top: -160px;
    }

    .cta::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 50%;
      left: -90px;
      bottom: -130px;
    }

    .cta h2,
    .cta p,
    .cta a {
      position: relative;
      z-index: 2;
    }

    .cta h2 {
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.15;
      margin-bottom: 15px;
    }

    .cta p {
      max-width: 650px;
      margin: 0 auto 28px;
      color: #fff0ee;
      font-size: 16px;
    }

    .cta .button {
      background: #171717;
      border: 1px solid #171717;
      color: #ffffff;
    }

    .cta .button:hover {
      background: #ffffff;
      color: #171717;
      border-color: #ffffff;
    }


    /* ================================
       FOOTER
       SAME AS ABOUT + CONTACT
    ================================= */

    .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 {
      color: #ffffff;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .footer-column a {
      display: block;
      color: #a9a9a9;
      font-size: 14px;
      margin-bottom: 9px;
      transition: 0.2s ease;
    }

    .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%; }
    }

    /* 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);
    }

    .apps-grid .app-card:nth-child(2) { transition-delay: 0.1s; }
    .apps-grid .app-card:nth-child(3) { transition-delay: 0.2s; }

    .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; }

    .support-list .support-item:nth-child(2) { transition-delay: 0.1s; }
    .support-list .support-item:nth-child(3) { transition-delay: 0.2s; }
    .support-list .support-item:nth-child(4) { transition-delay: 0.3s; }

    /* 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 underline */
    .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 {
      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 background elements */
    .hero::before {
      animation: floatBlob 11s ease-in-out infinite;
    }

    .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; }

    .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 card polish */
    .app-icon {
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .app-card:hover .app-icon {
      transform: rotate(-6deg) scale(1.08);
      box-shadow: 0 10px 22px rgba(244, 81, 69, 0.35);
    }

    .app-link {
      display: inline-flex;
      align-items: center;
      transition: 0.2s ease;
    }

    .app-link:hover {
      gap: 4px;
    }

    /* Support items */
    .support-icon {
      transition: transform 0.3s ease;
      display: inline-block;
    }

    .support-item:hover .support-icon {
      transform: scale(1.2) rotate(8deg);
    }

    /* 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);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
      border-color: #f45145;
    }

    .why-number {
      transition: transform 0.3s ease;
      display: inline-block;
    }

    .why-card:hover .why-number {
      transform: scale(1.15);
    }

    /* CTA circles animate */
    .cta::before {
      animation: floatBlob 13s ease-in-out infinite;
    }

    .cta::after {
      animation: floatBlob 16s ease-in-out infinite reverse;
    }

    /* 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) {
      .hero::before,
      .eyebrow::before,
      .cta::before,
      .cta::after,
      .reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }


    /* ================================
       RESPONSIVE
    ================================= */

    @media (max-width: 950px) {

      .apps-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .support-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .why-grid {
        grid-template-columns: repeat(2, 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 15px;
        font-size: 11px;
      }

      .hero {
        padding: 80px 0 78px;
      }

      .hero h1 {
        font-size: 43px;
        letter-spacing: -1.8px;
      }

      .hero p {
        font-size: 16px;
      }

      .section {
        padding: 70px 0;
      }

      .apps-grid,
      .why-grid {
        grid-template-columns: 1fr;
      }

      .app-card p {
        min-height: auto;
      }

      .support-list {
        grid-template-columns: 1fr;
      }

      .cta-wrap {
        padding: 70px 0;
      }

      .cta {
        padding: 48px 24px;
      }

      .footer-top {
        flex-direction: column;
      }

      .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }


    @media (max-width: 480px) {

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .button {
        width: 100%;
      }

      .hero h1 {
        font-size: 38px;
      }

      .footer-links {
        grid-template-columns: 1fr;
      }
    }

