/* ToolMate AI — Landing Page Styles */

:root {
    --brand: #2E5090;
    --brand-dark: #1B3A5C;
    --brand-light: #4472C4;
    --accent: #fb4c2f;
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #ffffff;
    --bg-grey: #f7f8fa;
    --bg-dark: #1B3A5C;
    --border: #e0e0e0;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-dark);
}

.logo-ai {
    color: var(--accent);
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d43a1f;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 18px; }

.btn-white {
    background: #fff;
    color: var(--brand-dark);
}

.btn-white:hover {
    background: #f0f0f0;
    color: var(--brand-dark);
}

/* Hero */
.hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-grey) 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--brand-dark);
    max-width: 700px;
    margin: 0 auto 24px;
}

.hero-sub {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-cta { margin-top: 32px; }

.hero-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-grey {
    background: var(--bg-grey);
}

.section-dark {
    background: var(--bg-dark);
    color: #fff;
}

.section-dark h2 {
    color: #fff;
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: var(--brand-dark);
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Cards */
.card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Product cards */
.product-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--accent);
    position: relative;
}

.product-label {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.product-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.product-card ul {
    list-style: none;
    padding: 0;
}

.product-card li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text);
}

.product-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Pricing */
.pricing-box {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--brand);
}

.price-tag {
    font-size: 56px;
    font-weight: 800;
    color: var(--brand-dark);
}

.price-tag span {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
}

.price-desc {
    font-size: 18px;
    color: var(--text-light);
    margin: 8px 0 24px;
}

.price-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.price-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.price-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #16a765;
    font-weight: 700;
    font-size: 16px;
}

.price-compare {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.price-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.step p {
    color: var(--text-light);
    font-size: 15px;
}

/* Stats */
.stat-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* FAQ */
.faq {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.faq-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* CTA Section */
.section-dark .cta-sub {
    max-width: 600px;
    margin: -24px auto 32px;
    font-size: 18px;
    opacity: 0.9;
    text-align: center;
}

.cta-actions {
    text-align: center;
}

.cta-or {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.8;
}

.cta-or a {
    color: #fff;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    text-align: center;
}

.footer p {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.footer-legal {
    margin-top: 16px;
    font-size: 12px;
}

.footer-legal a {
    color: var(--text-light);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 16px; }
    .section h2 { font-size: 28px; }
    .grid-3, .steps { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .pricing-box { padding: 32px 24px; }
    .price-tag { font-size: 42px; }
}

@media (max-width: 480px) {
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 26px; }
    .section { padding: 60px 0; }
    .section h2 { font-size: 24px; }
    .btn-lg { padding: 14px 28px; font-size: 16px; }
    .pricing-box { padding: 24px 16px; }
    .price-tag { font-size: 36px; }
    .stat-number { font-size: 32px; }
}

/* Privacy & Terms pages */
.legal-page {
    max-width: 800px;
    margin: 100px auto 60px;
    padding: 0 24px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 32px;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 20px;
    color: var(--brand-dark);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page h3 {
    font-size: 16px;
    color: var(--brand-dark);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-page p, .legal-page li {
    color: var(--text-light);
    font-size: 15px;
}

.legal-page ul {
    padding-left: 24px;
    margin: 8px 0;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.legal-page th, .legal-page td {
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-align: left;
}

.legal-page th {
    background: var(--bg-grey);
    font-weight: 600;
    color: var(--brand-dark);
}
