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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes skeleton {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes buttonPress {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Initial state for animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton 1.5s infinite;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #00d4aa;
    --accent-light: #4dd4b8;
    --accent-dark: #00a085;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-inverse: #ffffff;
    --background-primary: #ffffff;
    --background-secondary: #f8f9fa;
    --background-inverse: #000000;
    --border-color: #e5e5e5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-primary);
}

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

/* Typography - Uniformized hierarchy */
.heading_h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.heading_h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.heading_h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.heading_h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.4rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.heading_h5 {
    font-size: clamp(1.125rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.heading_h6 {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.subheading {
    font-size: clamp(1.125rem, 2vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.paragraph_large {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Eyebrow text - consistent styling */
.eyebrow {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.paragraph_small {
    font-size: clamp(0.875rem, 1.2vw, 0.9rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--background-inverse);
    color: var(--text-inverse);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav_logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-inverse);
}

.nav_logo-icon {
    width: 32px;
    height: 32px;
}

.nav_logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav_right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav_menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav_menu-item {
    position: relative;
}

.nav_link {
    color: var(--text-inverse);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav_link:hover {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-primary);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

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

.mega-nav_section {
    margin-bottom: 1rem;
}

.mega-nav_list {
    list-style: none;
}

.mega-nav_link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mega-nav_link:hover {
    color: var(--accent-color);
}

.mega-nav_link .icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.mega-nav_card {
    background: var(--background-secondary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button::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;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    background: #00b894;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.button:active {
    animation: buttonPress 0.1s ease-out;
}

.button.is-secondary {
    background: transparent;
    color: var(--text-inverse);
    border: 2px solid var(--text-inverse);
}

.button.is-secondary:hover {
    background: var(--text-inverse);
    color: var(--text-primary);
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-button:hover {
    color: #00b894;
}

.button-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.button-group.is-vertical-stretch {
    flex-direction: column;
    align-items: stretch;
}

/* Hero Section */
.hero-section {
    background: var(--background-inverse);
    color: var(--text-inverse);
    padding: 120px 0 80px;
    text-align: center;
}

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

.hero-content .button-group {
    justify-content: center;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.is-secondary {
    background: var(--background-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.is-align-center {
    text-align: center;
}

/* Results Showcase */
.results-showcase {
    margin-top: 3rem;
}

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

.result-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00b894);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.result-card:hover::before {
    transform: scaleX(1);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.result-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), #00b894);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.result-icon i {
    font-size: 1.5rem;
    color: white;
}

.result-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.result-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.result-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    text-align: center;
}

.benefit-text {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.4;
}

/* ROI Card Special Styling */
.roi-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05), rgba(0, 184, 148, 0.05));
    border: 2px solid var(--accent-color);
    position: relative;
}

.roi-card::before {
    background: linear-gradient(90deg, var(--accent-color), #00b894, #00a085);
    transform: scaleX(1);
}

.roi-icon {
    background: linear-gradient(135deg, var(--accent-color), #00b894);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.4);
}

.roi-benefit {
    background: linear-gradient(135deg, var(--accent-color), #00b894);
    color: white;
    border: none;
}

.roi-benefit .benefit-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.roi-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.roi-item {
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.roi-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #00b894);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.product-card:active {
    transform: translateY(-4px);
    transition: transform 0.1s ease-out;
}

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

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.product-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-card .button-group {
    margin-top: 2rem;
    gap: 1rem;
}

.product-card h3 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.product-card p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* FAQ - Solução Radical */
.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    cursor: pointer;
    position: relative;
}

.faq-item:hover {
    background: rgba(0, 212, 170, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-question .heading_h4 {
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-answer {
    padding: 1.5rem 0 0 0;
    margin: 0;
}

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

/* WCAG AA/AAA Compliance - Better contrast for green text */
.text-accent,
.eyebrow,
.product-category,
.button.is-secondary {
    color: var(--accent-light) !important;
}

/* Ensure sufficient contrast for green text on dark backgrounds */
.nav.is-inverse .text-accent,
.hero-section .text-accent,
.section.is-inverse .text-accent,
.footer .text-accent,
.nav.is-inverse .eyebrow,
.hero-section .eyebrow,
.section.is-inverse .eyebrow,
.footer .eyebrow,
.nav.is-inverse .product-category,
.hero-section .product-category,
.section.is-inverse .product-category,
.footer .product-category {
    color: #4dd4b8 !important;
}


/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

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

.blog-card:active {
    transform: translateY(-2px);
    transition: transform 0.1s ease-out;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.blog-card h3 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

/* Force blog image sizing */
#id-blog .blog-image {
    width: 100%;
    height: 200px !important;
    max-height: 200px;
    overflow: hidden;
}

#id-blog .blog-image img {
    width: 100%;
    height: 200px !important;
    max-height: 200px;
    object-fit: cover;
}

/* CTA Section */
.cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.cta-content .subheading {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-buttons .button-group {
    justify-content: flex-start;
    gap: 1.5rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input_label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.input_field {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input_field:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.input_field:invalid {
    border-color: #ef4444;
}

.input_field.is-select {
    background: var(--background-primary);
    cursor: pointer;
}

.input_field::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-color);
}

.checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Form States */
.button-loading {
    display: none;
}

.form-success,
.form-error {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-message,
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.success-message i {
    color: #10b981;
    font-size: 2rem;
}

.error-message i {
    color: #ef4444;
    font-size: 2rem;
}

.success-message h3,
.error-message h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-message p,
.error-message p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Form Validation */
.input_field:required:invalid {
    border-color: #ef4444;
}

.input_field:required:valid {
    border-color: #10b981;
}

/* Loading State */
.form-loading .button-text {
    display: none;
}

.form-loading .button-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* WhatsApp Chat Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: inherit;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.whatsapp-chat.active {
    display: flex;
}

.whatsapp-header {
    background: #25d366;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-status {
    font-size: 12px;
    opacity: 0.9;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.whatsapp-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f0f0f0;
}

.whatsapp-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    margin-left: auto;
}

.whatsapp-message p {
    background: white;
    padding: 10px 15px;
    border-radius: 18px;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-message p {
    background: #dcf8c6;
}

/* Typing indicator */
.typing-indicator {
    opacity: 0.7;
}

.typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.typing-dots span {
    width: 4px;
    height: 4px;
    background-color: var(--text-inverse);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.whatsapp-input {
    padding: 15px;
    background: white;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-input input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.whatsapp-input input:focus {
    border-color: #25d366;
}

.whatsapp-input button {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.whatsapp-input button:hover {
    background: #20ba5a;
}

.whatsapp-quick-actions {
    padding: 10px 15px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-action {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-action:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat {
        width: 300px;
        height: 450px;
    }
    
    .whatsapp-button {
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: var(--background-secondary);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-radius: 12px;
}

.newsletter-content {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.newsletter-content p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--background-primary);
    color: var(--text-primary);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.newsletter-input-group button {
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input-group button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.newsletter-consent {
    text-align: center;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
}

.newsletter-checkbox a {
    color: var(--accent-color);
    text-decoration: none;
}

.newsletter-checkbox a:hover {
    text-decoration: underline;
}

/* Mobile responsiveness for newsletter */
@media (max-width: 768px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-content h3 {
        font-size: 1.25rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        padding: 120px 0 60px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-content .subheading {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-content .button {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav_menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav_menu-item {
        width: 100%;
        text-align: center;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* CTA Grid */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Buttons */
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq-item {
        padding: 1.5rem 0;
    }
    
    .faq-question {
        gap: 0.5rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    /* Cards */
    .card {
        padding: 2rem;
    }
    
    /* Forms */
    .input_field {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .input_label {
        font-size: 0.9rem;
    }
    
    /* Touch targets */
    .button,
    .faq-item,
    .product-card,
    .blog-card {
        min-height: 44px; /* iOS touch target minimum */
    }
    
    /* Spacing adjustments */
    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    /* Reduce animations on mobile for performance */
    .product-card:hover,
    .blog-card:hover,
    .button:hover {
        transform: none;
    }
    
    .product-card:active,
    .blog-card:active,
    .button:active {
        transform: scale(0.98);
    }
}

/* Product Pages Styles */
.product-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.product-image-large {
    text-align: center;
}

.product-image-large img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-details h2 {
    margin-bottom: 1.5rem;
}

.product-details .paragraph_large {
    margin-bottom: 2rem;
}

.features-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--background-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-item-compact .feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item-compact .feature-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-item-compact .feature-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Highlight Section */
.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.feature-item .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item .feature-content {
    flex: 1;
}

.feature-item .feature-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-item .feature-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.compliance-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.badge-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-color);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.use-case-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Mobile responsiveness for product pages */
@media (max-width: 768px) {
    .product-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-badges {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .use-case-card {
        padding: 1.5rem;
    }
}

/* Blog Styles */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--background-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.featured-content h2 {
    margin-bottom: 1.5rem;
}

.featured-content .paragraph_large {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.featured-image img {
    width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Grid */

/* Newsletter CTA */
.newsletter-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--background-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.newsletter-cta .newsletter-content h2 {
    margin-bottom: 1.5rem;
}

.newsletter-cta .newsletter-content .paragraph_large {
    margin-bottom: 2rem;
}

/* Case Study + Testimonial Combined Section */
.case-study-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.case-study-testimonial-grid .case-study-card {
    margin: 0;
}

.case-study-testimonial-grid .testimonial-card {
    margin: 0;
}

/* Case Study Single Section */
.case-study-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.case-study-single .case-study-card {
    max-width: 600px;
    width: 100%;
}

/* Case Studies Section */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.case-study-logo {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-placeholder {
    color: white;
}

.case-study-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.case-study-industry {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-study-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.case-study-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-study-metrics .metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 8px;
    min-width: 80px;
}

.case-study-metrics .metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.case-study-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Testimonial Single Section */
.testimonial-single {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonial-single .testimonial-card {
    max-width: 700px;
    width: 100%;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
}

.testimonial-quote p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.avatar-placeholder {
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Pricing Success-Based Section */
.pricing-success-based {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-explanation h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.explanation-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

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

.pricing-features {
    margin-bottom: 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-cta {
    text-align: center;
}

/* Technical Content Section */
.technical-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.technical-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.technical-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.technical-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.technical-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.technical-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.document-type {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.document-pages {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Competitive Comparison Section */
.comparison-table-container {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.feature-column {
    width: 30%;
}

.aiqgen-column {
    width: 23.33%;
    background: rgba(0, 212, 170, 0.05);
    font-weight: 600;
}

.competitor-column {
    width: 23.33%;
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.aiqgen-cell {
    color: var(--accent-color);
    font-weight: 600;
}

.competitor-cell {
    color: var(--text-secondary);
}

/* Differentiators Section */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differentiator-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.differentiator-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.differentiator-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.differentiator-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-metric {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.benefit-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Custom Features Grid */
.custom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Development Process */
.development-process {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.process-step .step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step .step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.process-step .step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step .step-content li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.process-step .step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Investment Model */
.investment-model {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.investment-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

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

.investment-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.investment-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.investment-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.investment-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.investment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.investment-cta {
    text-align: center;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

/* Compliance Details Section */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.compliance-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.compliance-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.compliance-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.compliance-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.compliance-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Security and Compliance Section */
.security-grid {
    margin-top: 3rem;
}

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

.security-badge {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.security-badge h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.security-badge p {
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.security-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile responsiveness for blog */
@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    /* New sections mobile responsiveness */
    .case-study-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-success-based {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technical-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-table-container {
        overflow-x: scroll;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .case-study-metrics {
        justify-content: center;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .custom-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .development-process {
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .investment-model {
        margin-top: 2rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
}

/* Form Validation Styles */
.input_field.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-error::before {
    content: '⚠';
    font-size: 1rem;
}

.checkbox.error + .checkbox-label {
    color: #e74c3c;
}

.checkbox.error + .checkbox-label::before {
    border-color: #e74c3c;
}

/* Form Loading State */
.form-loading .input_field {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading button[type="submit"] {
    opacity: 0.7;
    pointer-events: none;
}

/* Enhanced Form Styling */
.input_group {
    position: relative;
}

.input_field:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.input_field:focus.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Checkbox Enhanced Styling */
.checkbox input[type="checkbox"]:checked + .checkbox-label::before {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox input[type="checkbox"]:checked + .checkbox-label::after {
    opacity: 1;
    transform: scale(1);
}

/* About Page Styles - Compact */
.about-content-compact {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-compact h2 {
    margin-bottom: 1.5rem;
}

.about-content-compact h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content-compact .paragraph_large {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.image-container {
    position: relative;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.image-container::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.image-placeholder {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.image-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.image-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--background-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.member-avatar {
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2rem;
}

.team-member h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.team-member p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile responsiveness for about pages */
@media (max-width: 768px) {
    .about-content-compact h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .about-content-compact .paragraph_large {
        margin-bottom: 1.5rem;
    }
    
    .features-grid-compact {
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .feature-item-compact {
        padding: 1.2rem;
    }
    
    .feature-item-compact .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item-compact .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-item-compact .feature-content p {
        font-size: 0.85rem;
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .feature-item .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-item .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-item .feature-content p {
        font-size: 0.85rem;
    }
    
    .image-container {
        padding: 2rem;
    }
    
    .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .image-placeholder h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .value-card,
    .team-member {
        padding: 2.5rem;
    }
    
    .value-icon {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .button-group {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Partner Programs Section - Hero Style */
.partner-programs {
    margin-top: 2.5rem;
    text-align: center;
}

.partner-programs-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.partner-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.partner-icon {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.partner-badge.nvidia .partner-icon {
    color: #76b900;
}

.partner-badge.microsoft .partner-icon {
    color: #00a4ef;
}

.partner-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.partner-brand {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
}

.partner-program {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .partner-programs {
        margin-top: 2rem;
    }
    
    .partner-badges {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    
    .partner-badge {
        padding: 0.5rem 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .partner-icon {
        font-size: 1.2rem;
    }
    
    .partner-brand {
        font-size: 0.85rem;
    }
    
    .partner-program {
        font-size: 0.65rem;
    }
}

/* Footer */
.footer {
    background: var(--background-inverse);
    color: var(--text-inverse);
    padding: 60px 0 30px;
}

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

.footer-section h2 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer_link {
    color: var(--text-inverse);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_link:hover {
    color: var(--accent-color);
}

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

.footer-copyright {
    color: var(--text-secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-inverse);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    color: var(--text-inverse);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

/* About Page Styles */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-content {
    padding: 1rem 0;
}

.rich-text {
    line-height: 1.7;
}

.rich-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.rich-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.rich-text strong {
    font-weight: 700;
    color: var(--accent-color);
}

/* Navigation Active State */
.nav_link.active {
    color: var(--accent-color);
}

.footer_link.active {
    color: var(--accent-color);
}

/* English Version Specific Styles */
.en-version .hero-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.en-version .button {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.en-version .result-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.en-version .metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #38a169;
}

.en-version .compliance-badge {
    background: #2b6cb0;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.en-version .eyebrow {
    background: linear-gradient(90deg, #3182ce, #38a169);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* US Market Specific Styles (Legacy) */
.us-market .hero-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
}

.us-market .button {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.us-market .result-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.us-market .metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: #38a169;
}

.us-market .compliance-badge {
    background: #2b6cb0;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.us-market .eyebrow {
    background: linear-gradient(90deg, #3182ce, #38a169);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-link {
    color: var(--text-inverse);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-link.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.language-separator {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Utility Classes */
.width_100percent {
    width: 100%;
}

.text-align_center {
    text-align: center;
}

.margin-bottom_none {
    margin-bottom: 0;
}

.margin-top_auto {
    margin-top: auto;
}

.padding-top_xsmall {
    padding-top: 0.5rem;
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav_menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background-inverse);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav_menu.active {
        max-height: 80vh;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }
    
    .nav_mobile-menu-button {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .nav_mobile-menu-button i {
        font-size: 1.5rem;
        color: var(--text-inverse);
        transition: transform 0.3s ease;
    }
    
    .nav_mobile-menu-button:hover i {
        transform: scale(1.1);
    }
    
    /* Dropdown menu ajustado para mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        min-width: auto;
        padding: 0;
        background: transparent;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }
    
    .dropdown-menu.active {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        padding: 1rem 0 1rem 1rem;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .mega-nav_wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mega-nav_card {
        display: none;
    }
    
    .mega-nav_list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .mega-nav_link {
        padding: 0.5rem;
        border-radius: 4px;
        transition: background 0.2s ease;
    }
    
    .mega-nav_link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .button-group .button {
        width: 100%;
        justify-content: center;
    }
    
    .language-switcher {
        margin-top: 1rem;
    }
    
    .heading_h1 {
        font-size: 2.5rem;
    }
    
    .heading_h2 {
        font-size: 2rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
    }
    
    .result-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
    
    .roi-benefit .benefit-text {
        font-size: 1rem;
    }
    
    .roi-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section for very small screens */
    .hero-section {
        padding: 100px 0 50px;
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
    }
    
    .hero-content .subheading {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .partner-programs {
        margin-top: 1.5rem;
    }
    
    .partner-programs-label {
        font-size: 0.65rem;
    }
    
    .partner-badge {
        padding: 0.4rem 0.8rem;
    }
    
    .partner-icon {
        font-size: 1rem;
    }
    
    .partner-brand {
        font-size: 0.8rem;
    }
    
    .partner-program {
        font-size: 0.6rem;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-card {
        padding: 1.25rem;
    }
    
    .result-icon {
        width: 45px;
        height: 45px;
    }
    
    .result-icon i {
        font-size: 1.1rem;
    }
    
    .result-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-text {
        font-size: 0.85rem;
    }
    
    .roi-benefit .benefit-text {
        font-size: 0.95rem;
    }
    
    .roi-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .roi-item {
        padding: 0.5rem;
    }
    
    .roi-desc {
        font-size: 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .heading_h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
