/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --accent-green: #4ADE80;
    --accent-red: #EF4444;
    --background: #FFFFFF;
    --surface: #F5F5F5;
    --text-primary: #000000;
    --text-secondary: #6B7280;
    --border-radius: 24px;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-button-small {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 12px 24px;
    background-color: var(--surface);
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-secondary);
}

.flame-icon {
    font-size: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-icons .icon {
  background-color: #000;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: transform 0.25s ease, background-color 0.25s ease;
  text-decoration: none;
}

.social-icons .icon:hover {
  transform: scale(1.1);
  background-color: #111;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--surface);
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 64px;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

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

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Motivation Section */
.motivation {
    padding: 80px 0;
}

.motivation-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 48px;
    background: linear-gradient(135deg, var(--surface) 0%, white 100%);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.motivation-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.motivation-quote {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.3;
}

/* App Showcase Section */
.app-showcase {
    padding: 80px 0;
    background-color: var(--background);
}

.phone-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
}

.phone-item {
    flex: 1;
    max-width: 300px;
    transition: var(--transition);
}

.phone-item:hover {
    transform: translateY(-12px);
}

.phone-image {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.phone-item:hover .phone-image {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 968px) {
    .phone-gallery {
        gap: 24px;
    }
    
    .phone-item {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .phone-gallery {
        flex-direction: column;
        gap: 32px;
    }
    
    .phone-item {
        max-width: 350px;
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: var(--surface);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .motivation-card {
        padding: 48px 32px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        padding: 16px;
    }

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

    .cta-button {
        width: 100%;
        padding: 16px 32px;
    }
}

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

.hero-content,
.feature-card,
.motivation-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* TERMS CSS */

.container_terms {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.header_terms {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.logo {
    font-size: 48px;
    margin-bottom: 15px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 16px;
}

ul,
ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

li {
    margin-bottom: 12px;
    padding-left: 5px;
}

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

.important-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.important-box h3 {
    color: white;
    margin-top: 0;
}

.important-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.contact-box h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.contact-box a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 25px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    .logo {
        font-size: 36px;
    }
}


/* PRIVACY CSS */

.container_privacy {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.header_privacy {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.logo {
    font-size: 48px;
    margin-bottom: 15px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: #4a4a4a;
    font-size: 16px;
}

ul,
ol {
    margin-left: 25px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

li {
    margin-bottom: 12px;
    padding-left: 5px;
}

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

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.info-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.info-box h3 {
    color: #2e7d32;
    margin-top: 0;
}

.info-box p {
    color: #1b5e20;
    margin-bottom: 0;
}

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.warning-box h3 {
    color: #e65100;
    margin-top: 0;
}

.warning-box p {
    color: #e65100;
    margin-bottom: 0;
}

.table-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

th {
    background: #e9ecef;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.contact-box h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.contact-box a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .container {
        padding: 30px 25px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    .logo {
        font-size: 36px;
    }

    table {
        font-size: 14px;
    }
}
