@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-light: #ffffff;
    --bg-subtle: #f8fafc;
    --primary: #2563eb; /* Royal Blue */
    --primary-hover: #1d4ed8;
    --text-main: #0f172a; /* Slate 900 */
    --text-dim: #64748b; /* Slate 500 */
    --border: #e2e8f0;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .outfit {
    font-family: 'Outfit', sans-serif;
}

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

/* Header */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-btn {
    background: var(--primary);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.nav-btn:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-md);
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, #f1f5f9 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

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

/* Ticker */
.ticker {
    background: var(--bg-subtle);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ticker-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.ticker-item h3 { font-size: 2rem; color: var(--primary); margin-bottom: 0.25rem; }
.ticker-item p { font-size: 0.85rem; text-transform: uppercase; color: var(--text-dim); font-weight: 600; letter-spacing: 1px; }

/* Sections General */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.75rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-dim); font-size: 1.1rem; }

/* Features (Minimal Cards) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feat-unit {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feat-unit:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.feat-unit h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.feat-unit p { color: var(--text-dim); }

/* Pricing Table (Clean) */
.price-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.price-box {
    background: #fff;
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.price-box.popular {
    border-color: var(--primary);
    background: #eff6ff;
    transform: scale(1.05);
    z-index: 10;
}

.badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-box h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 1rem; }
.price-val { font-size: 3rem; font-weight: 800; color: var(--text-main); line-height: 1; }
.flash-val { display: block; margin-top: 0.5rem; color: var(--primary); font-weight: 700; margin-bottom: 2.5rem; }

.price-list { list-style: none; text-align: left; margin-bottom: 3rem; }
.price-list li { margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.75rem; }
.price-list li::before { content: '✓'; color: var(--primary); font-weight: 900; }

.btn-buy {
    width: 100%;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-main);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.price-box.popular .btn-buy, .btn-buy:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Proof Slider */
.proof-wrap {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.proof-inner {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.proof-inner img {
    height: 350px;
    margin: 0 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rev-card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg-subtle);
}

.rev-card p { font-style: italic; margin-bottom: 2rem; color: var(--text-main); }
.rev-user { display: flex; align-items: center; gap: 1rem; }
.user-avatar { width: 45px; height: 45px; background: #cbd5e1; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; }
.rev-user h4 { font-size: 1rem; }
.rev-user span { font-size: 0.8rem; color: var(--text-dim); }

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #0f172a;
    color: #fff;
}

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

.foot-desc p { color: #94a3b8; font-size: 0.95rem; margin-top: 1.5rem; line-height: 1.8; }
.foot-col h4 { margin-bottom: 2rem; font-size: 1.1rem; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 1rem; }
.foot-col a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: var(--transition); }
.foot-col a:hover { color: #fff; }

.foot-bot {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 40px;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .price-table, .card-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { margin: 0 auto 2.5rem; }
    .hero-img { margin: 0 auto; }
}

@media (max-width: 768px) {
    .price-table, .card-grid, .review-grid, .foot-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-text h1 { font-size: 3rem; }
}
