* {
    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;
    color: #333;
    line-height: 1.6;
}

/* Gradient background matching the app */
.gradient-bg {
    background: linear-gradient(135deg, rgb(102, 127, 255) 0%, rgb(153, 102, 255) 100%);
    color: white;
}

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

/* Header */
header {
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 24px;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 16px;
    opacity: 0.9;
}

 .app-icon {
      width: 256px;
      height: 256px;
      border-radius: 58px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      margin: 0 auto;
      display: block;
  }
  
  .app-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

.cta-button {
    display: inline-block;
    background: white;
    color: rgb(102, 127, 255);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.secondary-button {
    background: rgba(255,255,255,0.2);
    color: white;
    margin-left: 15px;
}

.secondary-button:hover {
    background: rgba(255,255,255,0.3);
}

/* Features Section */
.features {
    background: white;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(102, 127, 255) 0%, rgb(153, 102, 255) 100%);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 16px;
}

/* How It Works Section */
.how-it-works {
    background: #f8f9fa;
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(102, 127, 255) 0%, rgb(153, 102, 255) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    font-size: 15px;
}

/* Screenshot Section */
.screenshots {
    background: white;
    padding: 80px 0;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.screenshot {
      width: 250px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      background: #fff;
  }

  .screenshot img {
      width: 100%;
      height: auto;
      display: block;
  }

/* Pricing Section */
.pricing {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 40px auto 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgb(102, 127, 255) 0%, rgb(153, 102, 255) 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
    color: white;
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    color: rgb(102, 127, 255);
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
    color: #666;
}

.pricing-card li:before {
    content: "✓ ";
    color: rgb(102, 127, 255);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-card.featured li:before {
    color: white;
}

/* Content Section (for legal pages) */
.content {
    background: white;
    padding: 60px 0;
}

.content .container {
    max-width: 900px;
}

.content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: rgb(102, 127, 255);
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.content p {
    margin-bottom: 15px;
    color: #555;
}

.content ul, .content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.content li {
    margin-bottom: 10px;
    color: #555;
}

.content strong {
    color: #333;
}

.content a {
    color: rgb(102, 127, 255);
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 127, 255, 0.3);
    transition: border-color 0.3s;
}

.content a:hover {
    border-bottom-color: rgb(102, 127, 255);
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid rgb(102, 127, 255);
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.caps-text {
    text-transform: uppercase;
    font-weight: 600;
}

hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 40px 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

.footer-links {
    margin-bottom: 20px;
}

.copyright {
    opacity: 0.6;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-button {
        display: block;
        margin: 10px auto;
    }

    .secondary-button {
        margin-left: 0;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    header .container {
        flex-direction: column;
    }

    .content h2 {
        font-size: 26px;
    }

    .content h3 {
        font-size: 20px;
    }
}
