:root {
    --co-primary: #111828;
    --co-primary-dark: #0d1320;
    --co-primary-light: #edf2ff;
    --co-accent: #1E3A8A;
    --co-accent-hover: #162d6e;
    --co-green: #22c55e;
    --co-green-light: #dcfce7;
    --co-text: #111828;
    --co-text-secondary: #5a5b6a;
    --co-text-muted: #8b8c9a;
    --co-bg: #ffffff;
    --co-bg-light: #f3f4f6;
    --co-bg-blue-tint: #f2f5ff;
    --co-border: #e5e7eb;
    --co-border-light: #f0f1f5;
    --co-dark-bg: #111827;
    --co-shadow-sm: 0 1px 3px rgba(17, 24, 40, 0.06);
    --co-shadow-md: 0 4px 16px rgba(17, 24, 40, 0.08);
    --co-shadow-lg: 0 8px 32px rgba(17, 24, 40, 0.10);
    --co-shadow-xl: 0 16px 48px rgba(17, 24, 40, 0.12);
    --co-radius-sm: 8px;
    --co-radius-md: 12px;
    --co-radius-lg: 16px;
    --co-radius-xl: 20px;
    --co-font-heading: 'Plus Jakarta Sans', sans-serif;
    --co-font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--co-font-body);
    color: var(--co-text);
    background: var(--co-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--co-font-heading);
}

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

.btn-co-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--co-radius-sm);
    font-family: var(--co-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--co-primary);
    color: #fff;
}

.btn-co-primary:hover {
    background: var(--co-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--co-shadow-md);
}

.btn-co-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--co-radius-sm);
    font-family: var(--co-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--co-accent);
    color: #fff;
}

.btn-co-accent:hover {
    background: var(--co-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--co-shadow-md);
}

.btn-co-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--co-radius-sm);
    font-family: var(--co-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--co-text-secondary);
}

.btn-co-ghost:hover {
    color: var(--co-primary);
    background: var(--co-bg-light);
}

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

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--co-border-light);
    transition: box-shadow 0.3s;
}

.site-nav.scrolled {
    box-shadow: var(--co-shadow-md);
}

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

.site-nav .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--co-text);
}

.site-nav .nav-logo .logo-svg {
    height: 44px;
    width: auto;
}

.site-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav .nav-links a {
    text-decoration: none;
    color: var(--co-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.site-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.site-nav .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--co-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--co-border);
    box-shadow: var(--co-shadow-lg);
    z-index: 1029;
    padding: 16px 24px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--co-text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--co-border-light);
}

.mobile-nav a:last-child {
    border-bottom: 0;
}

.section-hero {
    padding: 140px 0 80px;
    overflow: hidden;
}

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

.section-hero .hero-content {
    max-width: 520px;
}

