

  .app-section {
    padding: 100px 20px;
    /* background: var(--bg-gradient); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
    /* --primary: rgb(72,205,207);
    --primary-dark: rgb(45,185,187);
    --primary-light: rgb(125,223,225);
    --accent: rgb(64,184,186);
    --bg-gradient: linear-gradient(135deg, #f0fafa 0%, #e5f8f8 100%);
    --card-bg: rgba(255, 255, 255, 0.7); */
  }

  .blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
  }

  .blur-circle-1 {
    width: 400px;
    height: 400px;
    background: rgba(72, 205, 207, 0.15);
    top: -100px;
    right: -100px;
  }

  .blur-circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(125, 223, 225, 0.15);
    bottom: -50px;
    left: -50px;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
  }

  .phones-container {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .phone-mockup {
    width: 280px;
    height: 580px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(72, 205, 207, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  .phone-mockup.primary {
    transform: perspective(1000px) rotateY(-15deg) translateX(40px);
  }

  .phone-mockup.secondary {
    transform: perspective(1000px) rotateY(15deg) translateX(-40px) translateY(40px);
  }

  .screen {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: #f8f9fa;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .notch {
    width: 120px;
    height: 25px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    /* transform: translateX(-50%); */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
  }

  .screen-content {
    padding: 1px 1px;
    background: linear-gradient(180deg, #f0fafa 0%, #ffffff 100%);
    height: 100%;
  }

  .content-right {
    flex: 1;
    padding: 60px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(72, 205, 207, 0.2);
  }
  .screen-content img{
    width: 100%;
  }

  h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
  }

  p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c7e7f;
    margin-bottom: 40px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    /* color:var(--steelblue-1); */
    /* color: black; */
    color: var(--gray-1);
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    background: var(--steelblue-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color:var(--gray-1); */
    color: black;
  }

  .store-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--steelblue-1) 0%, var(--steelblue-5) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    /* background-color: red; */
  }

  .store-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(72, 205, 207, 0.4);
  }

  .store-button svg {
    width: 24px;
    height: 24px;
  }

  .store-button span {
    font-weight: 500;
  }

  @media (max-width: 1200px) {
    .container {
      flex-direction: column;
      padding: 20px;
    }

    .phones-container {
      order: 2;
    }

    .content-right {
      order: 1;
      padding: 40px;
      text-align: center;
    }

    .features {
      justify-content: center;
    }

    .store-buttons {
      justify-content: center;
    }

    .phone-mockup {
      width: 240px;
      height: 500px;
    }

    .phone-mockup.primary {
      transform: perspective(1000px) rotateY(-15deg) translateX(20px);
    }

    .phone-mockup.secondary {
      transform: perspective(1000px) rotateY(15deg) translateX(-20px) translateY(20px);
    }
  }

  @media (max-width: 640px) {
    .features {
      grid-template-columns: 1fr;
    }

    .phone-mockup {
      width: 200px;
      height: 420px;
    }
  }