*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue:        #1d4ed8;
    --blue-dark:   #1e3a8a;
    --blue-light:  #eff6ff;
    --orange:      #f97316;
    --orange-dark: #ea6c00;
    --orange-light:#fff7ed;
    --gray-50:     #f9fafb;
    --gray-100:    #f3f4f6;
    --gray-200:    #e5e7eb;
    --gray-400:    #9ca3af;
    --gray-600:    #4b5563;
    --gray-800:    #1f2937;
    --gray-900:    #111827;
    --white:       #ffffff;
    --radius:      12px;
    --shadow:      0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg:   0 10px 40px rgba(0,0,0,0.12);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 800;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-brand { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.logo-sub { font-size: 11px; color: var(--gray-400); }
.nav { display: flex; gap: 24px; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--blue); }
.header-cta {
    padding: 8px 20px;
    background: var(--blue);
    color: white;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.header-cta:hover { background: var(--blue-dark); }

@media (max-width: 768px) {
    .nav { display: none; }
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}
.hero-badge {
    display: inline-block;
    background: rgba(249,115,22,0.2);
    color: #fb923c;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    border: 1px solid rgba(249,115,22,0.3);
}
.hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}
.highlight {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
    padding: 14px 28px;
    background: var(--orange);
    color: white;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary {
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}
.stat { text-align: center; }
.stat-number { display: block; font-size: 24px; font-weight: 800; color: white; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* HERO VISUAL */
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.visual-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
}
.visual-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.visual-icon { font-size: 28px; margin-bottom: 8px; }
.visual-text { font-size: 13px; font-weight: 600; color: white; margin-bottom: 8px; }
.visual-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    display: inline-block;
}
.card-1 .visual-badge { background: rgba(34,197,94,0.2); color: #4ade80; }
.card-2 .visual-badge, .card-3 .visual-badge, .card-4 .visual-badge {
    background: rgba(249,115,22,0.2);
    color: #fb923c;
}

/* SECTIONS */
.tools, .pricing, .why { padding: 80px 0; }
.tools { background: var(--gray-50); }
.pricing { background: var(--white); }
.why { background: var(--blue-dark); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--gray-600); max-width: 500px; margin: 0 auto; }

/* TOOLS GRID */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tools-grid { grid-template-columns: 1fr; } }

.tool-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.tool-card.featured { border-color: var(--blue); border-width: 2px; }
.tool-card.coming-soon { opacity: 0.8; }

.tool-card-header { display: flex; align-items: center; justify-content: space-between; }
.tool-icon { font-size: 32px; }
.tool-status {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}
.tool-status.live { background: #dcfce7; color: #16a34a; }
.tool-status.soon { background: var(--orange-light); color: var(--orange); }

.tool-name { font-size: 16px; font-weight: 700; color: var(--gray-900); }
.tool-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; flex: 1; }

.tool-features { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 999px;
}
.tool-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: var(--blue);
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
}
.tool-btn:hover { background: var(--blue-dark); }
.tool-btn-disabled {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--gray-100);
    color: var(--gray-400);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: not-allowed;
    margin-top: auto;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
}
.pricing-card.popular {
    border-color: var(--blue);
    border-width: 2px;
    transform: scale(1.03);
}

.pricing-card.disabled {
    opacity: 0.45;
    filter: grayscale(1);
    pointer-events: none;
    transform: none !important;
    border-color: var(--gray-200) !important;
    border-width: 1px !important;
}

.pricing-card.disabled .popular-badge {
    background: var(--gray-400) !important;
}

.pricing-card.disabled .pricing-price {
    color: var(--gray-400) !important;
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
}
.pricing-name { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.pricing-price span { font-size: 14px; font-weight: 400; color: var(--gray-400); }
.pricing-desc { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 13px; color: var(--gray-600); padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.pricing-btn-free {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.pricing-btn-free:hover { background: var(--blue); color: white; }
.pricing-btn-pro {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: var(--gray-100);
    color: var(--gray-400);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: not-allowed;
}

/* WHY */
.why .section-title { color: white; }
.why .section-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* FOOTER */
.footer { background: #0f172a; padding: 48px 0 24px; }
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 8px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}


.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-light);
    padding: 14px 24px;
    border-radius: var(--radius);
}

.pricing-card.disabled {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
}