.section-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--co-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-hero p {
    font-size: 1.1rem;
    color: var(--co-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    width: 100%;
    background: var(--co-bg-light);
    border: 1px solid var(--co-border);
    border-radius: var(--co-radius-lg);
    box-shadow: 0 8px 40px rgba(30, 58, 138, 0.18), 0 2px 12px rgba(30, 58, 138, 0.10);
    padding: 16px;
    position: relative;
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--co-border-light);
    margin-bottom: 12px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #f87171; }
.mockup-dot:nth-child(2) { background: #fbbf24; }
.mockup-dot:nth-child(3) { background: #34d399; }

.mockup-url {
    margin-left: 12px;
    background: #f1f2f6;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 0.75rem;
    color: var(--co-text-muted);
    flex: 1;
}

.mockup-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    min-height: 200px;
}

.mockup-sidebar {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 12px;
}

.mockup-sidebar-item {
    height: 8px;
    background: var(--co-border);
    border-radius: 4px;
    margin-bottom: 10px;
}

.mockup-sidebar-item.active {
    background: var(--co-primary-light);
}

.mockup-main {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
}

.mockup-main-line {
    height: 6px;
    background: var(--co-border-light);
    border-radius: 3px;
    margin-bottom: 8px;
}

.mockup-main-line:nth-child(1) { width: 60%; background: var(--co-primary-light); }
.mockup-main-line:nth-child(2) { width: 85%; }
.mockup-main-line:nth-child(3) { width: 70%; }

.mockup-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}

.mockup-main-block {
    height: 40px;
    background: var(--co-bg-light);
    border-radius: 6px;
}

.hero-stats-card {
    position: absolute;
    right: -10px;
    bottom: 20px;
    background: #fff;
    border-radius: var(--co-radius-md);
    box-shadow: var(--co-shadow-lg);
    padding: 20px;
    border: 1px solid var(--co-border-light);
    min-width: 220px;
    animation: floatCard 4s ease-in-out infinite;
}

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

.stats-label {
    font-size: 0.75rem;
    color: var(--co-text-muted);
    margin-bottom: 4px;
}

.stats-domain {
    font-size: 0.85rem;
    color: var(--co-text-secondary);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--co-border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-number {
    font-family: var(--co-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--co-text);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--co-text-muted);
    margin-top: 2px;
}

.stat-details {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.stat-tag {
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.stat-tag.accept { background: var(--co-green-light); color: #16a34a; }
.stat-tag.reject { background: #fef2f2; color: #ef4444; }
.stat-tag.custom { background: #fef9c3; color: #ca8a04; }

.section-logos {
    padding: 48px 0;
    border-top: 1px solid var(--co-border-light);
    border-bottom: 1px solid var(--co-border-light);
}

.section-logos .logos-label {
    text-align: center;
    font-size: 0.85rem;
    color: var(--co-text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

.section-logos .logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.section-logos .logo-item {
    font-family: var(--co-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--co-text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.section-logos .logo-item:hover {
    opacity: 1;
}

.section-logos .logo-item img,
.section-logos .logo-item svg {
    height: 22px;
    width: auto;
    flex-shrink: 0;
}

.co-section {
    padding: 80px 0;
}

.co-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.co-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--co-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.co-section-header p {
    font-size: 1rem;
    color: var(--co-text-secondary);
    line-height: 1.7;
}

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

.benefit-card {
    background: var(--co-bg);
    border: 1px solid var(--co-border);
    border-radius: var(--co-radius-lg);
    padding: 28px 24px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    border-color: #c7d0e0;
    box-shadow: var(--co-shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--co-primary-light);
    border-radius: var(--co-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #667ab2;
    font-size: 1.25rem;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.benefit-list li {
    font-size: 0.85rem;
    color: var(--co-text-secondary);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M13.3 4.3a1 1 0 0 1 0 1.4l-6 6a1 1 0 0 1-1.4 0l-3-3a1 1 0 1 1 1.4-1.4L6.6 9.6l5.3-5.3a1 1 0 0 1 1.4 0z' fill='%2322c55e'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

.benefit-preview {
    margin-top: 18px;
    background: var(--co-bg-light);
    border-radius: var(--co-radius-sm);
    height: 120px;
    min-height: 120px;
    border: 1px solid var(--co-border-light);
    overflow: hidden;
}

.benefit-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-dashboard {
    padding: 20px 24px;
}

.section-dashboard .dashboard-wrap {
    background: var(--co-dark-bg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px;
    color: #fff;
    overflow: hidden;
    border-radius: 24px;
}

.section-dashboard .dashboard-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-dashboard .dashboard-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-dashboard .dashboard-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.dashboard-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--co-radius-lg);
    padding: 24px;
    backdrop-filter: blur(8px);
}

.dash-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-title {
    font-family: var(--co-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}

.dash-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
}

.dash-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-row:last-child {
    border-bottom: 0;
}

.dash-row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--co-green);
}

.dash-row-name {
    flex: 1;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.dash-row-count {
    font-family: var(--co-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.dash-row-bar {
    width: 80px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.dash-row-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--co-accent), #667ab2);
    border-radius: 3px;
}

.section-features {
    background: var(--co-bg-blue-tint);
    margin-top: 40px;
}

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

.feature-card {
    background: var(--co-bg);
    border: 1px solid var(--co-border);
    border-radius: var(--co-radius-lg);
    padding: 28px 24px;
    transition: all 0.25s;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: var(--co-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: var(--co-shadow-sm);
    color: #667ab2;
    font-size: 1.35rem;
}

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

.feature-card p {
    font-size: 0.85rem;
    color: var(--co-text-secondary);
    line-height: 1.6;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 1.5px solid var(--co-border);
    border-radius: var(--co-radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: all 0.25s;
}

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

.pricing-card.featured {
    border-color: var(--co-accent);
    box-shadow: var(--co-shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--co-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    font-family: var(--co-font-heading);
}

.pricing-tier {
    font-family: var(--co-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--co-text);
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-amount {
    font-family: var(--co-font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--co-text);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--co-text-muted);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--co-text-secondary);
    margin-bottom: 24px;
}

.pricing-card .btn-co-primary,
.pricing-card .btn-co-accent {
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--co-radius-md);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--co-text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 18'%3E%3Cpath d='M15 5.25l-7.5 7.5L3.75 9' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-radius: var(--co-radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--co-primary-light);
    transition: background 0.2s;
}

.faq-item:hover {
    background: #e3eaff;
}

.faq-item.open {
    background: var(--co-primary-light);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--co-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--co-text);
    text-align: left;
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: var(--co-text-muted);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--co-text-secondary);
    line-height: 1.7;
}

.site-footer {
    background: var(--co-dark-bg);
    padding: 60px 0 32px;
    color: rgba(255,255,255,0.7);
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.site-footer .footer-brand .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 12px;
}

.site-footer .footer-brand .logo-svg {
    height: 44px;
    width: auto;
}

.site-footer .footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 220px;
}

.site-footer .footer-col h4 {
    font-family: var(--co-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.site-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-col li {
    margin-bottom: 10px;
}

.site-footer .footer-col a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-col a:hover {
    color: #fff;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.site-footer .footer-actions {
    display: flex;
    gap: 10px;
}

.site-footer .btn-footer-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--co-radius-sm);
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--co-font-body);
    cursor: pointer;
}

.site-footer .btn-footer-outline:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1024px) {
    .section-hero h1 { font-size: 2.5rem; }
    .section-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .section-hero .hero-content { max-width: 100%; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .section-dashboard .dashboard-inner { grid-template-columns: 1fr; }
    .site-footer .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .site-nav .nav-links { display: none; }
    .site-nav .hamburger { display: flex; }
    .section-hero { padding: 110px 0 60px; }
    .section-hero h1 { font-size: 2rem; }
    .co-section { padding: 60px 0; }
    .co-section-header h2 { font-size: 1.7rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .section-dashboard .dashboard-wrap { padding: 60px 32px; }
    .section-dashboard .dashboard-content h2 { font-size: 1.7rem; }
    .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .site-footer .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
    .site-nav .nav-actions .btn-co-ghost { display: none; }
    .section-hero h1 { font-size: 1.75rem; }
    .hero-stats-card { right: 0; min-width: 180px; padding: 14px; }
    .stat-number { font-size: 1.4rem; }
}
