:root {
    --bg-dark: #000000;
    --bg-card: #1A1A1A;
    --bg-card-hover: rgba(255, 153, 63, 0.05); /* Brand Orange hover */
    --border-glass: #ff993f40; /* Orange with opacity */
    --text-main: #fff3eb; /* Brand Cream */
    --text-muted: #ffe8b6; /* Brand Gold */
    --accent-1: #ff993f; /* Orange */
    --accent-2: #feba66; /* Peach */
    --accent-3: #ffaaa7; /* Pink */
    --primary-btn: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --surface-1: #1A1A1A;
    --font-sans: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.text-gradient {
    background: linear-gradient(to right, var(--accent-1), var(--accent-2), var(--accent-1));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-primary {
    background: var(--primary-btn);
    color: #000; /* Dark text on bright button */
    box-shadow: 0 8px 24px rgba(255, 153, 63, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 153, 63, 0.4);
}

.btn-secondary {
    background: rgba(255, 153, 63, 0.05); /* Orange tint */
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 153, 63, 0.1);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo i {
    color: var(--accent-1);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
}

.glow-1 {
    top: -100px;
    left: -100px;
    background: var(--accent-1);
}

.glow-2 {
    bottom: -100px;
    right: -100px;
    background: var(--accent-2);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 153, 63, 0.1);
    color: var(--accent-1);
    border: 1px solid rgba(255, 153, 63, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stars {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.fill-star {
    fill: var(--accent-1);
    color: var(--accent-1);
    width: 16px;
    height: 16px;
}

/* App Mockup UI CSS representation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 320px;
    height: 650px;
    background: var(--surface-1);
    border-radius: 40px;
    border: 8px solid #2A2C38;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,153,63,0.2);
    position: relative;
    overflow: hidden;
    padding: 24px;
    padding-top: 48px;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

.floating-card i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,153,63,0.1);
    border-radius: 12px;
    color: var(--accent-1);
}

.floating-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.c1 {
    top: 15%;
    left: -60px;
    animation-delay: 0s;
}

.c2 {
    bottom: 25%;
    right: -40px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Features */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.feature-card {
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(255,153,63,0.3);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 153, 63, 0.2), rgba(254, 186, 102, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Plans Section */
.plans {
    padding: 100px 0;
    background: rgba(255, 153, 63, 0.02);
}

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

.plan-card {
    padding: 40px;
    border-radius: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 153, 63, 0.4);
}

.plan-card.popular {
    border-color: var(--accent-1);
    box-shadow: 0 0 30px rgba(255, 153, 63, 0.15);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-1);
    color: #000;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.plan-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--accent-1);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    width: 100%;
}

/* Terms and Conditions Layout */
.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: rgba(255, 153, 63, 0.03);
    border-bottom: 1px solid var(--border-glass);
}

.page-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
}

.page-content h2 {
    color: var(--text-main);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 153, 63, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-box h2, .cta-box p, .cta-box .cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 40px;
    background: rgba(0,0,0,0.4);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 32px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 80px; }
    .hero p { margin: 0 auto 40px; }
    .hero-cta { justify-content: center; }
    .stats-row { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand p { margin: 16px auto 0; }
    .cta-box h2 { font-size: 2rem; }
    .cta-box .cta-buttons { flex-direction: column; }
    
    .floating-card { display: none; }
}
