/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --purple-color: #9333EA;
    --green-color: #10B981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

.btn-nav {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 4rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50% 0 0 0;
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple-color);
}

.badge-icon {
    flex-shrink: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-blue {
    color: var(--primary-color);
}

.title-purple {
    color: var(--purple-color);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.headphones-placeholder {
    opacity: 0.6;
}

.hero-stat-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    min-width: 200px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.green {
    background: var(--green-color);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Stats Section */
.stats {
    background: var(--bg-white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-icon.green {
    background: var(--green-color);
}

.stat-card-icon.blue {
    background: var(--primary-color);
}

.stat-card-icon.purple {
    background: var(--purple-color);
}

.stat-card-content {
    flex: 1;
}

.stat-card-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Section */
.products {
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.placeholder-image.large {
    height: 400px;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Tabs System */
.tabs-container {
    margin-bottom: 3rem;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button:hover::after {
    width: 100%;
}

.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Detail Section */
.product-detail {
    margin-bottom: 4rem;
}

.product-detail-header {
    margin-bottom: 2rem;
}

.product-detail-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.product-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.product-detail-text {
    color: var(--text-light);
    line-height: 1.8;
}

.product-detail-text h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.product-detail-text h3:first-child {
    margin-top: 0;
}

.product-detail-text ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.product-detail-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-detail-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-color);
    font-weight: bold;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-feature {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.product-feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        min-height: 400px;
        order: -1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .btn-nav {
        display: none;
    }

    .hero {
        padding: 2rem 0;
        margin-top: 70px;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        height: 250px;
    }

    .tabs-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-card-icon {
        width: 56px;
        height: 56px;
    }

    .header {
        padding: 0 15px;
    }

    .logo a {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .footer-content-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-full {
        padding: 3rem 0 1.5rem;
    }

    .footer-description {
        font-size: 0.9375rem;
    }

    .footer-contact-item {
        font-size: 0.875rem;
    }

    .footer-link-group h4 {
        font-size: 0.9375rem;
    }

    .footer-link-group ul li a {
        font-size: 0.875rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

    .hero-content {
        padding-top: 0;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 10;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }

    .hero-title {
        margin-bottom: 1rem;
    }

    .hero-image {
        min-height: 250px;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .hero-stat-inline {
        font-size: 0.875rem;
    }

    .hero-stat-icon {
        width: 28px;
        height: 28px;
    }

    .trust-stat-card {
        padding: 1.5rem;
    }

    .trust-stat-icon {
        width: 48px;
        height: 48px;
    }

    .trust-stat-number {
        font-size: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-text {
        font-size: 0.875rem;
    }

    .integration-card {
        padding: 1.5rem;
    }

    .integration-logo {
        width: 56px;
        height: 56px;
    }

    .integration-name {
        font-size: 0.9375rem;
    }

    .integration-category {
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-icon {
        font-size: 2.5rem;
    }

    .pricing-card-title {
        font-size: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
    }

    .number-card {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }

    .number-value {
        font-size: 2rem;
    }

    .number-label {
        font-size: 0.875rem;
    }

    .final-cta-image-placeholder {
        height: 300px;
    }

    .api-cta {
        padding: 3rem 0;
    }

    .api-cta-title {
        font-size: 1.75rem;
    }

    .api-cta-description {
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Active page indicator */
.nav-link.active {
    font-weight: 600;
}

/* Dark Header */
.header-dark {
    background: #1f2937;
}

.header-dark .logo a {
    color: white;
}

.nav-link-light {
    color: white !important;
}

.nav-link-light:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.nav-link-light.active {
    color: white !important;
}

.header-dark .nav-toggle span {
    background: white;
}

/* About Hero Section */
.about-hero {
    margin-top: 80px;
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple-color);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-gray {
    color: var(--text-dark);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* About History Section */
.about-history {
    padding: 5rem 0;
    background: white;
}

.about-history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.history-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.history-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.history-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
}

.history-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 0;
    background: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon.blue {
    background: var(--primary-color);
}

.mission-icon.purple {
    background: var(--purple-color);
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Values Section */
.values {
    padding: 5rem 0;
    background: white;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon.pink {
    background: #EC4899;
}

.value-icon.orange {
    background: #F97316;
}

.value-icon.light-blue {
    background: #3B82F6;
}

.value-icon.purple {
    background: var(--purple-color);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Numbers Section */
.numbers {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333EA 0%, #C026D3 100%);
    color: white;
}

.numbers-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.number-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 180px;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.number-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.number-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-align: center;
}

.number-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Full Footer */
.footer-full {
    background: #1e293b;
    padding: 4rem 0 2rem;
}

.footer-content-full {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-main {
    max-width: 400px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0 2rem;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact-item strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-link-group h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-link-group ul li a:hover {
    color: white;
}

/* Responsive for About Page */
@media (max-width: 968px) {
    .about-history-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .history-image-placeholder {
        height: 300px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content-full {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .history-title,
    .values-title,
    .numbers-title,
    .cta-title {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-content-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-full {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content-full {
        gap: 1.5rem;
    }

    .footer-description {
        font-size: 0.9375rem;
    }

    .footer-contact-item {
        font-size: 0.875rem;
    }

    .footer-link-group h4 {
        font-size: 0.9375rem;
    }

    .footer-link-group ul li a {
        font-size: 0.875rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Partners Page Styles */
.partners-hero {
    margin-top: 80px;
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.partners-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple-color);
}

.partners-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.partners-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Partners Benefits Section */
.partners-benefits {
    padding: 5rem 0;
    background: white;
}

.partners-benefits-secondary {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon.green {
    background: var(--green-color);
}

.benefit-icon.orange {
    background: #F97316;
}

.benefit-icon.light-blue {
    background: var(--primary-color);
}

.benefit-icon.pink {
    background: #EC4899;
}

.benefit-icon.red {
    background: #EF4444;
}

.benefit-icon.purple {
    background: var(--purple-color);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Commissions Section */
.commissions {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333EA 0%, #C026D3 100%);
    color: white;
}

.commissions-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.commissions-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.commissions-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.commissions-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.commissions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.commission-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.commission-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.commission-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Partnership Types Section */
.partnership-types {
    padding: 5rem 0;
    background: white;
}

.partnership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partnership-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.partnership-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.partnership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.partnership-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.partnership-card-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.partnership-commission {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-bottom: 2rem;
}

.partnership-commission.blue-purple {
    background: linear-gradient(135deg, #2563EB 0%, #9333EA 100%);
}

.partnership-commission.green {
    background: var(--green-color);
}

.partnership-commission.purple-pink {
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
}

.partnership-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partnership-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.partnership-features li svg {
    flex-shrink: 0;
}

/* Partners CTA Section */
.partners-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
    color: white;
    text-align: center;
}

.partners-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-cta-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.partners-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.partners-cta-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-cta-white {
    background: white;
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer Social & Legal */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive for Partners Page */
@media (max-width: 968px) {
    .partners-hero-title {
        font-size: 2.5rem;
    }

    .benefits-grid,
    .commissions-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partners-hero-title,
    .benefits-title,
    .commissions-title,
    .partnership-title,
    .partners-cta-title {
        font-size: 2rem;
    }

    .partners-hero-description,
    .commissions-description {
        font-size: 1rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .partners-hero {
        padding: 3rem 0;
    }

    .benefit-card {
        padding: 2rem;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
    }

    .benefit-title {
        font-size: 1.125rem;
    }

    .benefit-text {
        font-size: 0.875rem;
    }

    .commissions-grid {
        gap: 1.5rem;
    }

    .commission-card {
        padding: 1.5rem;
    }

    .commission-number {
        font-size: 2rem;
    }

    .partnership-card {
        padding: 2rem;
    }

    .partnership-commission {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }

    .partnership-features li {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .partners-hero-title {
        font-size: 1.75rem;
    }

    .partners-hero-description {
        font-size: 0.9375rem;
    }

    .benefits-title,
    .commissions-title,
    .partnership-title,
    .partners-cta-title {
        font-size: 1.75rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .commission-number {
        font-size: 1.75rem;
    }

    .commission-label {
        font-size: 0.8125rem;
    }

    .partnership-card {
        padding: 1.5rem;
    }

    .partnership-card-title {
        font-size: 1.25rem;
    }

    .partnership-card-desc {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .partners-hero-title {
        font-size: 1.75rem;
    }

    .partners-hero-description {
        font-size: 0.9375rem;
    }

    .benefits-title,
    .commissions-title,
    .partnership-title,
    .partners-cta-title {
        font-size: 1.75rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .commission-number {
        font-size: 1.75rem;
    }

    .commission-label {
        font-size: 0.8125rem;
    }

    .partnership-card {
        padding: 1.5rem;
    }

    .partnership-card-title {
        font-size: 1.25rem;
    }

    .partnership-card-desc {
        font-size: 0.9375rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--purple-color);
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Cards Section */
.contact-cards {
    padding: 3rem 0 5rem;
    background: white;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon.green {
    background: #25D366;
}

.contact-card-icon.blue {
    background: var(--primary-color);
}

.contact-card-icon.purple-gradient {
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-card-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-card-info {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.btn-whatsapp-card {
    background: #25D366;
    color: white;
    width: 100%;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-whatsapp-card:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.btn-email-card {
    background: var(--primary-color);
    color: white;
    width: 100%;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-email-card:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-phone-card {
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
    color: white;
    width: 100%;
    padding: 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-phone-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Info Cards Section */
.contact-info-cards {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-card-icon.light-purple {
    background: rgba(147, 51, 234, 0.1);
}

.info-card-icon.light-green {
    background: rgba(16, 185, 129, 0.1);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-card-content {
    color: var(--text-light);
    line-height: 1.8;
}

.info-card-content p {
    margin-bottom: 0.75rem;
}

.info-card-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-card-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Contact CTA Section */
.contact-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
    color: white;
    text-align: center;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Responsive for Contact Page */
@media (max-width: 968px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.125rem;
    }

    .contact-cta-title {
        font-size: 2rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .contact-hero {
        padding: 3rem 0;
    }

    .contact-cards-grid {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-card-icon {
        width: 64px;
        height: 64px;
    }

    .info-cards-grid {
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-card-icon {
        width: 56px;
        height: 56px;
    }

    .faq-card {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1.125rem;
    }

    .faq-answer {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card-icon {
        width: 56px;
        height: 56px;
    }

    .contact-card-title {
        font-size: 1.25rem;
    }

    .contact-card-desc {
        font-size: 0.875rem;
    }

    .contact-card-info {
        font-size: 1.125rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card-title {
        font-size: 1.25rem;
    }

    .info-card-content {
        font-size: 0.9375rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }

    .contact-cta-title {
        font-size: 1.75rem;
    }

    .contact-cta-subtitle {
        font-size: 1rem;
    }
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon.green {
    background: var(--green-color);
}

.hero-stat-icon.blue {
    background: var(--primary-color);
}

.hero-stat-icon.purple {
    background: var(--purple-color);
}

/* Trust Stats Section */
.trust-stats {
    padding: 4rem 0;
    background: var(--bg-light);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.trust-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.trust-stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-stat-icon.building {
    background: var(--primary-color);
}

.trust-stat-icon.chat {
    background: var(--green-color);
}

.trust-stat-icon.lightning {
    background: #F97316;
}

.trust-stat-icon.globe {
    background: linear-gradient(135deg, var(--green-color) 0%, var(--primary-color) 100%);
}

.trust-stat-content {
    flex: 1;
}

.trust-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.highlight-blue {
    color: var(--primary-color);
}

.trust-stat-label {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon.pink {
    background: #EC4899;
}

.feature-icon.blue {
    background: var(--primary-color);
}

.feature-icon.green {
    background: var(--green-color);
}

.feature-icon.orange {
    background: #EF4444;
}

.feature-icon.yellow {
    background: #F59E0B;
}

.feature-icon.light-blue {
    background: #3B82F6;
}

.feature-icon.green-phone {
    background: var(--green-color);
}

.feature-icon.purple-chat {
    background: var(--purple-color);
}

.feature-icon.cloud {
    background: var(--primary-color);
}

.feature-icon.pink-headphones {
    background: #EC4899;
}

.feature-icon.blue-chart {
    background: var(--primary-color);
}

.feature-icon.red-lock {
    background: #EF4444;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Integrations Section */
.integrations-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.integrations-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.integrations-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.integrations-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.integrations-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.integration-card.highlighted {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.integration-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.integration-logo svg {
    width: 100%;
    height: 100%;
}

.integration-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.integration-category {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* API CTA Section */
.api-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563EB 0%, #9333EA 50%, #EC4899 100%);
    color: white;
    text-align: center;
}

.api-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.api-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.api-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.api-cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.api-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 4rem;
    font-weight: 800;
    color: var(--purple-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--purple-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.testimonial-company {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
}

.testimonial-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.testimonial-badge.green {
    background: var(--green-color);
}

.companies-trust {
    text-align: center;
    margin-top: 4rem;
}

.companies-trust-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.companies-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.company-badge {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.company-badge:hover {
    background: white;
    box-shadow: var(--shadow);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #2563EB 0%, #9333EA 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F97316;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing-card.featured .pricing-card-title {
    color: white;
}

.pricing-card-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-card.featured .pricing-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.pricing-card.featured .pricing-features li {
    color: white;
}

.btn-pricing {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #2563EB 0%, #9333EA 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-pricing-featured {
    width: 100%;
    padding: 0.875rem;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-pricing-featured:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.custom-plan {
    background: rgba(147, 51, 234, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.custom-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.custom-plan-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-plan-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.custom-plan-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
    color: white;
}

.final-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-content {
    text-align: left;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.final-cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.final-cta-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: white;
}

.final-cta-image {
    position: relative;
}

.final-cta-image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.final-cta-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive for Home Page */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-stats-inline {
        gap: 1rem;
    }

    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .final-cta-wrapper {
        grid-template-columns: 1fr;
    }

    .final-cta-content {
        text-align: center;
    }

    .final-cta-buttons {
        justify-content: center;
    }

    .final-cta-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .features-title,
    .integrations-title,
    .testimonials-title,
    .pricing-title,
    .final-cta-title {
        font-size: 2rem;
    }

    .api-cta-title {
        font-size: 2rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: -1;
        padding-top: 1rem;
        position: relative;
        z-index: 3;
    }

    .hero-image {
        min-height: 300px;
        order: 0;
        position: relative;
        z-index: 1;
    }

    .hero-stat-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }

    .trust-stat-card {
        flex-direction: column;
        text-align: center;
    }

    .trust-stat-icon {
        width: 56px;
        height: 56px;
    }

    .number-value {
        font-size: 2.5rem;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-inline {
        width: 100%;
    }

    .hero-stat-inline {
        width: 100%;
        justify-content: center;
    }

    .trust-stats-grid,
    .features-grid,
    .integrations-grid,
    .testimonials-grid,
    .pricing-grid,
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-title,
    .integrations-title,
    .testimonials-title,
    .pricing-title,
    .numbers-title,
    .final-cta-title,
    .api-cta-title {
        font-size: 1.75rem;
    }

    .features-subtitle,
    .integrations-subtitle,
    .testimonials-subtitle,
    .pricing-subtitle {
        font-size: 1rem;
    }

    .number-value {
        font-size: 2rem;
    }

    .number-label {
        font-size: 0.875rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-description {
        font-size: 1rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .final-cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .api-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .company-badge {
        width: 100%;
        text-align: center;
    }

    .custom-plan {
        padding: 2rem 1.5rem;
    }

    .custom-plan-title {
        font-size: 1.25rem;
    }

    .custom-plan-text {
        font-size: 0.9375rem;
    }
}
