:root {
    --primary: #f97316;
    --secondary: #ea580c;
    --accent: #14b8a6;
    --dark: #1f2937;
    --light: #fed7aa;
    --text: #111827;
    --text-light: #6b7280;
    --bg-alt: #fff7ed;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 4px 16px rgba(249,115,22,0.1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul { list-style: none; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo-circle {
    background: var(--bg-alt);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.primary-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.primary-nav a {
    font-weight: 600;
    color: var(--text);
}

.primary-nav a:hover, .primary-nav a.active {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius);
}

.nav-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Split */
.hero-split {
    padding: 5rem 0;
    background: linear-gradient(to right, #fff, var(--bg-alt));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    background: var(--light);
    color: var(--secondary);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.lead {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-alt);
}

/* Advantages */
.advantages {
    padding: 5rem 0;
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-size: 1.2rem;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.adv-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.adv-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Highlights */
.highlights {
    padding: 5rem 0;
    background: var(--bg-alt);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--primary);
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

/* Steps */
.steps {
    padding: 5rem 0;
}

.steps-list {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light);
    line-height: 1;
    min-width: 80px;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: #fafafa;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-block {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.faq-q {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-a {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: var(--text-light);
}

.faq-block.open .faq-a {
    display: block;
}

.faq-block.open .faq-q::after {
    content: '-';
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #9ca3af;
}

.footer-col a:hover {
    color: white;
}

.footer-details p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

.footer-notice {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.footer-copy {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

/* Contact Form */
.contact-section { padding: 4rem 0; }
.contact-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.input-group input, .input-group textarea {
    width: 100%; padding: 0.8rem; border: 1px solid #d1d5db; border-radius: 8px; font-family: inherit;
}
.checkbox-group { display: flex; gap: 0.5rem; align-items: flex-start; }
.checkbox-group input { width: auto; margin-top: 0.3rem; }

/* Price Table */
.price-table { border: 1px solid #e5e7eb; border-radius: var(--radius); overflow: hidden; margin: 2rem 0; }
.price-row { display: grid; grid-template-columns: 1fr 1fr; padding: 1rem; border-bottom: 1px solid #e5e7eb; }
.header-row { background: var(--bg-alt); font-weight: 700; }
.price-row:last-child { border-bottom: none; }

/* Content Pages */
.page-content { padding: 4rem 0; }
.page-title { font-size: 3rem; margin-bottom: 1rem; color: var(--dark); }
.page-lead { font-size: 1.25rem; color: var(--text-light); margin-bottom: 3rem; max-width: 800px; }
.content-block { margin-bottom: 3rem; }
.content-block h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--secondary); }
.content-block p { margin-bottom: 1rem; font-size: 1.1rem; }
.highlight-bg { background: var(--bg-alt); padding: 2rem; border-radius: var(--radius); }

/* Responsive */
@media (max-width: 768px) {
    .header-content .primary-nav { display: none; }
    .menu-btn { display: block; }
    .menu-btn span { display: block; width: 25px; height: 3px; background: var(--dark); margin: 5px 0; }
    
    .primary-nav.open {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .primary-nav.open ul { flex-direction: column; align-items: flex-start; }

    .hero-grid, .highlight-grid, .contact-layout, .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-text h1 { font-size: 2.5rem; }
}

.legal-content h1 { margin-bottom: 2rem; }
.legal-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.legal-content p, .legal-content li { margin-bottom: 0.8rem; }