:root {
    --primary: #1A2B49;
    --secondary: #C5A880;
    --secondary-dark: #A4865C;
    --bg-light: #FAF8F5;
    --bg-card: #FFFFFF;
    --text: #2C2C2C;
    --text-muted: #666666;
    --border: #E5E1DA;
    --font-title: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--primary);
    font-weight: 700;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; text-align: center; }
h3 { font-size: 1.6rem; }

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--secondary);
    color: var(--primary);
    padding: 1rem 1.5rem;
    z-index: 9999;
    transition: top 0.3s ease;
    font-weight: bold;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-card);
}

.hero-content {
    padding-right: 2rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 1.5rem 0 2rem 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-dark);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Stats */
.stats {
    background-color: var(--primary);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary);
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

/* Services Page & Section */
.services-section {
    background-color: var(--bg-card);
}

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

.service-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body p {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem 0;
    flex-grow: 1;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.features-img {
    width: 100%;
    border-radius: 8px;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-family: var(--font-title);
    color: var(--primary);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--secondary);
}

/* Lead Form */
.form-section {
    background-color: var(--primary);
    color: #ffffff;
}

.form-section h2 {
    color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    color: var(--text);
}

.form-group-full {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: var(--transition);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-panel-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-panel {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Trust Layer */
.trust-layer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-layer h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.trust-layer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: center;
}

.trust-layer .disclaimer {
    font-size: 0.85rem;
    border-left: 3px solid var(--secondary);
    padding-left: 1rem;
    text-align: left;
    margin-top: 2rem;
}

/* Footer */
.site-footer {
    background-color: #0d1624;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 4rem;
}

.site-footer h4, .site-footer h5 {
    color: #ffffff;
    font-family: var(--font-title);
    margin-bottom: 1.5rem;
}

.site-footer h4 { font-size: 1.8rem; }
.site-footer h5 { font-size: 1.2rem; }

.site-footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 0.8rem;
}

.site-footer a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    border-top: 3px solid var(--secondary);
    transition: bottom 0.5s ease-in-out;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive Grid and Menu */
@media (max-width: 992px) {
    .hero, .stats-grid, .steps-grid, .services-grid, .features-grid, .pricing-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-card);
        padding: 2rem;
        border-bottom: 1px solid var(--border);
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
}