/* General */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #D8BFFD, #E6C9FF); /* lilac gradient */
    min-height: 100vh;
  }
  body > *:not(.site-header) {
    padding-top: 70px; /* adjust based on header height */
  }
  .site-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 1rem;
    text-align: center;
    background: transparent; /* keep lilac gradient visible */
  }
  .header-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
/* Logo / brand */
  .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .brand-icon {
    width: 70px;   /* slightly bigger logo */
    height: auto;
    object-fit: contain;
  }

  .brand-text {
    font-size: 3.5rem;
    font-weight: 700;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Hero */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1rem 5rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta {
    margin-top: 2rem;
    margin-bottom: -2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .hero-cta .app-store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .hero-cta .app-store-badge:hover {
    transform: scale(1.05);
  }

  .hero-cta .app-store-badge img {
    height: 50px;
    width: auto;
  }
  .cta:hover {
    transform: translateY(-3px);
    background: #ffe5ed;
  }
  
  /* Features Section */
  section#features {
    padding: 4rem 0;
    text-align: center;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    color: #222;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1000px;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
  
  .feature {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
  }

  .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  }
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .feature h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
    font-size: 1.4rem;
  }

  .feature p {
    color: #555;
    line-height: 1.6;
  }
  /* iPhone showcase */
  .phone-showcase {
    display: flex;
    justify-content: center;
    margin: 2rem 0 5rem;
  }

  .iphone {
    position: relative;
    width: 280px;
    height: 580px;
    background: #222;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border: 1px solid #444;
    overflow: hidden;
  }

  .iphone-notch {
    position: absolute;
    width: 100px;
    height: 25px;
    background: #222;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
  }

  .iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }

  .iphone-button {
    position: absolute;
    width: 110px;
    height: 5px;
    background: #444;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
  }

  /* CTA Section */
  .cta-section {
    text-align: center;
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
  }

  .cta-section p {
    color: #555;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
  }

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

  .app-store-badge {
    display: inline-block;
  }

  .app-store-badge img {
    height: 50px;
    transition: transform 0.3s ease;
  }

  .app-store-badge img:hover {
    transform: scale(1.05);
  }

/* Policy Pages Styling */
.page-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

/* Contact Page Styling */
  .contact-content, .thanks-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 20px;
  }

  .contact-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .contact-form-container {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin: 0 auto;
    max-width: 600px;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-weight: 500;
    color: #444;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
  }

  .submit-button {
    background: #222;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: lowercase;
    font-weight: 500;
    margin-top: 1rem;
    align-self: center;
  }

  .submit-button:hover, .back-button:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: #222;
  }

  .copyright {
    color: #999;
    font-size: 0.9rem;
  }
  
/* Media Queries */
  @media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .brand-icon {
        width: 28px;
        height: 28px;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    
    .hero {
        padding: 1rem 1rem;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1.6rem;
        margin-top: 0;
        margin-bottom: 0.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .reviews-image img {
        max-width: 130px;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
        margin-bottom: 0;
        flex-wrap: wrap;
    }
    
    .hero-cta .app-store-badge img {
        height: 40px;
    }
    
    .features {
        flex-direction: column;
    }
    
    .feature {
        margin-bottom: 1.5rem;
    }
  }

  @media (max-width: 768px) {    
    .brand-icon {
        height: 32px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 10px;
    }

    .hero {
        padding: 1rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.1rem;
        white-space: normal;
        padding: 0;
    }
    
    .tagline {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 0.8rem;
    }
    
    .reviews-image img {
        max-width: 100px;
    }
    
    .hero-cta {
        gap: 0.5rem;
        padding-top: -1rem;
    }
    
    .hero-cta .app-store-badge img {
        height: 50px;
        width: auto
    }

    .app-store-badge img {
        height: 50px;
    }
  }

  @media (max-width: 480px) {
    .brand-icon {
        height: 28px;
    }
    .brand-text {
        font-size: 0.9rem;
    }
 }

/* Animation for subtle hover effects */
  @keyframes gentle-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  .iphone:hover {
    animation: gentle-float 3s ease infinite;
  }

  