      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

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

      @keyframes slideInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* Scroll animations */
      .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      }

      .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .fade-in {
        opacity: 0;
        transition: opacity 0.8s ease-out;
      }

      .fade-in.visible {
        opacity: 1;
      }

      .slide-in-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      }

      .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
      }

      .slide-in-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      }

      .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
      }

      @keyframes pulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      @keyframes gradient {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Oxygen, Ubuntu, Cantarell, sans-serif;
        line-height: 1.6;
        color: #212121;
        background-color: #fff;
        overflow-x: hidden;
      }

      /* Header */
      header {
        background: transparent;
        padding: 2rem 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: background 0.3s ease, padding 0.3s ease,
          box-shadow 0.3s ease, border-bottom 0.3s ease;
        will-change: background, padding, box-shadow;
      }

      header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(240, 240, 240, 0.5);
        position: fixed;
      }

      .header-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-decoration: none;
        color: #1a1a1a;
      }

      .logo-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }

      .logo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .logo-text h1 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
      }

      .logo-text .tagline {
        font-size: 0.75rem;
        color: #666;
        font-weight: 400;
        margin: 0;
        opacity: 1;
      }

      .header-nav {
        display: flex;
        align-items: center;
        gap: 2.5rem;
      }

      .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
      }

      .nav-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

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

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #f57c00;
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      .header-cta {
        display: flex;
        gap: 0.75rem;
        align-items: center;
      }

      .header-download-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background: #000;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.3s ease;
        min-width: 140px;
      }

      .header-download-btn:hover {
        background: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      }

      .header-download-btn .app-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
      }

      .header-download-btn .app-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
      }

      .header-download-btn .app-text-small {
        font-size: 0.65rem;
        opacity: 0.9;
        margin-bottom: 1px;
      }

      .header-download-btn .app-text-large {
        font-size: 0.9rem;
        font-weight: 600;
      }

      /* Platform icons in download buttons should not animate */
      .app-download-btn svg.app-icon,
      .app-download-btn .app-icon {
        animation: none !important;
        transform: none !important;
      }

      .app-download-btn:hover svg.app-icon,
      .app-download-btn:hover .app-icon {
        animation: none !important;
        transform: none !important;
      }

      /* Main Content */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Hero Section */
      .hero {
        padding: 12rem 0 6rem;
        position: relative;
        background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 30%, #fff 70%);
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: -20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(255, 152, 0, 0.15) 0%,
          transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
      }

      .hero::after {
        content: "";
        position: absolute;
        bottom: -10%;
        left: -5%;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(245, 124, 0, 0.1) 0%,
          transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        position: relative;
        z-index: 1;
      }

      .hero-text {
        text-align: left;
      }

      .hero h2 {
        font-size: 3rem;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        font-weight: 800;
        letter-spacing: -1.5px;
        line-height: 1.1;
        position: relative;
        z-index: 2;
      }

      .hero h2 .highlight {
        background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
      }

      .hero p {
        font-size: 1.05rem;
        color: #666;
        margin-bottom: 3rem;
        line-height: 1.7;
        max-width: 550px;
        font-weight: 400;
      }

      .hero-phone {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .phone-mockup {
        width: 360px;
        height: auto;
        position: relative;
        z-index: 2;
        filter: drop-shadow(0 20px 60px rgba(245, 124, 0, 0.2));
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        transition: transform 0.3s ease;
      }

      .phone-mockup:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
        filter: drop-shadow(0 25px 70px rgba(245, 124, 0, 0.3));
      }

      .phone-mockup img {
        width: 100%;
        height: auto;
        border-radius: 30px;
      }

      /* How It Works Section */
      .how-it-works {
        padding: 8rem 0;
        background: #fafafa;
        position: relative;
      }

      .how-it-works-content {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        align-items: start;
      }

      .how-it-works-left {
        display: flex;
        flex-direction: column;
        padding-right: 2rem;
      }

      .how-it-works-phone {
        width: 340px;
        height: auto;
        margin-bottom: 2.5rem;
        filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.18));
        transition: transform 0.3s ease;
      }

      .how-it-works-phone:hover {
        transform: translateY(-5px);
      }

      .how-it-works-phone img {
        width: 100%;
        height: auto;
        border-radius: 28px;
      }

      .how-it-works-cta {
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
      }

      .how-it-works-cta p {
        font-size: 0.95rem;
        color: #666;
        margin-bottom: 1.75rem;
        line-height: 1.6;
      }

      .how-it-works-cta .btn {
        background: #000;
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
      }

      .how-it-works-cta .btn:hover {
        background: #1a1a1a;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      }

      .how-it-works-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: sticky;
        top: 120px;
        z-index: 1;
      }

      .how-it-works h2 {
        text-align: left;
        font-size: 2.8rem;
        color: #1a1a1a;
        margin-bottom: 1.25rem;
        font-weight: 800;
        letter-spacing: -1.5px;
        line-height: 1.2;
      }

      .how-it-works-intro {
        text-align: left;
        font-size: 1rem;
        color: #666;
        line-height: 1.7;
        margin-bottom: 3.5rem;
        font-weight: 400;
        max-width: 90%;
      }

      .steps-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
      }

      .step-card {
        background: white;
        padding: 2.25rem;
        border-radius: 18px;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05),
          0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.04);
      }

      .step-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07),
          0 10px 30px rgba(0, 0, 0, 0.12);
        border-color: rgba(245, 124, 0, 0.2);
      }

      .step-number {
        font-size: 2.75rem;
        font-weight: 900;
        color: #f57c00;
        margin-bottom: 1rem;
        line-height: 1;
        letter-spacing: -2px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          sans-serif;
      }

      .step-card h3 {
        font-size: 1.3rem;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
        font-weight: 700;
        line-height: 1.3;
      }

      .step-card p {
        color: #666;
        line-height: 1.65;
        font-size: 0.95rem;
        margin: 0;
      }

      /* Features Section */
      .features {
        padding: 8rem 0;
        background: white;
        position: relative;
      }

      .features-header {
        max-width: 1400px;
        margin: 0 auto 5rem;
        padding: 0 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .features-intro {
        font-size: 1rem;
        color: #666;
        line-height: 1.7;
      }

      .features h2 {
        font-size: 2.8rem;
        color: #1a1a1a;
        font-weight: 800;
        letter-spacing: -1.5px;
        line-height: 1.2;
        margin: 0;
        text-align: right;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
      }

      .feature-card {
        background: white;
        padding: 3rem 2.5rem;
        border-radius: 24px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        display: flex;
        flex-direction: column;
        min-height: 500px;
      }

      .feature-card:nth-child(1) {
        background: #fafafa;
      }

      .feature-card:nth-child(2) {
        background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
      }

      .feature-card:nth-child(3) {
        background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
        color: white;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      }

      .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
      }

      .feature-card:nth-child(3) .feature-icon-wrapper {
        background: rgba(255, 255, 255, 0.15);
      }

      .feature-icon {
        font-size: 2.5rem;
        display: block;
      }

      .feature-card h3 {
        color: #1a1a1a;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 700;
      }

      .feature-card:nth-child(3) h3 {
        color: white;
      }

      .feature-card p {
        color: #666;
        line-height: 1.7;
        font-size: 0.95rem;
        margin: 0 0 2rem 0;
      }

      .feature-card:nth-child(3) p {
        color: rgba(255, 255, 255, 0.9);
      }

      .feature-visual {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 2rem;
      }

      .feature-phone {
        width: 200px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: rotate(-5deg);
        transition: transform 0.3s ease;
      }

      .feature-card:hover .feature-phone {
        transform: rotate(0deg) scale(1.05);
      }

      .feature-card:nth-child(3) .feature-phone {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      }

      /* Screenshots Section */
      .screenshots {
        padding: 8rem 0;
        background: linear-gradient(180deg, #fff 0%, #fff5e6 50%, #fff 100%);
        position: relative;
      }

      .screenshots h2 {
        text-align: left;
        font-size: 2.8rem;
        color: #1a1a1a;
        margin-bottom: 4rem;
        font-weight: 800;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 60px;
        letter-spacing: -1.5px;
      }

      .screenshot-carousel-wrapper {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
      }

      .screenshot-carousel {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 2rem 0;
      }

      .screenshot-carousel::-webkit-scrollbar {
        display: none;
      }

      .screenshot-item {
        position: relative;
        flex: 0 0 280px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-style: preserve-3d;
      }

      .screenshot-item:hover {
        transform: translateY(-10px) scale(1.05);
      }

      .screenshot-frame {
        background: linear-gradient(145deg, #2c2c2c 0%, #1a1a1a 100%);
        border-radius: 25px;
        padding: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25),
          0 0 0 1px rgba(255, 255, 255, 0.1) inset, 0 2px 8px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
      }

      .screenshot-frame::before {
        content: "";
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 20px;
        background: #1a1a1a;
        border-radius: 0 0 12px 12px;
        z-index: 2;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }

      .screenshot-frame::after {
        content: "";
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        z-index: 2;
      }

      .screenshot-item:hover .screenshot-frame {
        box-shadow: 0 25px 60px rgba(245, 124, 0, 0.35),
          0 0 0 1px rgba(255, 255, 255, 0.15) inset,
          0 2px 8px rgba(0, 0, 0, 0.4);
      }

      .screenshot-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s ease;
      }

      .screenshot-item:hover img {
        transform: scale(1.02);
      }

      .screenshot-label {
        margin-top: 1.2rem;
        text-align: center;
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
      }

      .screenshot-label h3 {
        font-size: 0.9rem;
        color: #212121;
        font-weight: 600;
        margin-bottom: 0.25rem;
      }

      .screenshot-label p {
        font-size: 0.8rem;
        color: #757575;
        margin: 0;
      }

      .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        z-index: 10;
        font-size: 1.5rem;
        color: #f57c00;
      }

      .carousel-nav:hover {
        background: #f57c00;
        color: white;
        box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
        transform: translateY(-50%) scale(1.1);
      }

      .carousel-nav:active {
        transform: translateY(-50%) scale(0.95);
      }

      .carousel-nav.prev {
        left: 0;
      }

      .carousel-nav.next {
        right: 0;
      }

      .carousel-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        transform: translateY(-50%);
      }

      .carousel-nav:disabled:hover {
        background: white;
        color: #f57c00;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        transform: translateY(-50%);
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(135deg, #f57c00 0%, #ff9800 100%);
        color: white;
        padding: 8rem 0;
        position: relative;
        overflow: hidden;
      }

      .cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
      }

      .cta-content {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 6rem;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        position: relative;
        z-index: 1;
      }

      .cta-text {
        text-align: left;
      }

      .cta h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        font-weight: 800;
        text-align: left;
        color: white;
        letter-spacing: -1.5px;
        line-height: 1.2;
      }

      .cta-text p {
        font-size: 1.05rem;
        margin-bottom: 3rem;
        text-align: left;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
        font-weight: 400;
      }

      .cta-phone {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .cta .phone-mockup {
        width: 280px;
        filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
      }

      .cta::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 2px,
          transparent 2px
        );
        background-size: 60px 60px;
        animation: gradient 15s linear infinite;
        opacity: 0.4;
      }

      .cta .container {
        position: relative;
        z-index: 1;
      }

      .cta h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      }

      .cta p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        font-weight: 300;
      }

      .cta-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn {
        display: inline-block;
        padding: 1rem 2rem;
        background: white;
        color: #f57c00;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(245, 124, 0, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
      }

      .btn:hover::before {
        width: 300px;
        height: 300px;
      }

      .btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        background: #fff5e6;
      }

      .btn span {
        position: relative;
        z-index: 1;
      }

      .btn-secondary {
        background: transparent;
        color: white;
        border: 3px solid white;
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
      }

      .btn-secondary:hover {
        background: white;
        color: #f57c00;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
      }

      /* App Store Buttons */
      .app-download-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        background: #000;
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-width: 180px;
      }

      .app-download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        background: #1a1a1a;
      }

      .app-download-btn.white {
        background: white;
        color: #000;
      }

      .app-download-btn.white:hover {
        background: #f5f5f5;
      }

      /* Platform icons in download buttons - no animation */
      .app-download-btn .app-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        animation: none !important;
        transform: none !important;
      }

      .app-download-btn:hover .app-icon {
        animation: none !important;
        transform: none !important;
      }

      .app-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
      }

      .app-text-small {
        font-size: 0.7rem;
        opacity: 0.8;
        margin-bottom: 2px;
      }

      .app-text-large {
        font-size: 0.9rem;
        font-weight: 600;
      }

      /* Footer */
      footer {
        background: #fafafa;
        color: #1a1a1a;
        padding: 3rem 0;
        position: relative;
        border-top: 1px solid #e0e0e0;
      }

      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
      }

      .footer-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
      }

      .footer-left {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .footer-logo {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 0.25rem;
      }

      .copyright {
        font-size: 0.85rem;
        color: #666;
      }

      .footer-nav {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
      }

      .footer-nav a {
        color: #1a1a1a;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .footer-nav a:hover {
        color: #f57c00;
      }

      .footer-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .footer-social {
        display: flex;
        gap: 0.75rem;
      }

      .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .social-link:hover {
        background: #f57c00;
        transform: translateY(-2px);
      }

      .social-link svg {
        width: 18px;
        height: 18px;
      }

      .footer-terms {
        font-size: 0.85rem;
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-terms:hover {
        color: #f57c00;
      }

      /* Responsive */
      @media (max-width: 768px) {
        header {
          padding: 1.5rem 0;
        }

        header.scrolled {
          padding: 1rem 0;
        }

        .header-content {
          padding: 0 20px;
          flex-wrap: nowrap;
          gap: 1rem;
        }

        .logo-container {
          gap: 0.75rem;
          flex-shrink: 0;
        }

        .logo-icon {
          width: 36px;
          height: 36px;
        }

        .logo-text h1 {
          font-size: 1.2rem;
        }

        .logo-text .tagline {
          font-size: 0.65rem;
        }

        .header-nav {
          flex: 1;
          justify-content: flex-end;
          gap: 0.5rem;
        }

        .nav-links {
          display: none;
        }

        .header-cta {
          gap: 0.5rem;
          flex-shrink: 0;
        }

        .header-download-btn {
          min-width: auto;
          padding: 0.5rem 0.75rem;
          gap: 0.4rem;
        }

        .header-download-btn .app-text {
          display: none;
        }

        .header-download-btn .app-icon {
          width: 24px;
          height: 24px;
          margin: 0;
        }

        .hero {
          padding: 6rem 0 3rem;
        }

        .hero-content,
        .cta-content {
          grid-template-columns: 1fr;
          gap: 3rem;
          padding: 0 30px;
        }

        .hero-text,
        .cta-text {
          text-align: center;
        }

        .hero h2 {
          font-size: 2rem;
        }

        .hero p {
          max-width: 100%;
        }

        .features h2,
        .screenshots h2,
        .cta h2,
        .how-it-works h2 {
          font-size: 1.8rem;
          text-align: center;
          padding: 0 30px;
          margin-bottom: 2rem;
        }

        .how-it-works-intro {
          text-align: center;
          padding: 0 30px;
          margin-bottom: 3rem;
        }

        .features-header {
          grid-template-columns: 1fr;
          padding: 0 30px;
          gap: 2rem;
        }

        .features-grid {
          grid-template-columns: 1fr;
          padding: 0 30px;
          gap: 1.5rem;
        }

        .feature-card {
          min-height: auto;
          padding: 1.5rem 1.25rem;
        }

        .feature-card h3 {
          font-size: 1.2rem;
        }

        .feature-card p {
          font-size: 0.9rem;
        }

        .feature-phone {
          width: 150px;
        }

        .how-it-works-content {
          grid-template-columns: 1fr;
          gap: 3rem;
          padding: 0 30px;
        }

        .how-it-works-left {
          position: static;
          order: 2;
        }

        .how-it-works-right {
          order: 1;
          position: static;
        }

        .how-it-works h2 {
          text-align: center;
        }

        .how-it-works-intro {
          text-align: center;
        }

        .how-it-works-phone {
          width: 250px;
          margin: 0 auto 2rem;
        }

        .steps-container {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          padding: 0;
        }

        .step-card {
          padding: 1.5rem 1.25rem;
        }

        .step-number {
          font-size: 2rem;
        }

        .step-card h3 {
          font-size: 1.1rem;
        }

        .step-card p {
          font-size: 0.9rem;
        }

        .screenshot-carousel-wrapper {
          padding: 0 30px;
        }

        .phone-mockup {
          width: 280px;
          transform: none !important;
        }

        .cta {
          padding: 4rem 0;
        }

        .cta-buttons {
          justify-content: center !important;
        }

        .phone-mockup {
          width: 250px;
        }

        .cta .phone-mockup {
          width: 200px;
        }

        .app-download-btn {
          min-width: 160px;
          padding: 0.65rem 1.25rem;
          font-size: 0.85rem;
        }

        .app-icon {
          width: 20px;
          height: 20px;
        }

        .app-text-large {
          font-size: 0.9rem;
        }

        .footer-main {
          flex-direction: column;
          align-items: flex-start;
          gap: 2rem;
        }

        .footer-nav {
          flex-direction: column;
          gap: 1rem;
        }

        .footer-right {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
        }

        h1 {
          font-size: 2.5rem;
        }

        .app-icon {
          width: 100px;
          height: 100px;
        }

        .features {
          padding: 3rem 0;
        }

        .features-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
          margin-top: 2rem;
        }

        .feature-card {
          padding: 1.25rem 1rem;
        }

        .screenshot-carousel-wrapper {
          padding: 0 50px;
        }

        .screenshot-item {
          flex: 0 0 240px;
        }

        .carousel-nav {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
        }

        .carousel-nav.prev {
          left: 5px;
        }

        .carousel-nav.next {
          right: 5px;
        }
      }

      /* Privacy Policy Page Styles */
      .policy-hero {
        padding: 6rem 0 4rem;
        background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 30%, #fff 70%);
        position: relative;
        overflow: hidden;
      }

      .policy-hero-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 60px;
        text-align: center;
      }

      .policy-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 1rem;
        letter-spacing: -1.5px;
      }

      .policy-hero p {
        font-size: 1.1rem;
        color: #666;
        margin-top: 1rem;
      }

      .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 4rem 60px;
      }

      .last-updated {
        color: #757575;
        font-style: italic;
        margin-bottom: 2rem;
        padding: 1rem 1.5rem;
        background: #fff5e6;
        border-left: 4px solid #f57c00;
        border-radius: 8px;
        font-size: 0.95rem;
      }

      .intro {
        font-size: 1.05rem;
        color: #666;
        margin-bottom: 3rem;
        line-height: 1.8;
      }

      .container h2 {
        color: #1a1a1a;
        margin-top: 3rem;
        margin-bottom: 1rem;
        font-size: 2rem;
        font-weight: 800;
        position: relative;
        padding-bottom: 0.75rem;
        letter-spacing: -0.5px;
      }

      .container h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #f57c00, #ff9800);
        border-radius: 2px;
      }

      .container h3 {
        color: #f57c00;
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 1.3rem;
        font-weight: 700;
      }

      .container p {
        margin: 1rem 0;
        color: #666;
        line-height: 1.8;
        font-size: 0.95rem;
      }

      .container ul,
      .container ol {
        margin: 1rem 0;
        padding-left: 2rem;
      }

      .container li {
        margin: 0.8rem 0;
        color: #666;
        line-height: 1.8;
        font-size: 0.95rem;
      }

      .container li strong {
        color: #1a1a1a;
        font-weight: 600;
      }

      .container a {
        color: #f57c00;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
      }

      .container a:hover {
        color: #ff9800;
        border-bottom-color: #ff9800;
      }

      .contact {
        background: linear-gradient(135deg, #fff5e6 0%, #ffe0b2 100%);
        padding: 2rem;
        border-radius: 16px;
        margin-top: 3rem;
        border-left: 4px solid #f57c00;
        box-shadow: 0 4px 12px rgba(245, 124, 0, 0.1);
      }

      .contact p {
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 1rem;
        font-size: 1rem;
      }

      .contact ul {
        list-style: none;
        padding-left: 0;
      }

      .contact li {
        margin: 0.5rem 0;
      }

      .contact a {
        color: #f57c00;
        font-weight: 600;
      }

      .contact a:hover {
        color: #ff9800;
      }

      @media (max-width: 768px) {
        .policy-hero {
          padding: 4rem 0 3rem;
        }

        .policy-hero-content {
          padding: 0 30px;
        }

        .policy-hero h1 {
          font-size: 2rem;
        }

        .container {
          padding: 3rem 30px;
        }

        .container h2 {
          font-size: 1.6rem;
        }

        .container h3 {
          font-size: 1.2rem;
        }
      }
