/* ============================================
   USINCO - CSS Global Professionnel
   Style inspiré de Bizee.com
   ============================================ */

:root {
    --primary: #1e3a5f;
    --primary-dark: #152a45;
    --accent: #ff6b35;
    --accent-hover: #ff5722;
    --dark: #2d3748;
    --gray: #4a5568;
    --gray-light: #718096;
    --light-gray: #f7fafc;
    --border: #e2e8f0;
    --white: #ffffff;
    --success: #38a169;
    --warning: #d69e2e;
    --error: #e53e3e;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5em;
    color: var(--gray);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-icon {
    color: #c53030;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.logo-text {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 16px;
    display: block;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
    background: var(--light-gray);
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 600px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 25px;
    z-index: 1000;
    border: 1px solid var(--border);
}

.dropdown-menu-small {
    min-width: 220px;
    padding: 15px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    gap: 30px;
}

.dropdown-menu-small.dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.dropdown:hover .dropdown-menu-small {
    display: flex;
}

.dropdown-section {
    flex: 1;
}

.dropdown-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-light);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--accent);
    padding-left: 16px;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-outline {
    padding: 10px 24px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-primary {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 50%, #fef6f3 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.hero-badge .stars {
    color: #f59e0b;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.content-main {
    max-width: 100%;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.content h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.content h3 {
    font-size: 24px;
    margin: 35px 0 20px;
}

.content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.content ul, .content ol {
    font-size: 18px;
    line-height: 1.8;
    margin: 25px 0;
    padding-left: 30px;
}

.content li {
    margin-bottom: 12px;
}

.content li strong {
    color: var(--dark);
}

/* Info Boxes */
.info-box {
    background: var(--light-gray);
    border-left: 4px solid var(--accent);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.info-box.success {
    background: #f0fff4;
    border-color: var(--success);
}

.info-box.warning {
    background: #fffaf0;
    border-color: var(--warning);
}

.info-box h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    position: relative;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-box p {
    color: var(--white);
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quote-box cite {
    font-style: normal;
    opacity: 0.8;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 50px 0;
    border: 1px solid #ffeaa7;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--gray);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    color: var(--white);
}

/* Sidebar */
.sidebar-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-box h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    margin-bottom: 10px;
}

.sidebar-box a {
    color: var(--gray);
    font-size: 14px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-box a:hover {
    color: var(--accent);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
}

.card-link {
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-content h4 {
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.pricing-price span {
    font-size: 20px;
    font-weight: 600;
}

.pricing-fee {
    color: var(--gray);
    font-size: 14px;
    margin: 10px 0 20px;
}

.pricing-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.pricing-features li.addon::before {
    content: '+';
    color: var(--gray);
}

/* ============================================
   STATES GRID
   ============================================ */
.states-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.state-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.state-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.state-card a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.state-card:hover a {
    color: var(--accent);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    margin: 40px 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
}

/* ============================================
   TABLES
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

.comparison-table .check {
    color: var(--success);
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--error);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    color: #ff6b35;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-tagline {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-trust {
    display: flex;
    gap: 15px;
}

.trust-badge {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: var(--radius);
}

.trust-stars {
    color: #f59e0b;
    margin-right: 8px;
}

.trust-text {
    font-size: 13px;
    color: #a0aec0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #a0aec0;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

.footer-legal {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-legal a {
    color: #718096;
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-copyright {
    color: #718096;
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px 0 10px 20px;
        min-width: auto;
        flex-direction: column;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .pricing-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .states-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .content {
        padding: 50px 0;
    }
    
    .content h2 {
        font-size: 26px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-buttons {
        display: none;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

.bg-light { background: var(--light-gray); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); color: var(--white); }

.hidden { display: none; }
.visible { display: block; }

/* DROPDOWN SMALL - Pour Outils et Ressources (liste verticale simple) */
.dropdown-menu.dropdown-small {
    min-width: 220px;
    max-width: 250px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
}

.dropdown-menu.dropdown-small a {
    padding: 12px 20px;
    display: block;
    color: #4a5568;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu.dropdown-small a:hover {
    background: #f7fafc;
    color: #ff6b35;
}

.nav-item:hover .dropdown-menu.dropdown-small {
    display: flex;
}

/* ========================================
   BOUTONS NAVIGATION HEADER
   ======================================== */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #ff6b35;
    color: white;
}

.btn-start {
    background: #ff6b35;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ff6b35;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-start:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}
