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

:root {
    --primary-color: #f2ff00;
    --secondary-color: #14141f;
    --accent-color: #f2ff00;
    --text-color: #212529;
    --text-gray: #6c757d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
    --dark-bg: #14141f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-wrap: break-word;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
    line-height: 1.25;
}

h1 {
	font-size: 80px;
}

h2 {
    font-size: 64px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 80px;
    }
    h2 {
        font-size: 64px;
    }
    h3 {
        font-size: 48px;
    }
    h {
        font-size: 32px;
    }
    h5 {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.5;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 44px;
    }
    h3 {
        font-size: 38px;
    }
    h4 {
        font-size: 32px;
    }
    h5 {
        font-size: 26px;
        line-height: 1.5;
    }
}

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

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Header Styles */
.site-header {
    background: transparent;
    color: var(--white);
    padding: 1.375rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 1.5s ease;
}

.site-header.scrolled {
    background-color: var(--dark-bg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dark header variant for non-home pages */
.site-header-dark {
    background-color: transparent;
    transition: background-color 1.5s ease;
}

.site-header-dark.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-header-dark .nav-item a {
    color: var(--text-color);
}

.site-header-dark .mobile-menu-toggle {
    color: var(--text-color);
}

.site-header-dark .btn-login {
    border-color: var(--text-color);
    color: var(--text-color);
}

.navbar {
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

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

/* Logo switching */
.logo-img-dark {
    display: none;
}

.site-header-dark .logo-img-white {
    display: none;
}

.site-header-dark .logo-img-dark {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

/* Chevron for megamenu items */
.nav-item.has-megamenu > a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 0.5rem;
    background-image: url('/images/chevron-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.site-header-dark .nav-item.has-megamenu > a::after {
    background-image: url('/images/chevron.svg');
}

.nav-item.has-megamenu:hover > a::after {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 250px;
    padding: 1rem 0;
    list-style: none;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown li a {
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    display: block;
}

.dropdown li a:hover {
    background: var(--light-bg);
}

.lang-switcher {
    cursor: pointer;
}

.lang-dropdown .dropdown.lang-menu {
    min-width: 150px;
    right: 0;
    left: auto;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    line-height: 1;
}

.mobile-menu-toggle.active {
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Hero Section */
.hero {
    background: var(--white) url('https://isabel-myponto.s3.amazonaws.com/uploads/header-home.webp') center/cover no-repeat;
    color: var(--white);
    padding: 12rem 0 9rem;
    position: relative;
    margin-top: -70px;
    padding-top: calc(12rem + 70px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-end;
}

.hero-title {
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: left;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1rem;
}

.hero h1 {
    margin-bottom: 0.5rem;
    letter-spacing: normal;
    text-align: left;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.bank-coverage {
    margin: 3rem 0 0;
}

.bank-coverage p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.flags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    align-items: center;
}

.flag {
    font-size: 2rem;
}

.flag-icon {
    width: 22px;
    height: 16px;
    object-fit: contain;
}

.flags .link {
    margin-left: 0.5rem;
}

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

.hero-buttons .btn {
    display: inline-block;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 5rem;
        padding-top: calc(6rem + 70px);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
    
    .hero-buttons {
        align-items: flex-start;
        margin-top: 2rem;
    }
}

.btn {
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: normal;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
}

.btn-primary,
.btn-primary-alt,
.btn-yellow {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: 1px solid var(--primary-color);
    transition: background-color 1.5s ease, color 1.5s ease, border 1.5s ease;
}

.btn-primary:hover,
.btn-yellow:hover {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary-alt:hover {
    background-color: transparent;
    border: 1px solid var(--dark-bg);
    color: var(--dark-bg);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    transition: background-color 1.5s ease, color 1.5s ease, border 1.5s ease;
}

.btn-secondary:hover {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--dark-bg);
}

.btn-terziary {
    background-color: transparent;
    border: 1px solid var(--dark-bg);
    color: var(--dark-bg);
    transition: background-color 1.5s ease, color 1.5s ease, border 1.5s ease;
}

.btn-terziary:hover {
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-bg);
    color: var(--white);
}

.link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.link:hover {
    opacity: 0.8;
}

/* Partners Section */
.partners {
    background: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
    border-radius: 14px 14px 0 0;
    margin-top: -14px;
}

.partners-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: normal;
}

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

.partner-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    opacity: 0.7;
    transition: opacity 0.3s;
    text-decoration: none;
}

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

.partner-logo:hover {
    opacity: 1;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

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

.products-left h3 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.products-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.product-icon {
    width: 64px;
    flex-shrink: 0;
}

.product-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.product-text p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Benefits Section */
.benefits {
    background: var(--white);
    padding: 6rem 0 8rem;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.benefits-header {
    text-align: left;
}

.benefits-header h3 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
}

.benefit-item {
    text-align: left;
}

.benefit-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.benefit-item strong {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-item .stats {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 0 0 4rem;
    background: var(--white);
}

.testimonials .container {
    padding: 0;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 2rem;
}

@media (min-width: 1400px) {
    .testimonials-wrapper {
        max-width: 1320px;
    }
}

.testimonials-slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    display: flex;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-content {
    width: 66.666%;
    background: var(--primary-color);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote h4 {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    color: var(--dark-bg);
}

.testimonial-image {
    width: 33.333%;
    filter: grayscale();
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-arrows {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.testimonial-arrow {
    background: var(--dark-bg);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.testimonial-arrow:hover {
    background: var(--white);
    color: var(--dark-bg);
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex-direction: column;
    }
    
    .testimonial-content,
    .testimonial-image {
        width: 100%;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
}

/* Newsletter Section */
.newsletter {
    background: var(--dark-bg);
    color: var(--white);
    padding: 12rem 0 8rem;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-content {
    text-align: left;
}

.newsletter-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter h2 {
    margin-bottom: 0;
    letter-spacing: normal;
}

.newsletter-form-container {
    /* HubSpot form will inject here */
}

@media (max-width: 992px) {
    .newsletter {
        padding: 6rem 0 4rem;
    }
    
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.blog-card {
    background: var(--white);
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image .blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #f2ff00;
    color: #14141f;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category, .blog-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-right: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin: 1rem 0;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.blog .btn-terziary {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Download Guide Section */
.download-guide {
    background-color: var(--dark-bg);
    padding: 12rem 0 2rem;
}

.download-guide * {
    color: var(--white);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.download-content {
    padding: 2rem 3rem 2rem 0;
}

.download-content > ul {
    padding-left: 2rem;
}

.download-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.download-guide h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.guide-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.guide-form input {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.guide-form button {
    align-self: flex-start;
}

.download-image {
    position: relative;
}

.form-image {
    position: relative;
}

.form-image > img {
    border-radius: 0 14px 14px 0;
    width: 100%;
    height: auto;
    display: block;
}

.form-image .text {
    background: var(--primary-color);
    border-radius: 0 14px 14px 0;
    bottom: 25px;
    padding: 25px 45px 25px 25px;
    position: absolute;
}

.form-image .text h3 {
    color: var(--dark-bg);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-image .text img {
    width: 140px;
    height: auto;
}

@media (max-width: 992px) {
    .download-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-content {
        padding: 0;
    }
    
    .form-image > img {
        border-radius: 14px;
    }
    
    .form-image .text {
        border-radius: 14px;
    }
    
    .form-image .text h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}

/* CTA Section */
.cta-section {
    background: var(--white) url('https://isabel-myponto.s3.amazonaws.com/uploads/background-section.webp') center/cover no-repeat;
    color: var(--white);
    padding: 6rem 0;
}

.cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.cta-content-left {
    text-align: left;
}

.cta-content-right {
    text-align: left;
}

.cta-section h2 {
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .cta-section .container {
        grid-template-columns: 1fr;
    }
}

.cta-section h2 {
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer Styles */
.site-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-top {
    margin-bottom: 3rem;
}

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

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

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

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

footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.footer-lang {
    display: flex;
    align-items: flex-start;
}

.language-dropdown {
    position: relative;
}

.language-select {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.language-select option {
    background: var(--dark-bg);
    color: var(--white);
}

.footer-info p, .footer-legal p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.copyright {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
     .mobile-menu-toggle {
         display: block;
     }
     
     .nav-menu {
         display: none;
         position: fixed;
         top: 70px;
         left: 0;
         right: 0;
         bottom: 0;
         background: var(--dark-bg);
         flex-direction: column;
         padding: 2rem;
         overflow-y: auto;
         z-index: 999;
         gap: 0;
     }
     
     .site-header-dark .nav-menu {
         background: var(--white);
     }
     
     .nav-menu.active {
         display: flex;
     }
     
     .nav-item {
         width: 100%;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding: 1rem 0;
     }
     
     .site-header-dark .nav-item {
         border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     }
     
     .nav-item a {
         font-size: 1.1rem;
     }
     
     .site-header-dark .nav-item a {
         color: var(--text-color);
     }
     
     .megamenu {
         position: static;
         display: none !important;
         box-shadow: none;
         padding: 0;
         background: transparent;
     }
     
     .mobile-dropdown {
         display: none !important;
         position: static !important;
         background: transparent !important;
         box-shadow: none !important;
         padding: 1rem 0 !important;
         margin-top: 0.5rem !important;
         list-style: none;
     }
     
     .nav-item.submenu-active .mobile-dropdown {
         display: block !important;
     }
     
     .mobile-dropdown li a {
         color: var(--white) !important;
         padding: 0.75rem 0.5rem !important;
         font-size: 0.95rem !important;
         display: block !important;
     }
     
     .mobile-dropdown li a:hover {
         background-color: rgba(255, 255, 255, 0.1);
         border-radius: 0.375rem;
     }
     
     .site-header-dark .mobile-dropdown li a {
         color: var(--text-color) !important;
     }
     
     .site-header-dark .mobile-dropdown li a:hover {
         background-color: rgba(0, 0, 0, 0.05);
     }
    
    .megamenu-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .megamenu-col h5 {
        color: var(--accent-color);
        font-size: 1rem;
    }
    
    .megamenu-col a {
        color: var(--white);
        padding: 0.75rem 0.5rem;
    }
    
    .megamenu-col a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .lang-dropdown .dropdown.lang-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        min-width: auto;
        padding: 0.5rem 0;
        display: none;
    }
    
    .lang-dropdown.submenu-active .dropdown.lang-menu {
        display: block;
    }
    
    .lang-dropdown .dropdown.lang-menu li a {
        color: var(--white);
    }
     
     .site-header-dark .lang-dropdown .dropdown.lang-menu li a {
         color: var(--text-color);
     }
    
    .nav-item.has-megamenu > a::after,
    .lang-dropdown .lang-switcher::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 0.5rem;
        background-image: url('/images/chevron-white.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s ease;
        vertical-align: middle;
        transform: none !important;
    }
     
    .site-header-dark .nav-item.has-megamenu > a::after,
    .site-header-dark .lang-dropdown .lang-switcher::after {
        background-image: url('/images/chevron.svg');
     }
    
    .nav-item.has-megamenu.submenu-active > a::after,
    .lang-dropdown.submenu-active .lang-switcher::after {
        transform: rotate(180deg) !important;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .partner-logos {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .product-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
     .mobile-menu-toggle {
         display: block;
     }
     
     .nav-menu {
         display: none;
         position: fixed;
         top: 70px;
         left: 0;
         right: 0;
         bottom: 0;
         background: var(--dark-bg);
         flex-direction: column;
         padding: 2rem;
         overflow-y: auto;
         z-index: 999;
         gap: 0;
     }
     
     .site-header-dark .nav-menu {
         background: var(--white);
     }
     
     .nav-menu.active {
         display: flex;
     }
     
     .nav-item {
         width: 100%;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding: 1rem 0;
     }
     
     .site-header-dark .nav-item {
         border-bottom: 1px solid rgba(0, 0, 0, 0.1);
     }
     
     .nav-item a {
         font-size: 1.1rem;
     }
     
     .site-header-dark .nav-item a {
         color: var(--text-color);
     }
     
     .megamenu {
         position: static;
         display: none !important;
         box-shadow: none;
         padding: 0;
         background: transparent;
     }
     
     .mobile-dropdown {
         display: none !important;
         position: static !important;
         background: transparent !important;
         box-shadow: none !important;
         padding: 1rem 0 !important;
         margin-top: 0.5rem !important;
         list-style: none;
     }
     
     .nav-item.submenu-active .mobile-dropdown {
         display: block !important;
     }
     
     .mobile-dropdown li a {
         color: var(--white) !important;
         padding: 0.75rem 0.5rem !important;
         font-size: 0.95rem !important;
         display: block !important;
     }
     
     .mobile-dropdown li a:hover {
         background-color: rgba(255, 255, 255, 0.1);
         border-radius: 0.375rem;
     }
     
     .site-header-dark .mobile-dropdown li a {
         color: var(--text-color) !important;
     }
     
     .site-header-dark .mobile-dropdown li a:hover {
         background-color: rgba(0, 0, 0, 0.05);
     }
    
    .megamenu-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .megamenu-col h5 {
        color: var(--accent-color);
        font-size: 1rem;
    }
    
    .megamenu-col a {
        color: var(--white);
        padding: 0.75rem 0.5rem;
    }
    
    .megamenu-col a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .lang-dropdown .dropdown.lang-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        min-width: auto;
        padding: 0.5rem 0;
        display: none;
    }
    
    .lang-dropdown.submenu-active .dropdown.lang-menu {
        display: block;
    }
    
    .lang-dropdown .dropdown.lang-menu li a {
        color: var(--white);
    }
    
    .nav-item.has-megamenu > a::after,
    .lang-dropdown .lang-switcher::after {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        margin-left: 0.5rem;
        background-image: url('/images/chevron-white.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: transform 0.3s ease;
        vertical-align: middle;
        transform: none !important;
    }
     
    .site-header-dark .nav-item.has-megamenu > a::after,
    .site-header-dark .lang-dropdown .lang-switcher::after {
        background-image: url('/images/chevron.svg');
     }
    
    .nav-item.has-megamenu.submenu-active > a::after,
    .lang-dropdown.submenu-active .lang-switcher::after {
        transform: rotate(180deg) !important;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Schedule Page */
.schedule-page {
    background: var(--white);
    padding: 8rem 0 6rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.schedule-content {
    text-align: left;
}

.schedule-content h1 {
    /* font-size: 2rem;
    font-weight: 500;
    line-height: 1.2; */
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.schedule-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.schedule-content a {
    color: var(--text-color);
    text-decoration: none;
}

.schedule-content a:hover {
    color: var(--text-gray);
}

.schedule-iframe {
    position: relative;
    min-height: 600px;
}

.meetings-iframe-container {
    width: 100%;
    min-height: 600px;
}

.meetings-iframe-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 0.375rem;
}

@media (max-width: 992px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-page {
        padding: 6rem 0 4rem;
    }
}

/* Company Page */
.company-hero {
    background: var(--white);
    padding: 12rem 0 0;
}

.company-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.company-hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.company-hero-content a {
    color: var(--text-color);
    text-decoration: none;
}

.company-hero-content a:hover {
    text-decoration: underline;
}

.company-hero-image {
    text-align: center;
}

.company-image {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.company-info {
    background: var(--white);
    padding: 4rem 0 4rem;
    border-radius: 0 0 14px 14px;
}

.newsletter p:first-child {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter h2 {
    font-size: 48px;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

@media (max-width: 992px) {
    .company-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-hero {
        padding: 6rem 0 3rem;
    }
    
    .company-image {
        width: 100%;
    }
}

.newsletter-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.company-info-col p:empty {
    margin-bottom: 0.5rem;
}

/* About Page */
.about-hero {
    background: var(--white);
    padding: 9rem 0 6rem;
}

.about-hero h1 {
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.about-hero p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    color: var(--text-color);
}

.about-carousel {
    background: var(--white);
    padding: 0 0 4rem;
}

.about-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    padding: 0 3rem;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
}

.carousel-slide h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.carousel-slide p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 2rem;
    color: var(--text-color);
}

.carousel-slide .btn {
    margin-top: 2rem;
    width: 25%;
}

.carousel-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-arrow {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-arrow:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.about-contact {
    background: var(--white);
    padding: 8rem 0 6rem;
    border-radius: 0 0 14px 14px;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-contact-col h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-contact-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.about-contact-col a {
    color: var(--text-color);
    text-decoration: none;
}

.about-contact-col a:hover {
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .about-hero {
        padding: 8rem 0 3rem;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Pricing Page */
.pricing-hero {
    padding: 8rem 0 4rem;
}

.pricing-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.pricing-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-hero-content h1 {
    margin-bottom: 0.5rem;
}

.pricing-hero-image {
    text-align: center;
}

.pricing-image {
    width: 70%;
    height: auto;
    border-radius: 14px;
}

.pricing-models {
    background: var(--white);
    padding: 6rem 0 6rem;
}

.pricing-models-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.pricing-models-left h4 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.pricing-models-left .btn {
    display: inline-block;
}

.pricing-models-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pricing-model-card {
    text-align: left;
}

.pricing-model-card img {
    margin-bottom: 1rem;
}

.pricing-model-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.pricing-model-card strong {
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-model-card a {
    color: var(--text-color);
    text-decoration: none;
}

.pricing-model-card a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .pricing-hero {
        padding: 8rem 0 3rem;
    }
    
    .pricing-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-image {
        width: 100%;
    }
    
    .pricing-models-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-models-right {
        grid-template-columns: 1fr;
    }
}

/* Megamenu Styling */
.has-megamenu {
    position: static;
}

.megamenu {
    display: none;
    position: absolute;
    border-radius: 1rem;
    top: calc(100% - 10px);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 2rem 0;
    padding-top: calc(2rem + 10px);
    z-index: 1000;
}

.has-megamenu:hover .megamenu,
.megamenu:hover {
    display: block;
}

/* Mobile Dropdown Styling - Desktop (hidden) */
.mobile-dropdown {
    display: none !important;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.megamenu-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    padding: 0 2rem;
}

.megamenu-row:has(> :last-child:nth-child(1)) {
    grid-template-columns: repeat(1, 1fr);
}

.megamenu-row:has(> :last-child:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
}

.megamenu-row:has(> :last-child:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
}

.megamenu-col h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.megamenu-col ul {
    list-style: none;
}

.megamenu-col li {
    margin-bottom: 0.75rem;
}

.megamenu-col a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.megamenu-col a[href] {
    transition: background-color 0.3s;
}

.megamenu-col a[href]:hover {
    background-color: var(--light-bg);
}

.menu-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.megamenu-col span {
    font-size: 0.95rem;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .megamenu {
        display: none !important;
    }
}

/* Products Page */
.products-page-hero {
    background: var(--white);
    padding: 8rem 0 4rem;
}

.products-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.products-page-hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.products-page-hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.products-page-hero-image {
    text-align: center;
}

.products-page-image {
    width: 70%;
    height: auto;
    border-radius: 14px;
}

.products-page-cards {
    background: var(--white);
    padding: 4rem 0;
}

.products-page-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.products-page-card {
    padding: 2rem;
    text-align: left;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.products-page-card img {
    margin-bottom: 1rem;
}

.products-page-card h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.products-page-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .products-page-hero {
        padding: 8rem 0 3rem;
    }
    
    .products-page-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-page-image {
        width: 100%;
    }
    
    .products-page-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Account Information Service Page */
.ais-hero {
    background: var(--white) url('https://isabel-myponto.s3.amazonaws.com/uploads/header-home.webp') center/cover no-repeat;
}

.ais-features {
    background: var(--white);
    padding: 6rem 0 6rem;
}

.ais-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ais-feature-card {
    padding: 2rem 1.5rem;
    text-align: left;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
}

.ais-feature-card img {
    margin-bottom: 1rem;
}

.ais-feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.ais-feature-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.ais-benefits {
    background: var(--white);
    padding: 0 0 4rem;
}

.ais-benefits-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.ais-benefits-header h2 {
    /* font-size: 2rem;
    font-weight: 500;
    line-height: 1.3; */
    color: var(--secondary-color);
}

.ais-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
    padding-bottom: 6rem;
}

.ais-benefit-card {
    text-align: left;
}

.ais-benefit-card img {
    margin-bottom: 1rem;
}

.ais-benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.ais-benefit-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .ais-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ais-benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .ais-benefits-grid {
        grid-template-columns: 1fr;
    }
}

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

/* AIS Stats Section */
.ais-stats {
    background: var(--white);
    padding: 6rem 0;
}

.ais-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.ais-stat-card {
    padding: 3rem;
    text-align: left;
    border-radius: 0.375rem;
}

.ais-stat-card:first-child {
    background: var(--primary-color);
}

.ais-stat-card:first-child h3,
.ais-stat-card:first-child p {
    color: var(--dark-bg);
}

.ais-stat-card:last-child {
    background: var(--light-bg);
}

.ais-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.ais-stat-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .ais-stats-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Sandbox Section */
.sandbox-section {
    background: var(--white);
    padding: 6rem 2rem;
}

.sandbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.sandbox-left h2 {
    color: var(--secondary-color);
}

.sandbox-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sandbox-reason {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.sandbox-reason img {
    width: 64px;
    height: 64px;
}

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

@media (max-width: 992px) {
    .sandbox-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* PIS Section Header */
.pis-section-header {
    background: var(--white);
    padding: 4rem 0 0;
    border-radius: 1rem 0;
}

.pis-section-header h2 {
    color: var(--secondary-color);
    text-align: left;
}

/* PIS Stats Section */
.pis-stats {
    background: var(--white);
    padding: 6rem 0;
}

.pis-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pis-stat-card {
    padding: 3rem;
    text-align: left;
    border-radius: 0.375rem;
}

.pis-stat-yellow {
    background: var(--primary-color);
}

.pis-stat-yellow h3,
.pis-stat-yellow p {
    color: var(--dark-bg);
}

.pis-stat-grey {
    background: var(--light-bg);
}

.pis-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.pis-stat-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .pis-stats-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Customer Paying Model Page */
.cpm-intro {
    background: var(--white);
    padding: 4rem 0 0;
}

.cpm-intro p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    color: var(--text-color);
}

.cpm-benefits {
    background: var(--white);
    padding: 4rem 0;
}

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

.cpm-benefit p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cpm-benefit strong {
    display: block;
    margin-bottom: 0.5rem;
}

.cpm-pricing-cards {
    background: var(--white);
    padding: 2rem 0 4rem;
}

.cpm-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cpm-pricing-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.cpm-pricing-card h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cpm-pricing-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cpm-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .cpm-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cpm-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* CPM Hero Section */
.cpm-hero {
    padding: 8rem 0 6rem;
    border-radius: 0 0 14px 14px;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tag-yellow {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.pricing-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-page-hero-content {
    text-align: left;
}

.pricing-page-hero-content h1 {
    color: var(--secondary-color);
}

.pricing-page-hero-image {
    text-align: center;
}

.pricing-page-image {
    width: 70%;
    height: auto;
    border-radius: 1rem;
}

@media (max-width: 992px) {
    .pricing-page-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-page-image {
        width: 100%;
    }
}

.cpm-features-heading {
    font-weight: 400;
    margin: 1.5rem 0 1rem;
}

.cpm-features-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cpm-features-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* CPM Developer Section */
.cpm-developer {
    background: var(--white);
    padding: 2rem 0 4rem;
}

.cpm-note {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cpm-developer p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cpm-center {
    text-align: center;
    margin-top: 1.5rem;
}

/* CPM Fees Note Section */
.cpm-fees-note {
    background: var(--white);
    padding: 4rem 0 2rem;
}

.cpm-fees-note p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* CPM Includes Section */
.cpm-includes {
    background: var(--white);
    padding: 4rem 2rem;
}

.cpm-includes-header h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.cpm-include-item {
    text-align: left;
}

.cpm-include-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

.cpm-include-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cpm-includes-button {
    margin-top: 2rem;
}

/* CPM Custom CTA */
.cpm-cta {
    padding: 10rem 0 6rem;
}

@media (max-width: 992px) {
    .cpm-includes-grid {
        grid-template-columns: 1fr;
    }
    
    .cpm-cta {
        padding: 6rem 0;
    }
}

/* PPM Models Section */
.ppm-models {
    background: var(--white);
    padding: 4rem 0;
}

.ppm-principles {
    background: var(--white);
}

.ppm-principles p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Reach Cards Section */
.reach-cards {
    background: var(--white);
    padding: 4rem 0;
}

/* Developers Cards Section */
.developers-cards {
    background: var(--white);
    padding: 4rem 0;
}


/* Service Desk Section */
.service-desk {
    padding: 2rem 2rem;
}
/* Get Help Page Styles */
.get-help-slack-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.get-help-slack-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.get-help-private-section .products-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.get-help-private-section .products-left a {
    align-self: flex-start;
}

.get-help-slack-section .get-help-slack-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.get-help-slack-section .get-help-slack-title h4 {
    color: var(--secondary-color);
}

.get-help-private-section h2 {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.get-help-private-section .products-right h2 {
    font-size: 1.125rem;
    font-weight: bolder;
    margin-bottom: 0.5rem;
}

/* Resources Page Styles */
.resources-grid {
    background: var(--white);
    padding: 4rem 0 6rem;
}

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

.blog-post-featured {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-post-featured img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
}

.blog-post-featured h5 {
    margin: 0;
}

.blog-post-featured h5 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-featured h5 a:hover {
    color: var(--gray);
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.blog-post-card h5 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    min-height: 60px;
}

.blog-post-card h5 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card h5 a:hover {
    color: var(--gray);
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.blog-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date {
    font-size: 0.875rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-post-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-featured {
        grid-column: span 1;
    }
}

/* Resources Featured Post - Updated Styling */
.blog-post-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.featured-image .blog-category {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #f2ff00;
    color: #14141f;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
}

.featured-content .blog-date {
    font-size: 0.875rem;
    color: var(--gray);
}

.featured-content h2 {
    margin: 0;
}

.featured-content h2 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: var(--gray);
}

.featured-content .link {
    font-weight: 600;
}

@media (max-width: 992px) {
    .blog-post-featured {
        grid-template-columns: 1fr;
        grid-column: span 2;
    }
    
    .featured-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-post-featured {
        grid-column: span 1;
    }
}

/* Blog Single Post Styles */
.blog-related {
    background: var(--white);
}

.blog-related > .container > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .blog-related > .container > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-related > .container > div {
        grid-template-columns: 1fr;
    }
}

.blog-single-share a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.blog-single-share svg {
    height: 15px;
    width: 15px;
}

/* Blog Single Page - Complete Styling */

/* Back to overview section */
.blog-single-back {
    background-color: var(--white);
    padding: 2rem 0 0;
}

.blog-single-back .container {
    max-width: 1000px;
}

.blog-single-back a {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.blog-single-back a:hover {
    opacity: 0.7;
}

/* Featured image section */
.blog-single-image {
    background-color: var(--white);
    padding: 1.5rem 0 2rem;
}

.blog-single-image .container {
    max-width: 1000px;
}

.blog-single-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Hero section (meta + title) */
.blog-single-hero {
    background-color: var(--white);
    padding: 0 0 2rem;
}

.blog-single-hero .container {
    max-width: 1000px;
}

.blog-single-hero .blog-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-single-hero .blog-meta {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0.5rem 0 1rem;
}

.blog-single-hero h1 {
    font-size: 64px;
    margin: 0;
    color: var(--secondary-color);
}

/* Content section */
.blog-single-content {
    background-color: var(--white);
    padding: 0 0 3rem;
}

.blog-single-content .container {
    max-width: 1000px;
}

.blog-single-content .content {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.blog-single-content .content a {
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    color: var(--text-color);
}

.blog-single-content .content a:hover {
    opacity: 0.8;
}

.blog-single-content .content h2,
.blog-single-content .content h3,
.blog-single-content .content h4,
.blog-single-content .content h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.blog-single-content .content h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.blog-single-content .content h5 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-single-content .content p {
    margin-bottom: 1.5rem;
}

.blog-single-content .content strong {
    font-weight: 600;
}

.blog-single-content .content ul {
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.blog-single-content .content ol {
    padding-left: 2rem;
    padding-bottom: 2rem;
}

/* Share section */
.blog-single-share {
    background-color: var(--white);
    padding: 0 0 3rem;
}

.blog-single-share .container {
    max-width: 1000px;
}

.blog-single-share .share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-single-share .share-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
}

.blog-single-share a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.blog-single-share a:hover {
    opacity: 0.7;
}

.blog-single-share img {
    height: 15px;
    width: auto;
}

/* Related posts section */
.blog-related {
    background-color: var(--white);
    padding: 3rem 0 4rem;
}

.blog-related .container {
    max-width: 1000px;
}

.blog-related h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

@media (max-width: 992px) {
    .blog-related .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-related .related-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-single-content .content {
        font-size: 1rem;
    }
}

/* Blog Content Images */
.blog-single-content .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 0.5rem;
}

.blog-single-content .content p img {
    max-width: 100%;
    height: auto;
}

/* Ensure images don't overflow on smaller screens */
@media (max-width: 768px) {
    .blog-single-content .content img {
        margin: 1.5rem auto;
    }
}

/* HubSpot Form Styling */
.hs-form {
    font-family: 'Inter', sans-serif;
}

.hs-form fieldset {
    max-width: 100% !important;
    margin-bottom: 0 !important;
}

.hs-form .hs-form-field {
    margin-bottom: 1rem;
}

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

.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form select,
.hs-form textarea {
    width: 100% !important;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.hs-form input[type="text"]:focus,
.hs-form input[type="email"]:focus,
.hs-form input[type="tel"]:focus,
.hs-form select:focus,
.hs-form textarea:focus {
    outline: none;
    border-color: #f2ff00;
    box-shadow: 0 0 0 3px rgba(242, 255, 0, 0.1);
}

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

.hs-form ul {
    display: flex;
}

.hs-form ul li {
    padding: 0 1rem;
    list-style-type: none;
}

.hs-form .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.hs-form .hs-error-msg {
    color: #dc3545;
    font-size: 0.875rem;
}

.hs-form .hs-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 1.5s ease;
}

.hs-form .hs-button:hover {
    transform: translateY(-2px);
}

.hs-form .hs-richtext {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--white);
}

.hs-form .hs-richtext p {
    margin: 0;
}

.hs-form .legal-consent-container {
    margin-top: 1rem;
}

.hs-form .hs-form-booleancheckbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hs-form input[type="checkbox"] {
    width: auto !important;
    margin-top: 0.25rem;
}

.hs-form .hs-form-booleancheckbox-display {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

.hs-form .hs-dependent-field {
    margin-left: 0 !important;
}

.hs-form a {
    text-decoration: none;
    font-weight: bold;
    color: var(--white);
}

/* Make sure form is responsive */
@media (max-width: 768px) {
    .hs-form input[type="text"],
    .hs-form input[type="email"],
    .hs-form input[type="tel"],
    .hs-form select,
    .hs-form textarea {
        font-size: 0.95rem;
        padding: 0.65rem 0.85rem;
    }
    
    .hs-form .hs-button {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }
}
