/* ========================================
   Local Fonts
   ======================================== */
@import url('fonts-local.css');

/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farben basierend auf Legalcare Design */
    --primary-color: #2c5aa0;
    --primary-dark: #1e3f6f;
    --primary-light: #4a7bc8;
    --secondary-color: #f8b739;
    --secondary-dark: #e0a530;
    --dark-color: #1a1a1a;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(44, 90, 160, 0.1);
    color: var(--primary-color);
}

.dropdown-link::after {
    display: none;
}

@media (max-width: 768px) {
    .nav-item-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background: transparent;
        display: none;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-link {
        padding: 0.75rem 1rem 0.75rem 2rem;
    }
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

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

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 183, 57, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding-top: 140px;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(141, 198, 63, 0.2), rgba(109, 150, 50, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    line-height: 1.2;
}

.typewriter-text {
    color: #4a4a4a;
    background-color: rgba(200, 200, 200, 0.6);
    padding: 0.1em 0.3em;
    font-weight: 700;
    display: inline-block;
    border-radius: 3px;
}

.typewriter-cursor {
    color: var(--white);
    font-weight: 300;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.about-features {
    margin: var(--spacing-lg) 0;
}

.feature-item {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--primary-color);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.feature-item h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   Team Section
   ======================================== */
.team {
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: var(--spacing-md);
    text-align: center;
}

.team-info h3 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-info blockquote {
    font-style: italic;
    color: var(--text-light);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    border-left: 3px solid var(--primary-color);
    text-align: left;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   Consultation Section
   ======================================== */
.consultation {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.consultation-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.consultation-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    color: var(--text-light);
}

.form-group select option {
    color: var(--text-color);
}

.form-group select option:first-child {
    color: var(--text-light);
}


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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.radio-label:hover {
    background: rgba(0, 0, 0, 0.02);
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label span {
    font-weight: normal;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
}

/* Message Modal */
.message-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.message-modal-content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.message-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.message-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

.message-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.message-modal-close:hover {
    color: var(--dark-color);
    transform: rotate(90deg);
}

.message-modal-body {
    padding: 1.5rem;
}

.message-modal-body p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.message-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.message-modal-footer .btn {
    min-width: 100px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .message-modal-content {
        max-width: 100%;
        margin: 1rem;
        border-radius: 8px;
    }
    
    .message-modal-header,
    .message-modal-body,
    .message-modal-footer {
        padding: 1rem;
    }
    
    .message-modal-header h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section ul li i {
    margin-right: var(--spacing-xs);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing-section {
    background: linear-gradient(135deg, #f7f9fc 0%, #eef2fb 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before,
.pricing-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    z-index: 0;
}

.pricing-section::before {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -180px;
    background: radial-gradient(circle at center, rgba(44, 90, 160, 0.18) 0%, rgba(44, 90, 160, 0) 70%);
}

.pricing-section::after {
    width: 320px;
    height: 320px;
    bottom: -160px;
    left: -120px;
    background: radial-gradient(circle at center, rgba(248, 183, 57, 0.18) 0%, rgba(248, 183, 57, 0) 70%);
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: calc(var(--spacing-lg) * 1.2);
}

.plan-card {
    position: relative;
    padding: 2.5rem 2.25rem;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-height: 100%;
    background: var(--white);
    border: 1px solid rgba(44, 90, 160, 0.12);
    box-shadow: 0 28px 55px rgba(15, 29, 69, 0.12);
    transition: var(--transition);
}

.plan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: var(--transition);
    background: radial-gradient(circle at top right, rgba(248, 183, 57, 0.25), transparent 55%);
    z-index: 0;
}

.plan-card:hover::after {
    opacity: 1;
}

.plan-card > * {
    position: relative;
    z-index: 1;
}

.plan-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0;
}

.plan-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.plan-card .plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.plan-card .price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.plan-card .price-caption {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    font-weight: 600;
}

.plan-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-points li {
    position: relative;
    padding-left: 1.9rem;
}

.plan-points li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 160, 0.12);
    color: var(--primary-color);
    font-size: 0.75rem;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.plan-card.plan-premium {
    background: linear-gradient(145deg, var(--primary-color) 0%, #4f80d8 100%);
    border: none;
    box-shadow: 0 35px 70px rgba(44, 90, 160, 0.35);
    color: var(--white);
}

.plan-card.plan-premium::after {
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 60%);
}

.plan-card.plan-premium h3,
.plan-card.plan-premium p,
.plan-card.plan-premium .price-caption {
    color: rgba(255, 255, 255, 0.92);
}

.plan-card.plan-premium .price {
    color: var(--white);
}

.plan-card.plan-premium .plan-points li::before {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.plan-card.plan-value::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #ffcf66 100%);
    z-index: 1;
}

.plan-card.plan-value .plan-points li::before {
    background: rgba(248, 183, 57, 0.15);
    color: var(--secondary-dark);
}

.plan-card .btn {
    margin-top: var(--spacing-md);
    width: 100%;
    text-align: center;
}

.feature-comparison {
    margin-top: calc(var(--spacing-xl) * 0.85);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(44, 90, 160, 0.08);
    box-shadow: 0 32px 65px rgba(15, 29, 69, 0.12);
    backdrop-filter: blur(6px);
}

.comparison-header {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.comparison-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.comparison-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-head {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.96) 0%, rgba(78, 128, 204, 0.96) 100%);
    padding: 1.1rem 1.75rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    font-weight: 600;
}

.feature-body {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 0.9rem;
    padding: 1.4rem 1.75rem;
    align-items: start;
    transition: var(--transition);
    position: relative;
}

.feature-row:nth-child(even) {
    background: rgba(44, 90, 160, 0.04);
}

.feature-row:hover {
    background: rgba(248, 183, 57, 0.14);
}

.feature-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(44, 90, 160, 0.18) 0%, rgba(44, 90, 160, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-cell {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light);
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(44, 90, 160, 0.08);
    transition: var(--transition);
    position: relative;
}

.feature-cell p {
    margin: 0;
}

.feature-cell.premium {
    border-left: 4px solid var(--secondary-color);
    background: rgba(248, 183, 57, 0.18);
    color: var(--dark-color);
}

.feature-cell.value {
    border-left: 4px solid rgba(44, 90, 160, 0.25);
}

.feature-row:hover .feature-cell {
    border-color: rgba(248, 183, 57, 0.45);
}

@media (max-width: 1200px) {
    .feature-head,
    .feature-row {
        grid-template-columns: 1.05fr 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .feature-head {
        display: none;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        padding: 1.5rem;
    }
    
    .feature-cell {
        border-left-width: 0;
        padding: 1.1rem 1.25rem;
    }
    
    .feature-cell::before {
        content: attr(data-plan);
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        font-weight: 700;
        margin-bottom: 0.55rem;
        color: var(--primary-color);
    }
    
    .feature-cell.premium::before {
        color: var(--secondary-dark);
    }
}

@media (max-width: 768px) {
    .pricing-intro {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        padding: 2.25rem 2rem;
    }
    
    .feature-row {
        padding: 1.25rem 1.35rem;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 2rem 1.75rem;
        gap: 1.4rem;
    }
    
    .plan-card h3 {
        font-size: 1.75rem;
    }
    
    .plan-card .price {
        font-size: 2.4rem;
    }
    
    .feature-row {
        padding: 1.2rem;
        border-radius: 18px;
    }
    
    .feature-cell {
        border-radius: 14px;
    }
}

/* ========================================
   Review Suite Section
   ======================================== */
.review-suite {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 244, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.review-suite::before,
.review-suite::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.review-suite::before {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -140px;
    background: radial-gradient(circle at center, rgba(44, 90, 160, 0.18) 0%, rgba(44, 90, 160, 0) 70%);
}

.review-suite::after {
    width: 360px;
    height: 360px;
    bottom: -180px;
    right: -120px;
    background: radial-gradient(circle at center, rgba(248, 183, 57, 0.2) 0%, rgba(248, 183, 57, 0) 70%);
}

.review-suite .container {
    position: relative;
    z-index: 1;
}

.review-suite-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: calc(var(--spacing-xl) * 0.9);
    align-items: stretch;
}

.review-suite-highlight {
    background: linear-gradient(145deg, rgba(44, 90, 160, 0.96) 0%, rgba(71, 123, 204, 0.93) 100%);
    border-radius: 26px;
    padding: calc(var(--spacing-lg) * 1.1);
    box-shadow: 0 35px 70px rgba(21, 48, 103, 0.35);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
    align-self: flex-start;
}

.review-suite-highlight h3 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.review-suite-highlight p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin: 0;
}

.highlight-image {
    width: 100%;
    margin: var(--spacing-md) 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.highlight-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin: var(--spacing-sm) 0;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    height: fit-content;
}

.price-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.price-details small {
    display: block;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.25rem;
}

.highlight-points {
    list-style: none;
    margin: var(--spacing-sm) 0 var(--spacing-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.highlight-points li {
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.highlight-points li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.review-suite-highlight .btn {
    width: 100%;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.review-suite-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.review-suite-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: calc(var(--spacing-lg) * 0.9);
    border: 1px solid rgba(44, 90, 160, 0.12);
    box-shadow: 0 24px 48px rgba(15, 29, 69, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    transition: var(--transition);
    min-height: 100%;
}

.review-suite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 60px rgba(15, 29, 69, 0.18);
}

.review-suite-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.18) 0%, rgba(44, 90, 160, 0.05) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-suite-card h3 {
    margin: 0;
    font-size: 1.45rem;
    color: var(--dark-color);
}

.card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-light);
}

.card-list li {
    position: relative;
    padding-left: 1.75rem;
}

.card-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1.1rem;
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 90, 160, 0.12);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 0.75rem;
}

@media (max-width: 1100px) {
    .review-suite-grid {
        grid-template-columns: 1fr;
    }

    .review-suite-highlight {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .review-suite-features {
        grid-template-columns: 1fr;
    }

    .review-suite-highlight h3 {
        font-size: 2rem;
    }

    .highlight-price {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .review-suite-highlight {
        border-radius: 20px;
    }

    .review-suite-card {
        border-radius: 18px;
        padding: var(--spacing-lg);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: var(--spacing-md);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: var(--spacing-sm);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(44, 90, 160, 0.1);
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    position: relative;
    padding-right: 2rem;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: var(--spacing-sm);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item {
        padding: var(--spacing-sm);
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}

/* ========================================
   ReviewOrder Widget Section
   ======================================== */
.revieworder-widget-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    min-height: 350px;
    position: relative;
    z-index: 1;
}

.revieworder-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    line-height: 1.4;
}

.revieworder-title-highlight {
    color: var(--secondary-color);
}

.widget-wrapper {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: calc(var(--spacing-lg) / 3);
    align-items: start;
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.widget-title {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 700;
}

.widget-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.widget-step-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: auto;
}

.widget-step-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.15);
    transform: translateX(5px);
}

.widget-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.widget-step-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.4;
    flex: 1;
}

.widget-container {
    width: 100%;
    position: relative;
}

#revieworder-widget-container {
    width: 100%;
    min-height: 350px;
    position: relative;
    z-index: 1;
}

#revieworder-widget-root {
    width: 100%;
    min-height: 350px;
    position: relative;
    z-index: 1;
}

#revieworder-widget-root iframe {
    width: 100% !important;
    min-height: 350px !important;
    border: none !important;
    background: var(--white) !important;
    display: block;
    position: relative;
    z-index: 1;
}

/* Responsive: Mobile Layout */
@media (max-width: 768px) {
    .widget-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .widget-title {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .widget-step-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .widget-step-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.9rem;
    }
    
    .widget-step-text {
        font-size: 0.95rem;
    }
}

