:root {
    --primary: #2dce89;
    --primary-light: #3ddb98;
    --primary-dark: #26b878;
    --primary-bg: #e8f8f0;
    --primary-border: #c5f0d9;
    --bg: #f5f7fa;
    --surface: #ffffff;
    --text: #1a1f36;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,.04), 0 2px 4px rgba(0,0,0,.04);
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --transition: 150ms ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ============ TOP NAVIGATION ============ */
.topnav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topnav-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topnav-brand:hover { color: var(--primary-dark); }

.topnav-brand-icon {
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.topnav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.topnav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: all var(--transition);
}

.topnav-link:hover {
    color: var(--text);
    background: var(--bg);
}

.topnav-link.active {
    color: var(--primary);
    background: var(--primary-bg);
    font-weight: 600;
}

.topnav-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topnav-username {
    font-size: .875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============ MAIN CONTENT ============ */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 48px;
}

.page-header {
    margin-bottom: 28px;
}

.page-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.page-header p {
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
}

/* ============ BUTTONS ============ */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 20px;
    transition: all var(--transition);
    border: 1px solid transparent;
    letter-spacing: 0.01em;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 6px 14px;
    font-size: .8rem;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45,206,137,.25);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary-border);
}

.btn-outline-primary:hover {
    background: var(--primary-bg);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.btn-success {
    background: #10b981;
    border-color: #10b981;
}

.btn-success:hover {
    background: #059669;
    border-color: #059669;
}

.btn-outline-secondary {
    border-color: var(--border);
    color: var(--text-muted);
}

.btn-outline-secondary:hover {
    background: var(--bg);
    color: var(--text);
}

.btn-danger {
    background: #ef4444;
    border-color: #ef4444;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.btn-outline-danger {
    color: #ef4444;
    border-color: #fecaca;
}

.btn-outline-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* ============ FORMS ============ */
.form-label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    padding: 10px 14px;
    font-size: .9rem;
    transition: all var(--transition);
    background: var(--surface);
    color: var(--text);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,206,137,.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-control-lg {
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.form-control-sm {
    padding: 6px 10px;
    font-size: .8rem;
    border-radius: 8px;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-text {
    color: var(--text-light);
    font-size: .8rem;
    margin-top: 4px;
}

/* ============ CARDS ============ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: box-shadow var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 24px;
    border-radius: var(--radius) var(--radius) 0 0 !important;
}

.card-header h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.card-body {
    padding: 24px;
}

.card-footer {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    padding: 16px 24px;
    border-radius: 0 0 var(--radius) var(--radius) !important;
}

/* ============ DASHBOARD CARDS (Stats) ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon-green { background: var(--primary-bg); color: var(--primary); }
.stat-icon-blue { background: #eff6ff; color: #3b82f6; }
.stat-icon-amber { background: #fffbeb; color: #f59e0b; }
.stat-icon-purple { background: #f5f3ff; color: #8b5cf6; }
.stat-icon-red { background: #fef2f2; color: #ef4444; }
.stat-icon-indigo { background: #eef2ff; color: #6366f1; }

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

/* ============ TABLES ============ */
.table {
    font-size: .875rem;
    margin-bottom: 0;
    border-collapse: collapse;
}

.table thead th {
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: var(--bg);
    border-bottom: 2px solid var(--border);
    padding: 12px 16px;
    vertical-align: middle;
}

.table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}

.table tbody tr:hover {
    background: #fafbfc;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tfoot td {
    padding: 14px 16px;
    font-weight: 600;
    border-top: 2px solid var(--border);
}

.table-light {
    background: var(--bg);
}

.table-primary {
    background: var(--primary-bg);
}

/* ============ BADGES ============ */
.badge {
    font-weight: 600;
    font-size: .75rem;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.badge-success { background: #d1fae5; color: #065f46; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-secondary { background: #f3f4f6; color: #374151; }
.badge-dark { background: #e5e7eb; color: #1f2937; }
.badge-primary { background: var(--primary-bg); color: #065f46; }

/* ============ ALERTS ============ */
.alert {
    border: none;
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: .875rem;
    font-weight: 500;
}

.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger { background: #fee2e2; color: #991b1b; }
.alert-warning { background: #fef3c7; color: #92400e; }
.alert-info { background: var(--primary-bg); color: #065f46; }

/* ============ LOGIN PAGE ============ */
.login-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf6 0%, #e8f8f0 50%, #f5f7fa 100%);
    padding: 24px;
}

.login-box {
    width: 100%;
    max-width: 420px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.login-box-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.login-box-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 28px;
}

/* ============ ORCAMENTO PUBLIC PAGE ============ */
.public-bg {
    background: var(--bg);
    min-height: 100vh;
    padding: 32px 24px;
}

.orcamento-doc {
    max-width: 780px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.orcamento-doc h4 {
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.orcamento-doc .company-name {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.orcamento-doc .company-phone {
    text-align: center;
    color: var(--text-muted);
    font-size: .875rem;
    margin-bottom: 24px;
}

.orcamento-doc .divider {
    border-top: 2px solid var(--border-light);
    margin: 20px 0;
}

.orcamento-logo-img {
    max-height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 16px;
}

/* ============ STATUS ACTION BUTTONS ============ */
.status-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.approve-btn {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 14px 40px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.approve-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45,206,137,.3);
}

.reject-btn {
    background: transparent;
    border: 1.5px solid #fca5a5;
    color: #dc2626;
    padding: 14px 40px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.reject-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

/* ============ DASHBOARD SUMMARY CARDS ============ */
.summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.summary-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-card-header h5 {
    font-size: .9rem;
    font-weight: 700;
    margin: 0;
}

.summary-card-body {
    padding: 20px;
}

/* ============ WELCOME / EMPTY STATE ============ */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: .4;
}

.empty-state h5 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 6px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 20px;
}

/* ============ AVATAR ============ */
.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .topnav-links { gap: 0; }
    .topnav-link { padding: 6px 10px; font-size: .8rem; }
    .main-wrapper { padding: 20px 16px 40px; }
    .orcamento-doc { padding: 24px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .login-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .status-actions { flex-direction: column; }
    .topnav-link { display: none; }
    .topnav-link.active { display: block; }
}

/* ============ LANDING PAGE ============ */
.landing-page {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

/* Landing Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: 64px;
    transition: all var(--transition);
}

.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.landing-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.landing-nav a {
    padding: 8px 16px;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: all var(--transition);
}

.landing-nav a:hover {
    color: var(--text);
    background: var(--bg);
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .landing-nav { display: none; }
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #1db370 0%, #2dce89 30%, #0ea56e 70%, #059669 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 104px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,.03);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-btn-primary {
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    padding: 16px 36px !important;
    font-size: 1.05rem !important;
    border-radius: var(--radius) !important;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    margin-top: 4px;
    font-weight: 500;
}

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

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

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

/* Before/After */
.before-after {
    padding: 80px 0;
}

.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    font-size: .9rem;
    line-height: 1.7;
}

.comparison-bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.comparison-bad h4 {
    color: #dc2626;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.comparison-good {
    background: var(--primary-bg);
    border: 1px solid var(--primary-border);
}

.comparison-good h4 {
    color: var(--primary-dark);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.comparison-arrow {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
}

.comparison-tag {
    display: inline-block;
    background: rgba(220,38,38,.1);
    color: #dc2626;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    margin-top: 12px;
}

.comparison-tag-good {
    background: rgba(45,206,137,.15);
    color: var(--primary-dark);
}

/* Pricing */
.pricing-section {
    padding: 80px 0;
    background: var(--surface);
}

.pricing-start-free {
    text-align: center;
    padding: 16px 24px;
    margin: 0 auto 36px;
    max-width: 600px;
    background: var(--primary-bg);
    border-radius: var(--radius);
    font-size: .95rem;
    color: var(--primary-dark);
    border: 1px solid var(--primary-border);
}

.pricing-start-free a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 520px;
}

.pricing-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}

.pricing-popular:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px var(--primary), 0 12px 32px rgba(45,206,137,.15);
}

.pricing-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 24px rgba(45,206,137,.2);
    background: linear-gradient(180deg, #fafffe 0%, #f0fdf6 100%);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.08); }
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: .85rem;
    margin: 0;
}

.pricing-price {
    margin: 24px 0;
    position: relative;
}

.pricing-old-price {
    display: block;
    font-size: .85rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 600;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: top;
    position: relative;
    top: -6px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-cents {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: top;
}

.price-period {
    display: block;
    font-size: .8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: .9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: .85rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-disabled {
    color: var(--text-light) !important;
}

.pricing-disabled::before {
    content: '×' !important;
    color: var(--text-light) !important;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1db370 0%, #2dce89 100%);
    text-align: center;
}

/* Footer */
.landing-footer {
    padding: 40px 0;
    text-align: center;
    background: var(--bg);
    font-size: .85rem;
    color: var(--text-muted);
}

/* Landing responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { gap: 24px; }
    .section-title { font-size: 1.6rem; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-popular { transform: none; }
    .pricing-popular:hover { transform: none; }
    .comparison-grid { flex-direction: column; }
    .comparison-arrow { transform: rotate(90deg); }
}
