    body {
      box-sizing: border-box;
    }

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

    html, body {
      width: 100%;
      height: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #0D0D0D;
      color: #ffffff;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .app-wrapper {
      width: 100%;
      min-height: 100%;
      position: relative;
    }

    /* Animated Background */
    .animated-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .gradient-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.15;
      animation: float 20s infinite ease-in-out;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
      top: -200px;
      right: -200px;
      animation-delay: 0s;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
      bottom: -100px;
      left: -100px;
      animation-delay: 7s;
    }

    .orb-3 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      animation-delay: 14s;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(50px, 50px) scale(1.1); }
      50% { transform: translate(-30px, 100px) scale(0.9); }
      75% { transform: translate(-50px, -50px) scale(1.05); }
    }

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 24px 60px;
      background: rgba(13, 13, 13, 0.7);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      animation: slideDown 0.8s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-100%);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -1px;
      background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .logo-image {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      object-fit: cover;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: none;
    }

    .logo-image.loaded {
      display: block;
    }

    .logo::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 40px;
      height: 2px;
      background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
    }

    .nav-menu {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: #ffffff;
      transition: width 0.3s ease;
    }

    .nav-link:hover {
      color: #ffffff;
    }

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

    /* Hero Section */
    .hero-section {
      width: 100%;
      min-height: 100%;
      padding: 140px 60px 100px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-container {
      max-width: 1400px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 40px;
      backdrop-filter: blur(10px);
      animation: fadeInScale 1s ease 0.2s both;
    }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.8);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .sparkle {
      display: inline-block;
      animation: sparkleRotate 3s infinite;
    }

    @keyframes sparkleRotate {
      0%, 100% { transform: rotate(0deg); }
      50% { transform: rotate(180deg); }
    }

    .hero-title {
      font-size: clamp(56px, 8vw, 120px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 32px;
      background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 50%, #a0a0a0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 1s ease 0.4s both;
      text-align: center;
    }

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

    .hero-subtitle {
      font-size: clamp(20px, 2.5vw, 28px);
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 56px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      line-height: 1.6;
      animation: fadeInUp 1s ease 0.6s both;
    }

    .app-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 80px;
      animation: fadeInUp 1s ease 0.8s both;
    }

    .app-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      text-decoration: none;
      color: #ffffff;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .app-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .app-btn:hover::before {
      left: 100%;
    }

    .app-btn:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
      border-color: rgba(255, 255, 255, 0.35);
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
                  0 0 60px rgba(255, 255, 255, 0.05);
    }

    .app-icon {
      width: 28px;
      height: 28px;
      line-height: 1;
    }

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

    .app-label {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    .app-store-name {
      font-size: 16px;
      font-weight: 700;
    }

    /* Phone Showcase */
    .phone-showcase {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      height: 700px;
      animation: fadeInUp 1.2s ease 1s both;
    }

    .phone-carousel {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 2000px;
    }

    .phone-item {
      position: absolute;
      width: 250px;
      height: 500px;
      transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      transform-style: preserve-3d;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    }

    .phone-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 24px;
    }

    /* Carousel positioning handled by JavaScript */

    /* Stats Section */
    .stats-section {
      width: 100%;
      padding: 120px 60px;
      background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
      position: relative;
    }

    .stats-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 60px;
    }

    .stat-card {
      text-align: center;
      padding: 48px 32px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      transition: all 0.5s ease;
      animation: fadeInUp 1s ease both;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .stat-card:nth-child(1) { animation-delay: 1.2s; }
    .stat-card:nth-child(2) { animation-delay: 1.4s; }
    .stat-card:nth-child(3) { animation-delay: 1.6s; }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .stat-card:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-12px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3),
                  0 0 80px rgba(255, 255, 255, 0.03);
    }

    .stat-card:hover::before {
      opacity: 1;
    }

    .stat-number {
      font-size: clamp(56px, 6vw, 80px);
      font-weight: 900;
      background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .stat-label {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    /* Features Section */
    .features-section {
      width: 100%;
      padding: 120px 60px;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 80px;
      animation: fadeInUp 1s ease both;
    }

    .section-title {
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 900;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .section-subtitle {
      font-size: clamp(18px, 2vw, 22px);
      color: rgba(255, 255, 255, 0.5);
      max-width: 700px;
      margin: 0 auto;
    }

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

    .feature-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 32px;
      padding: 56px;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 1s ease both;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .feature-card:nth-child(1) { animation-delay: 0.2s; }
    .feature-card:nth-child(2) { animation-delay: 0.4s; }
    .feature-card:nth-child(3) { animation-delay: 0.6s; }
    .feature-card:nth-child(4) { animation-delay: 0.8s; }

    .feature-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .feature-card:hover::after {
      opacity: 1;
    }

    .feature-card:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-12px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 
                  0 0 80px rgba(255, 255, 255, 0.05);
    }

    .feature-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin-bottom: 32px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
    }

    .feature-card:hover .feature-icon {
      transform: scale(1.1) rotateZ(5deg);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    }

    .feature-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #ffffff;
    }

    .feature-description {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
    }

    /* About Section */
    .about-section {
      width: 100%;
      padding: 120px 60px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
      position: relative;
      overflow: hidden;
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 100px;
      align-items: center;
    }

    .about-text {
      animation: fadeInUp 1s ease both;
    }

    .about-description {
      font-size: 19px;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 32px;
      font-weight: 400;
    }

    .about-description strong {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 56px;
    }
    
    @media (min-width: 1025px) {
      .about-features {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .about-feature-item {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 32px 28px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .about-feature-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .about-feature-item:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .about-feature-item:hover::before {
      opacity: 1;
    }

    .about-feature-icon {
      font-size: 40px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .about-feature-text h4 {
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .about-feature-text p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.6;
    }

    .about-image {
      animation: fadeInUp 1s ease 0.3s both;
    }

    .about-image-container {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 32px;
      padding: 0;
      backdrop-filter: blur(20px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
      aspect-ratio: 9 / 16;
      width: 100%;
      max-width: 350px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .about-main-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 32px;
      display: block;
    }

    .about-image-placeholder {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 40px;
    }

    /* Reviews Section */
    .reviews-section {
      width: 100%;
      padding: 120px 60px;
      background: rgba(255, 255, 255, 0.01);
      position: relative;
    }

    .reviews-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .review-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px;
      transition: all 0.5s ease;
      animation: fadeInUp 1s ease both;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .review-card:nth-child(1) { animation-delay: 0.2s; }
    .review-card:nth-child(2) { animation-delay: 0.4s; }
    .review-card:nth-child(3) { animation-delay: 0.6s; }

    .review-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .review-card:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-12px);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4),
                  0 0 60px rgba(255, 255, 255, 0.03);
    }

    .review-card:hover::before {
      opacity: 1;
    }

    .review-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
      font-size: 20px;
    }

    .review-text {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 24px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .review-author-info {
      flex: 1;
    }

    .review-author-name {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .review-author-title {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* Social Section */
    .social-section {
      width: 100%;
      padding: 120px 60px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
      position: relative;
    }

    .social-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    .social-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 32px;
      padding: 48px 32px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      animation: fadeInUp 1s ease both;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .social-card:nth-child(1) { animation-delay: 0.1s; }
    .social-card:nth-child(2) { animation-delay: 0.2s; }
    .social-card:nth-child(3) { animation-delay: 0.3s; }
    .social-card:nth-child(4) { animation-delay: 0.4s; }

    .social-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .social-card:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-16px) scale(1.05);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4),
                  0 0 100px rgba(255, 255, 255, 0.08);
    }

    .social-card:hover::before {
      opacity: 1;
    }

    .social-icon-large {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .social-icon-large svg {
      width: 40px;
      height: 40px;
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.4s ease;
    }

    .social-card:hover .social-icon-large {
      transform: scale(1.15) rotateZ(5deg);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }

    .social-card:hover .social-icon-large svg {
      color: #ffffff;
      transform: scale(1.1);
    }

    .social-info {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .social-name {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -0.01em;
    }

    .social-handle {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    .social-follow-btn {
      margin-top: 8px;
      padding: 12px 28px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      transition: all 0.3s ease;
    }

    .social-card:hover .social-follow-btn {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
      color: #ffffff;
    }

    /* CTA Section */
    .cta-section {
      width: 100%;
      padding: 160px 60px;
      position: relative;
    }

    /* Disclaimer Section */
    .disclaimer-section {
      width: 100%;
      padding: 120px 60px;
      background: rgba(255, 255, 255, 0.02);
      position: relative;
    }

    .disclaimer-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .disclaimer-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    .disclaimer-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 40px;
      text-align: left;
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease both;
    }

    .disclaimer-box:nth-child(1) { animation-delay: 0.1s; }
    .disclaimer-box:nth-child(2) { animation-delay: 0.2s; }
    .disclaimer-box:nth-child(3) { animation-delay: 0.3s; }
    .disclaimer-box:nth-child(4) { animation-delay: 0.4s; }
    .disclaimer-box:nth-child(5) { animation-delay: 0.5s; }
    .disclaimer-box:nth-child(6) { animation-delay: 0.6s; }

    .disclaimer-box:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-4px);
    }

    .disclaimer-subtitle {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .disclaimer-text {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.6);
    }

    .cta-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 40px;
      padding: 80px 60px;
      position: relative;
      overflow: hidden;
      animation: fadeInScale 1s ease both;
    }

    .cta-container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

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

    .cta-title {
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 900;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }

    .cta-subtitle {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 56px;
    }

    .contact-options {
      display: flex;
      justify-content: center;
      gap: 24px;
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .contact-card:hover {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    .contact-card:hover::before {
      opacity: 1;
    }

    .contact-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.4s ease;
    }

    .contact-card:hover .contact-icon {
      transform: scale(1.1) rotateZ(5deg);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    }

    .contact-info {
      text-align: center;
    }

    .contact-title {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .contact-description {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }

    /* Footer */
    .footer {
      width: 100%;
      padding: 80px 60px 40px;
      background: rgba(0, 0, 0, 0.3);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

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

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

    .footer-brand {
      font-size: 32px;
      font-weight: 900;
      background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }

    .footer-tagline {
      color: rgba(255, 255, 255, 0.4);
      font-size: 15px;
      line-height: 1.6;
    }

    .footer-column-title {
      font-size: 14px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-link {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: #ffffff;
    }

    .footer-bottom {
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copyright {
      color: rgba(255, 255, 255, 0.3);
      font-size: 14px;
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.25);
      color: #ffffff;
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .social-icon svg {
      transition: transform 0.3s ease;
    }

    .social-icon:hover svg {
      transform: scale(1.1);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .stats-grid,
      .features-grid,
      .reviews-grid,
      .about-content,
      .disclaimer-content {
        grid-template-columns: 1fr;
      }

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

      .phone-item:nth-child(1),
      .phone-item:nth-child(5) {
        display: none;
      }

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

    @media (max-width: 768px) {
      .nav,
      .hero-section,
      .stats-section,
      .features-section,
      .reviews-section,
      .cta-section,
      .disclaimer-section,
      .footer {
        padding-left: 24px;
        padding-right: 24px;
      }

      .nav {
        padding: 20px 24px;
      }

      .logo {
        font-size: 24px;
      }

      .nav-menu {
        gap: 16px;
      }

      .nav-link {
        font-size: 14px;
      }

      .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
      }

      .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 24px;
      }

      .hero-title {
        margin-bottom: 24px;
      }

      .hero-subtitle {
        margin-bottom: 40px;
      }

      .app-buttons {
        margin-bottom: 60px;
      }

      .app-btn {
        padding: 14px 24px;
        font-size: 15px;
      }

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

      .phone-showcase {
        height: 500px;
      }

      .phone-item {
        width: 260px;
        height: 520px;
      }

      .stats-section,
      .features-section,
      .about-section,
      .reviews-section,
      .disclaimer-section {
        padding-top: 80px;
        padding-bottom: 80px;
      }

      .stat-card,
      .feature-card,
      .review-card,
      .disclaimer-box {
        padding: 32px 24px;
      }

      .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
        margin-bottom: 24px;
      }

      .feature-title {
        font-size: 24px;
      }

      .feature-description {
        font-size: 16px;
      }

      .about-description {
        font-size: 17px;
      }

      .about-features {
        margin-top: 40px;
      }

      .about-feature-item {
        padding: 24px 20px;
      }

      .about-image-container {
        margin-top: 40px;
        min-height: 400px;
      }

      .social-section {
        padding: 80px 24px;
      }

      .social-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .social-card {
        padding: 40px 28px;
      }

      .cta-section {
        padding: 80px 24px;
      }

      .cta-container {
        padding: 56px 32px;
        border-radius: 32px;
      }

      .cta-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
      }

      .contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .contact-card {
        padding: 32px 24px;
      }

      .footer {
        padding: 60px 24px 32px;
      }

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

      .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .section-header {
        margin-bottom: 48px;
      }
    }

    /* Small mobile optimization */
    @media (max-width: 480px) {
      .nav {
        padding: 16px 20px;
      }

      .logo {
        font-size: 22px;
      }

      .hero-section {
        padding-top: 100px;
      }

      .phone-showcase {
        height: 450px;
      }

      .phone-item {
        width: 240px;
        height: 480px;
      }

      .app-buttons {
        flex-direction: column;
        width: 100%;
      }

      .app-btn {
        width: 100%;
        justify-content: center;
      }
    }