/* ================================
   FEATURES SECTION STYLES
   ================================ */
.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.main-features {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-showcase.feature-reverse .feature-content {
    order: 2;
}

.feature-showcase.feature-reverse .feature-image {
    order: 1;
}

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

.feature-main-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-main-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-main-description {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.detail-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
}

.detail-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--success-green);
}

.feature-detail-item p {
    color: var(--text-medium);
    line-height: 1.5;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.learn-more-link:hover {
    color: var(--primary-green);
}

.learn-more-link svg {
    transition: transform var(--transition-normal);
}

.learn-more-link:hover svg {
    transform: translateX(0.25rem);
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    border-radius: var(--radius-2xl);
    pointer-events: none;
}

/* Additional Features */
.additional-features {
    margin-top: 5rem;
}

.additional-features-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.additional-feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.additional-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.additional-feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.additional-feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.additional-feature-description {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Shared mobile section padding */
    .features-section,
    .testimonials-section,
    .faq-section, 
    .contact-section {
        padding: 3rem 0;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-showcase .feature-details {
        text-align: left;
    }
    
    .feature-showcase .feature-detail-item {
        text-align: left;
    }
    
    .feature-showcase.feature-reverse .feature-content,
    .feature-showcase.feature-reverse .feature-image {
        order: unset;
    }
    
    .main-features {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .main-features {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .additional-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .feature-header {
        align-items: center;
        text-align: center;
    }
    
    .feature-header .feature-main-title,
    .feature-header .feature-main-description {
        text-align: center;
    }
    
    .additional-feature-card {
        padding: 1.25rem;
    }
}

/* ================================
   TESTIMONIALS SECTION STYLES - MASONRY GRID
   ================================ */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Trust Header with Social Proof */
.testimonials-trust-header {
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.trust-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0 0;
    line-height: 1;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

/* Header with Avatar and User Info */
.testimonial-header {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
    flex-shrink: 0;
}

.testimonial-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.testimonial-name-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.verified-badge {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.testimonial-role {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-location svg {
    flex-shrink: 0;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #FBBF24;
}

/* Quote Mark */
.quote-mark {
    color: rgba(37, 99, 235, 0.15);
    float: left;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    pointer-events: none;
    width: 24px;
    height: 19px;
}

/* Quote Text */
.testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-style: normal;
    margin: 0;
}

.testimonial-quote strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Metric Badges */
.testimonial-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.metric-badge svg {
    flex-shrink: 0;
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-avatar {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 1024px) {
    .trust-stats {
        gap: 2rem;
    }

    .trust-stat {
        padding: 1rem 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-user-info {
        align-items: center;
    }

    .testimonial-name-verified {
        justify-content: center;
    }

    .testimonial-location {
        justify-content: center;
    }

    .testimonial-avatar {
        width: 180px;
        height: 180px;
    }
}

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

    .trust-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .trust-stat {
        justify-content: center;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-avatar {
        width: 160px;
        height: 160px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .quote-mark {
        width: 20px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .trust-stat-number {
        font-size: 1.25rem;
    }

    .trust-stat-label {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 140px;
        height: 140px;
        border-width: 4px;
    }

    .testimonial-name {
        font-size: 1.125rem;
    }

    .testimonial-quote {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .testimonial-stars {
        justify-content: center;
    }

    .testimonial-badges {
        justify-content: center;
    }

    .metric-badge {
        font-size: 0.8125rem;
        padding: 0.4rem 0.75rem;
    }

    .quote-mark {
        width: 18px;
        height: 14px;
        margin-right: 0.5rem;
    }
}

/* ================================
   FAQ SECTION STYLES
   ================================ */
.faq-section {
    padding: 5rem 0;
    background: white;
    border-top: 1px solid var(--border-light);
}

.faq-section .section-header {
    margin-bottom: 3.5rem;
    padding-top: 1rem;
}

/* Search Bar */
.faq-search-container {
    max-width: 48rem;
    margin: 0 auto 2rem;
    position: relative;
}

.faq-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    padding: 1.125rem 1.125rem 1.125rem 3.5rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-xl);
    font-size: 1.0625rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #FAFAFA;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

/* Category Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.faq-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.faq-tab svg {
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.faq-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.faq-tab.active svg {
    transform: scale(1.1);
}

/* FAQ Container */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: background-color var(--transition-normal);
}

.faq-question:hover {
    background-color: rgba(249, 250, 251, 0.8);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.faq-emoji {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.25rem;
    transition: transform var(--transition-normal);
}

/* Category-specific icon colors */
.faq-item[data-category="getting-started"] .faq-emoji {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue);
}

.faq-item[data-category="money-returns"] .faq-emoji {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success-green);
}

.faq-item[data-category="features"] .faq-emoji {
    background: rgba(147, 51, 234, 0.08);
    color: #9333EA;
}

.faq-item[data-category="safety"] .faq-emoji {
    background: rgba(6, 182, 212, 0.08);
    color: #06B6D4;
}

.faq-item:hover .faq-emoji {
    transform: scale(1.1);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 30rem;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.faq-answer p strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Empty State */
.faq-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 2px dashed var(--border-light);
    display: none;
}

.faq-empty-state.visible {
    display: block;
}

.faq-empty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.faq-empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-empty-state p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.faq-popular-questions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 24rem;
    margin: 0 auto;
}

.faq-popular-question {
    background: var(--bg-light);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    border-left: 3px solid transparent;
}

.faq-popular-question:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    border-left: 3px solid var(--primary-blue);
    transform: translateX(4px);
}

/* Additional Help */
.additional-help {
    margin-top: 3rem;
    text-align: center;
}

.help-card {
    background: rgba(37, 99, 235, 0.04);
    padding: 2rem;
    border-radius: var(--radius-2xl);
}

.help-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.help-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

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

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

.btn-whatsapp svg,
.btn-email svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Responsive Design for FAQ */
@media (min-width: 640px) {
    .help-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-tabs {
        gap: 0.5rem;
    }

    .faq-tab {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .faq-tab svg {
        width: 16px;
        height: 16px;
    }

    .faq-search-input {
        padding: 0.875rem 0.875rem 0.875rem 3rem;
        font-size: 0.9375rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-emoji {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
    }

    .help-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        padding: 0 0 0.5rem;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .faq-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .faq-search-container {
        margin-bottom: 1.5rem;
    }

    .faq-search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.75rem;
        font-size: 0.875rem;
    }

    .faq-search-icon {
        left: 1rem;
        width: 18px;
        height: 18px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question-content {
        gap: 0.5rem;
    }

    .faq-emoji {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 0.9375rem;
    }

    .faq-icon {
        width: 1.25rem;
        height: 1.25rem;
        flex-shrink: 0;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }
}

/* ================================
   CONTACT SECTION STYLES
   ================================ */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(249, 250, 251, 1) 0%, rgba(37, 99, 235, 0.05) 100%);
}

/* Hero-style Contact Header */
.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Primary Gradient Button (Download App) */
.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary-gradient:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-primary-gradient svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* WhatsApp Large Button (Secondary) */
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

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

.btn-whatsapp-large svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Quick Contact Methods - 3 Column Grid */
.quick-contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-method-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-method-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-method-icon.email-icon {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.contact-method-icon.phone-icon {
    background: rgba(147, 51, 234, 0.1);
    color: #9333EA;
}

.contact-method-icon svg {
    width: 2rem;
    height: 2rem;
}

.contact-method-content h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-method-content a {
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.contact-method-content a:hover {
    color: var(--primary-green);
}

.contact-method-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(37, 99, 235, 0.08);
    color: var(--text-medium);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.contact-method-badge.instant {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.15);
}

.contact-method-badge.email {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.contact-method-badge.phone {
    background: rgba(147, 51, 234, 0.08);
    border-color: rgba(147, 51, 234, 0.15);
}

/* Trust & Partners Unified Section */
.trust-partners-unified {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.trust-partners-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Trust Features Column */
.trust-features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.trust-feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-green);
    flex-shrink: 0;
}

.trust-feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.trust-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.trust-feature-text p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Partners Column */
.partners-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partners-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.partners-description strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.partner-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.partner-logo-item {
    width: 5rem;
    height: 5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.partner-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.partner-logo-item .partner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partners-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-style: italic;
}

/* Support Hours */
.support-hours {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.support-hours p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.support-hours-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .quick-contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-partners-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trust-partners-unified {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-hero {
        margin-bottom: 3rem;
    }

    .contact-hero-title {
        font-size: 1.75rem;
    }

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

    .contact-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-gradient,
    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
    }

    .quick-contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-method-card {
        padding: 1.75rem;
    }

    .trust-partners-unified {
        padding: 2rem;
    }

    .trust-partners-title {
        font-size: 1.5rem;
    }

    .partner-logos-row {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.5rem;
    }

    .contact-hero-subtitle {
        font-size: 0.9375rem;
    }

    .btn-primary-gradient,
    .btn-whatsapp-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-method-card {
        padding: 1.5rem;
    }

    .contact-method-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .contact-method-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .trust-partners-unified {
        padding: 1.5rem;
    }

    .trust-partners-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

    .trust-feature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .trust-feature-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .partner-logo-item {
        width: 4rem;
        height: 4rem;
        padding: 0.5rem;
    }

    .partner-logos-row {
        gap: 1rem;
    }
}

/* ================================
   FOOTER STYLES
   ================================ */
.footer {
    background: var(--text-dark);
    color: white;
}

.footer-disclaimer {
    background: var(--primary-blue);
    padding: 1rem 0;
}

.footer-disclaimer p {
    color: white;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.footer-main {
    padding: 4rem 0 2rem;
}

/* Footer Grid - 5 Column Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-logo-text p {
    color: var(--success-green);
    font-size: 0.9375rem;
    margin: 0;
    font-weight: 600;
}

.footer-description {
    color: #D1D5DB;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* App Download CTAs in Footer */
.footer-app-download {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-footer-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-footer-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-footer-primary:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-footer-android {
    background: transparent;
    color: #3DDC84;
    border: 2px solid #3DDC84;
    box-shadow: 0 4px 12px rgba(61, 220, 132, 0.15);
}

.btn-footer-android:hover {
    background: rgba(61, 220, 132, 0.1);
    border-color: #3DDC84;
    color: #3DDC84;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(61, 220, 132, 0.3);
}

.btn-footer-ios {
    background: transparent;
    color: #007AFF;
    border: 2px solid #007AFF;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.15);
}

.btn-footer-ios:hover {
    background: rgba(0, 122, 255, 0.1);
    border-color: #007AFF;
    color: #007AFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.3);
}

.btn-footer-download svg {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.875rem;
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: 2px solid transparent;
}

.social-link.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.social-link.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-link.email {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.social-link.email:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: white;
    border-color: #E1306C;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.social-link.linkedin {
    background: rgba(10, 102, 194, 0.1);
    color: #0A66C2;
}

.social-link.linkedin:hover {
    background: #0A66C2;
    color: white;
    border-color: #0A66C2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.social-link.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link svg {
    width: 1.375rem;
    height: 1.375rem;
}

/* Footer Links Columns */
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

/* Company Registration Details */
.footer-registration {
    background: rgba(55, 65, 81, 0.5);
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid #374151;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.registration-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.registration-item strong {
    color: #9CA3AF;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.registration-item {
    color: white;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.heart-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #EF4444;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-links:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-links:last-child ul {
        gap: 0.625rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-app-download {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .registration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: none;
        justify-content: center;
        margin: 0 auto;
    }

    .footer-description {
        text-align: center;
        width: 100%;
    }

    .footer-logo {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
    }

    .footer-links:last-child {
        display: block;
        grid-template-columns: none;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none !important;
    }

    .footer-app-download {
        display: flex;
        justify-content: center;
    }

    .footer-registration {
        padding: 1.5rem;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-disclaimer {
        padding: 0.75rem 0;
    }

    .footer-disclaimer p {
        font-size: 0.75rem;
    }

    .footer-main {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo-text h3 {
        font-size: 1.25rem;
    }

    .footer-logo-text p {
        font-size: 0.875rem;
    }

    .footer-description {
        font-size: 0.875rem;
    }

    .btn-footer-download {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .social-link {
        width: 2.5rem;
        height: 2.5rem;
    }

    .social-link svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-registration {
        padding: 1.25rem;
    }

    .registration-item strong {
        font-size: 0.75rem;
    }

    .registration-item {
        font-size: 0.875rem;
    }

    .footer-copyright,
    .footer-made-with {
        font-size: 0.8125rem;
    }

    /* Features Section Mobile Fixes */
    .feature-detail-item {
        text-align: left;
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
    }

    .feature-detail-item p {
        text-align: left;
        line-height: 1.5;
        word-wrap: break-word;
        width: 100%;
        flex: 1;
    }
}

/* ================================
   BLOG PREVIEW SECTION
   ================================ */
.blog-preview-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 50%, rgba(16, 185, 129, 0.05) 100%);
}

/* Section header already defined globally, no need to redefine */

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

/* Blog Preview Card */
.blog-preview-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-preview-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-lg);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.tag-beginner {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
}

.tag-sip {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.tag-tax-saving {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.blog-card-meta time,
.blog-card-meta .meta-read-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card-meta svg {
    opacity: 0.6;
}

.blog-card-cta {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.blog-preview-card:hover .blog-card-cta {
    color: #1d4ed8;
    transform: translateX(4px);
}

/* View All CTA */
.blog-preview-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary svg {
    transition: transform var(--transition-fast);
}

.btn-outline-primary:hover svg {
    transform: translateX(4px);
}

/* ================================
   BLOG PREVIEW RESPONSIVE
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-preview-section {
        padding: 4rem 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-preview-section {
        padding: 3rem 0;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-title {
        font-size: 1.125rem;
    }

    .blog-card-excerpt {
        font-size: 0.875rem;
    }

    .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   JARGON CROSS-OUT STRIP
   ================================ */
.jargon-strip {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.jargon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    width: 100%;
}

.jargon-words-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem 2rem;
    background: #EFF6FF;
    padding: 4rem 3rem 4rem 10%;
}

.jargon-word {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

.word-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.cross-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    transform: translateY(-50%);
    z-index: 2;
}

.jargon-word.crossed-out .word-text {
    color: var(--text-muted);
    opacity: 0.6;
}

.jargon-final-message {
    text-align: left;
    background: #F0FDF4;
    padding: 4rem 10% 4rem 3rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jargon-final-message.visible {
    opacity: 1;
    transform: translateX(0);
}

.message-text-wrapper {
    /* Container for title and subtitle animation */
}

.message-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.message-subtitle-container {
    position: relative;
    min-height: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.message-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateX(100%) translateY(-50%);
    transition: transform 0.6s ease-in-out;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: inherit;
}

.message-subtitle.active {
    transform: translateX(0) translateY(-50%);
}

.message-subtitle.exiting {
    transform: translateX(-100%) translateY(-50%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .jargon-strip {
        padding: 0;
        background: linear-gradient(to bottom, #EFF6FF 0%, #F0FDF4 100%);
    }

    .jargon-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .jargon-words-container {
        gap: 1rem 1.5rem;
        justify-content: center;
        background: transparent;
        padding: 3rem 1rem;
    }

    .jargon-final-message {
        text-align: center;
        background: transparent;
        padding: 3rem 1rem;
        transform: translateY(30px);
        justify-content: center;
    }

    .jargon-final-message.visible {
        transform: translateY(0);
    }

    .message-text-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .message-subtitle-container {
        min-height: auto;
        justify-content: center;
        overflow: visible;
    }

    .word-text {
        font-size: 1.0625rem;
    }

    .message-title {
        font-size: 1.875rem;
    }

    .message-subtitle {
        font-size: 1.125rem;
        line-height: 1.5;
        /* Override absolute positioning for mobile - use fade animation */
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        opacity: 0;
        display: none;
        transition: opacity 0.6s ease-in-out;
    }

    .message-subtitle.active {
        opacity: 1;
        display: block;
        transform: none;
    }

    .message-subtitle.exiting {
        opacity: 0;
        display: block;
        transform: none;
    }
}

@media (max-width: 480px) {
    .jargon-words-container {
        gap: 0.875rem 1.25rem;
    }

    .word-text {
        font-size: 1rem;
    }

    .message-title {
        font-size: 1.5rem;
    }

    .message-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .message-subtitle-container {
        min-height: auto;
    }
}