:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --bg: #fafafa;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green: #10b981;
    --red: #ef4444;
    --orange: #f59e0b;
    --blue: #3b82f6;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}
.btn-ghost:hover {
    color: var(--primary);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--gray-100);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links .btn { margin-left: 8px; }

/* Hero */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

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

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-note {
    font-size: 14px;
    color: var(--gray-500);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}
.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}
.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:last-child { background: #28c840; }

.mockup-title {
    font-size: 13px;
    color: var(--gray-500);
}

.mockup-content {
    display: flex;
    min-height: 280px;
}

.mockup-sidebar {
    width: 140px;
    background: var(--gray-50);
    padding: 16px 12px;
    border-right: 1px solid var(--gray-200);
}

.sidebar-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 4px;
}
.sidebar-item.active {
    background: var(--primary);
    color: white;
}

.mockup-main {
    flex: 1;
    padding: 20px;
}

.mockup-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.mockup-stats .stat-card {
    flex: 1;
    background: var(--gray-50);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}
.mockup-stats .stat-card small {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 400;
}

.mockup-chart {
    height: 100px;
    background: linear-gradient(180deg, rgba(139,92,246,0.1) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
}
.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 2px;
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features h2, .pricing h2, .integrations h2, .cta-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 15px;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}
.pricing-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}
.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-600);
    vertical-align: top;
}
.pricing-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}
.pricing-price .period {
    font-size: 16px;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}
.pricing-features li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 15px;
}

/* Integrations */
.integrations {
    padding: 100px 0;
    background: var(--white);
}

.integrations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.integration-item {
    padding: 20px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
}
.integration-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}
.cta-section h2 {
    color: white;
}
.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
}
.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}
.cta-section .btn-primary:hover {
    background: var(--gray-100);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--gray-900);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
}
.footer-copy {
    color: var(--gray-400);
    font-size: 14px;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 40px 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.auth-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.auth-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: border-color 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-600);
}

.forgot-link {
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
}
.forgot-link:hover {
    text-decoration: underline;
}

.auth-switch {
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray-600);
}
.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-terms {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}
.auth-terms a {
    color: var(--primary);
}

/* Dashboard */
.dashboard-page {
    background: var(--gray-100);
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.2s;
}
.nav-item:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}
.nav-item.active {
    background: var(--primary);
    color: white;
}
.nav-icon { font-size: 18px; }

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--gray-100);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
.user-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
}
.user-store {
    font-size: 12px;
    color: var(--gray-500);
}

.main-content {
    flex: 1;
    margin-left: 260px;
    padding: 24px 32px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.dashboard-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}
.header-date {
    font-size: 14px;
    color: var(--gray-500);
}
.header-right {
    display: flex;
    gap: 12px;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
}

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.stat-icon.green { background: #d1fae5; }
.stat-icon.blue { background: #dbeafe; }
.stat-icon.purple { background: #ede9fe; }
.stat-icon.orange { background: #fef3c7; }

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}
.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.stat-trend {
    margin-left: auto;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}
.stat-trend.up {
    background: #d1fae5;
    color: #059669;
}
.stat-trend.down {
    background: #fee2e2;
    color: #dc2626;
}

.chart-card, .orders-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}
.link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.chart-legend {
    display: flex;
    gap: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.purple { background: var(--primary); }
.dot.gray { background: var(--gray-300); }

.chart-container {
    position: relative;
}
.chart-svg {
    width: 100%;
    height: auto;
}
.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 0;
    font-size: 13px;
    color: var(--gray-400);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}
.orders-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
}
.orders-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}
.order-id {
    font-weight: 600;
    color: var(--primary);
}
.order-amount {
    font-weight: 600;
}
.order-time {
    color: var(--gray-500);
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.status-badge.shipped {
    background: #d1fae5;
    color: #059669;
}
.status-badge.paid {
    background: #dbeafe;
    color: #2563eb;
}
.status-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

.alerts-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    height: fit-content;
}
.alerts-sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.alerts-list {
    margin-bottom: 32px;
}

.alert-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: 13px;
}
.alert-item.warning { background: #fef3c7; }
.alert-item.success { background: #d1fae5; }
.alert-item.info { background: #dbeafe; }
.alert-icon { font-size: 16px; }
.alert-text { color: var(--gray-700); }

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
}
.task-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}
.task-item:has(input:checked) span {
    text-decoration: line-through;
    color: var(--gray-400);
}

@media (max-width: 1200px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 36px; }
    .features-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
    .nav-links { display: none; }
    .sidebar { display: none; }
    .main-content { margin-left: 0; }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin Styles */
.admin-page {
    background: var(--gray-100);
    min-height: 100vh;
}

.admin-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-900);
}

.admin-main h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.admin-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat {
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.admin-stat.highlight {
    background: var(--primary);
}
.admin-stat.highlight .stat-number,
.admin-stat.highlight .stat-label {
    color: white;
}

.admin-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
}
.admin-stat .stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

.contacts-table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contacts-table {
    width: 100%;
    border-collapse: collapse;
}
.contacts-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.contacts-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    vertical-align: top;
}
.contacts-table tr:hover {
    background: var(--gray-50);
}
.contacts-table tr.new-row {
    background: #fef3c7;
}
.contacts-table tr.new-row:hover {
    background: #fde68a;
}

.date-cell {
    white-space: nowrap;
    color: var(--gray-500);
    font-size: 13px;
}
.message-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contacts-table a {
    color: var(--primary);
    text-decoration: none;
}
.contacts-table a:hover {
    text-decoration: underline;
}

.status-badge.nieuw {
    background: #fef3c7;
    color: #d97706;
}
.status-badge.contacted {
    background: #dbeafe;
    color: #2563eb;
}
.status-badge.klant {
    background: #d1fae5;
    color: #059669;
}
.status-badge.afgewezen {
    background: #fee2e2;
    color: #dc2626;
}

.status-form select {
    padding: 6px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}
.status-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.empty-state h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.empty-state p {
    color: var(--gray-500);
}

.alert-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.success-message {
    text-align: center;
    padding: 20px 0;
}
.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.success-message h2 {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.success-message p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}
textarea:focus {
    outline: none;
    border-color: var(--primary);
}
