/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f3;
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-date, .blog-category, .read-time {
    font-weight: 500;
}

.blog-category {
    background: #e0f2fe;
    color: #0277bd;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

/* Blog Grid */
.blog-grid-section {
    padding: 4rem 0;
    background: #f8f6f3;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card.featured {
    grid-column: span 2;
}

/* Horizontal layout for featured blog card */
.blog-card.horizontal-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
}

.blog-card-image-left {
    position: relative;
    width: 450px;
    min-width: 450px;
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
}

.blog-card-content-right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-content-right .blog-card-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-card-content-right .blog-card-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-card-image {
    height: 250px;
}

.blog-card.large-image .blog-card-image {
    height: 300px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: white;
}

.blog-card-image .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.75rem;
}

.blog-card.featured .blog-card-title a {
    font-size: 1.5rem;
}

.blog-card-title a:hover {
    color: #2563eb;
}

.blog-card-excerpt {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.read-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #1d4ed8;
}

/* Blog Content Pages */
.blog-content {
    padding: 2rem 0 4rem 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article {
    margin-bottom: 3rem;
}

.article-image {
    margin-bottom: 2rem;
}

.content-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.article-body h2 {
    font-size: 1.875rem;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.5rem;
    color: #374151;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
}

.article-body h4 {
    font-size: 1.25rem;
    color: #374151;
    margin: 1rem 0 0.5rem 0;
}

.article-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.article-body ul, .article-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.feature-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(76, 175, 80, 0.2);
}

.feature-highlight h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Blue highlight for special sections */
.feature-highlight-blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #2563eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}

.feature-highlight-blue h3 {
    color: #1d4ed8;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Feature icon large */
.feature-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    border-radius: 50%;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
}

.feature-icon-large svg {
    width: 40px;
    height: 40px;
    fill: white;
}

/* Example box styling */
.example-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.example-box h4 {
    color: #f57c00;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.example-box p {
    color: #5d4037;
    line-height: 1.6;
    margin: 0;
}

/* Benefits list styling */
.benefits-list {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #c8e6c9;
}

.benefits-list h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #2e7d32;
    padding: 0.5rem 0;
    font-weight: 500;
}

blockquote {
    border-left: 4px solid #4caf50;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.1);
}
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: #2563eb;
    font-style: normal;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Newsletter Section */
.newsletter-section {
    background: #f8fafc;
    padding: 3rem 0;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.75rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4caf50;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

.btn-primary:hover {
    background: #388e3c;
    border-color: #388e3c;
}

.btn-secondary {
    background: transparent;
    color: #4caf50;
    border-color: #4caf50;
}

.btn-secondary:hover {
    background: #4caf50;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Hero CTA buttons */
.hero .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid #ff6b35;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e0851a 100%);
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info > h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    padding: 16px;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.contact-form .form-subtitle {
    color: #666;
    margin-bottom: 35px;
    font-size: 1rem;
    line-height: 1.6;
}

.form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
    background: white;
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    max-width: 100%;
}

.captcha-field {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #c8e6c9;
}

.captcha-field label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2e7d32;
    font-size: 1rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 20px;
}

.captcha-question span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2e7d32;
    background: white;
    padding: 12px 20px;
    border-radius: 10px;
    border: 2px solid #4caf50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.captcha-question input {
    max-width: 120px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

#submit-btn {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

#submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

#submit-btn:hover::before {
    left: 100%;
}

#submit-btn:hover {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

#submit-btn:active {
    transform: translateY(-1px);
}

#submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

/* Section styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
    background: #f8f6f3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: #4caf50;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f6f3;
}

.pricing .pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* Responsive breakpoints voor pricing grid */
@media (max-width: 1024px) {
    .pricing .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 800px !important;
    }
}

@media (max-width: 768px) {
    .pricing .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
    }
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #4caf50;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.pricing-price {
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #4caf50;
}

.period {
    display: block;
    color: #666;
    font-size: 0.875rem;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Digital Signature Section */
.digital-signature {
    padding: 80px 0;
    background: #f8f6f3;
}

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

.signature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.signature-subtitle {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.signature-features {
    list-style: none;
    padding: 0;
}

.signature-features li {
    padding: 8px 0;
    color: #4caf50;
    font-weight: 500;
}

.signature-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Client References Section */
.client-references {
    padding: 80px 0;
    background: white;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reference-item {
    background: #f8f6f3;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reference-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: #4caf50;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 1.1;
}

.logo-placeholder strong {
    font-size: 12px;
    font-weight: 700;
}

.logo-placeholder span {
    font-size: 10px;
    font-weight: 500;
    margin-top: 2px;
}

.logo-placeholder.green { background: #4caf50; }
.logo-placeholder.blue { background: #2196F3; }
.logo-placeholder.orange { background: #FF9800; }
.logo-placeholder.purple { background: #9C27B0; }
.logo-placeholder.teal { background: #009688; }

.client-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reference-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.reference-sector {
    color: #4caf50;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.reference-description {
    color: #666;
    font-size: 0.9rem;
}

.references-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f6f3;
}

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

.testimonial-card {
    background: #f8f6f3;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 1.125rem;
}

.author-info strong {
    color: #333;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.875rem;
    display: block;
    margin-top: 5px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced CTA buttons */
.cta .btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: 2px solid #ff6b35;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta .btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e0851a 100%);
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .signature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid,
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .references-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .reference-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .references-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .captcha-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .captcha-question input {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-card,
    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #4caf50;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #4caf50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid #7f8c8d;
}

.cookie-btn.decline:hover {
    background: #7f8c8d;
}

.cookie-btn.settings {
    background: #34495e;
    color: white;
}

.cookie-btn.settings:hover {
    background: #2c3e50;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.cookie-modal h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 24px;
}

.cookie-modal p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-category {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
}

.cookie-category-title {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 25px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #4caf50;
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(25px);
}

.cookie-category-description {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: none;
}

.cookie-category.active .cookie-category-description {
    display: block;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #555;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 10px;
        padding: 20px;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #4caf50;
    outline-offset: 2px;
}