* {
      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;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    .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 */

    .contact-hero {
      background:
        radial-gradient(
          circle at 85% 20%,
          rgba(244, 81, 69, 0.14),
          transparent 28%
        ),
        #181818;

      color: #ffffff;
      padding: 88px 0 82px;
      text-align: center;
    }

    .contact-hero-inner {
      max-width: 780px;
      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;
    }

    .contact-hero h1 {
      font-size: clamp(40px, 5vw, 62px);
      line-height: 1.08;
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .contact-hero h1 span {
      color: #f45145;
    }

    .contact-hero p {
      color: #c5c5c5;
      font-size: 17px;
      max-width: 690px;
      margin: 0 auto;
    }

    /* CONTACT AREA */

    .contact-section {
      padding: 90px 0;
      background: #f7f7f7;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 38px;
      align-items: start;
    }

    /* LEFT INFO */

    .contact-info {
      background: #181818;
      color: #ffffff;
      padding: 38px;
      min-height: 100%;
    }

    .contact-info-label {
      color: #f45145;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .contact-info h2 {
      font-size: 34px;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -1px;
    }

    .contact-info > p {
      color: #b8b8b8;
      margin-bottom: 30px;
      font-size: 15px;
    }

    .info-list {
      display: grid;
      gap: 16px;
      margin-bottom: 32px;
    }

    .info-item {
      border: 1px solid #333333;
      background: #202020;
      padding: 20px;
    }

    .info-item strong {
      display: block;
      font-size: 15px;
      margin-bottom: 5px;
    }

    .info-item span,
    .info-item a {
      color: #aaaaaa;
      font-size: 14px;
    }

    .info-item a:hover {
      color: #f45145;
    }

    .response-box {
      border-left: 3px solid #f45145;
      background: #202020;
      padding: 18px 20px;
    }

    .response-box strong {
      display: block;
      font-size: 15px;
      margin-bottom: 5px;
    }

    .response-box span {
      color: #a9a9a9;
      font-size: 13px;
    }

    /* FORM */

    .contact-form-wrap {
      background: #ffffff;
      border: 1px solid #e4e4e4;
      padding: 40px;
    }

    .contact-form-heading {
      margin-bottom: 28px;
    }

    .contact-form-heading span {
      display: block;
      color: #f45145;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 7px;
    }

    .contact-form-heading h2 {
      font-size: 31px;
      margin-bottom: 8px;
      letter-spacing: -0.8px;
    }

    .contact-form-heading p {
      color: #707070;
      font-size: 14px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label {
      font-size: 13px;
      font-weight: 700;
      color: #272727;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 1px solid #d9d9d9;
      background: #ffffff;
      color: #171717;
      padding: 13px 14px;
      outline: none;
      transition: 0.2s ease;
    }

    .form-group input,
    .form-group select {
      min-height: 48px;
    }

    .form-group textarea {
      min-height: 155px;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #f45145;
      box-shadow: 0 0 0 2px rgba(244, 81, 69, 0.08);
    }

    .form-note {
      grid-column: 1 / -1;
      color: #777777;
      font-size: 12px;
      margin-top: -2px;
    }

    .submit-row {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 4px;
    }

    .submit-button {
      border: 0;
      background: #f45145;
      color: #ffffff;
      min-height: 49px;
      padding: 12px 25px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .submit-button:hover {
      background: #dc4036;
      transform: translateY(-1px);
    }

    .privacy-note {
      color: #777777;
      font-size: 12px;
      max-width: 310px;
      text-align: right;
    }

    .privacy-note a {
      color: #f45145;
    }

    /* APP SUPPORT LINKS */

    .apps-support {
      padding: 85px 0;
      background: #ffffff;
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 42px;
      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: 8px;
    }

    .section-heading h2 {
      font-size: clamp(30px, 4vw, 43px);
      margin-bottom: 12px;
      letter-spacing: -1px;
    }

    .section-heading p {
      color: #6b6b6b;
      font-size: 16px;
    }

    .support-app-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .support-app-card {
      border: 1px solid #e3e3e3;
      padding: 26px;
      transition: 0.2s ease;
    }

    .support-app-card:hover {
      border-color: #f45145;
      transform: translateY(-3px);
    }

    .support-app-icon {
      width: 44px;
      height: 44px;
      background: #181818;
      color: #f45145;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      margin-bottom: 17px;
    }

    .support-app-card h3 {
      font-size: 18px;
      margin-bottom: 7px;
    }

    .support-app-card p {
      color: #6b6b6b;
      font-size: 13px;
      margin-bottom: 15px;
    }

    .support-app-card a {
      color: #f45145;
      font-size: 13px;
      font-weight: 700;
    }

    /* CTA */

    .cta-section {
      padding: 0 0 90px;
      background: #ffffff;
    }

    .cta-box {
      background: #f45145;
      color: #ffffff;
      padding: 52px 40px;
      text-align: center;
    }

    .cta-box h2 {
      font-size: 36px;
      margin-bottom: 11px;
    }

    .cta-box p {
      max-width: 650px;
      margin: 0 auto;
      color: #fff0ee;
      font-size: 15px;
    }

    /* 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 checkPop {
      0% { transform: scale(0.4); opacity: 0; }
      60% { transform: scale(1.15); opacity: 1; }
      100% { transform: scale(1); opacity: 1; }
    }

    /* 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);
    }

    .info-list .info-item:nth-child(2) { transition-delay: 0.08s; }
    .info-list .info-item:nth-child(3) { transition-delay: 0.16s; }

    .support-app-grid .support-app-card:nth-child(2) { transition-delay: 0.1s; }
    .support-app-grid .support-app-card:nth-child(3) { transition-delay: 0.2s; }

    /* 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%;
    }

    /* Hero animated particles */
    .contact-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; }

    .contact-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;
    }

    /* Info items */
    .info-item {
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .info-item:hover {
      transform: translateX(4px);
      border-color: #f45145;
    }

    .response-box {
      transition: box-shadow 0.3s ease;
    }

    .response-box:hover {
      box-shadow: -3px 0 0 0 #f45145 inset, 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    /* Form polish */
    .contact-form-wrap {
      transition: box-shadow 0.3s ease;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      transform: translateY(-1px);
    }

    .form-group label {
      transition: color 0.2s ease;
    }

    .form-group:focus-within label {
      color: #f45145;
    }

    /* Submit button shine + press feedback */
    .submit-button {
      position: relative;
      overflow: hidden;
    }

    .submit-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);
    }

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

    .submit-button:active {
      transform: translateY(0) scale(0.98);
    }

    /* Support app cards */
    .support-app-card {
      position: relative;
      overflow: hidden;
    }

    .support-app-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 3px;
      background: #f45145;
      transition: width 0.3s ease;
    }

    .support-app-card:hover::before {
      width: 100%;
    }

    .support-app-card:hover {
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    }

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

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

    .support-app-card a {
      display: inline-flex;
      align-items: center;
      transition: 0.2s ease;
    }

    .support-app-card a:hover {
      gap: 4px;
      color: #ff675d;
    }

    /* CTA box */
    .cta-box {
      position: relative;
      overflow: hidden;
    }

    .cta-box::before,
    .cta-box::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
    }

    .cta-box::before {
      width: 260px;
      height: 260px;
      right: -110px;
      top: -150px;
      animation: floatBlob 13s ease-in-out infinite;
    }

    .cta-box::after {
      width: 190px;
      height: 190px;
      left: -80px;
      bottom: -120px;
      animation: floatBlob 16s ease-in-out infinite reverse;
    }

    .cta-box h2,
    .cta-box p {
      position: relative;
      z-index: 2;
    }

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

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

    /* Toast-style success confirmation (shown after fake submit) */
    .form-success {
      display: none;
      align-items: center;
      gap: 10px;
      background: #eafbea;
      border: 1px solid #b7e6b7;
      color: #1f7a1f;
      padding: 12px 16px;
      grid-column: 1 / -1;
      font-size: 13px;
      font-weight: 700;
    }

    .form-success.is-visible {
      display: flex;
    }

    .form-success .check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #1f7a1f;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      flex-shrink: 0;
      animation: checkPop 0.4s ease;
    }

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


    /* RESPONSIVE */

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .support-app-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;
      }

      .contact-hero {
        padding: 68px 0 64px;
      }

      .contact-hero h1 {
        font-size: 40px;
      }

      .contact-section {
        padding: 65px 0;
      }

      .contact-info,
      .contact-form-wrap {
        padding: 27px 22px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-group.full,
      .form-note,
      .submit-row {
        grid-column: auto;
      }

      .submit-row {
        flex-direction: column;
        align-items: stretch;
      }

      .submit-button {
        width: 100%;
      }

      .privacy-note {
        max-width: none;
        text-align: left;
      }

      .apps-support {
        padding: 65px 0;
      }

      .footer-top,
      .footer-bottom {
        flex-direction: column;
      }

      .footer-links {
        grid-template-columns: repeat(2, 1fr);
      }
    }

