.no-js .typewriter {
    display: none !important;
}

.brand-story .story-visual img {
    width: 100%;
    height: auto;
}

.hero {
    position: relative;
    text-align: left;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f0f7 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    filter: blur(2px) saturate(1.2);
}

.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration svg {
    max-width: 1024px;
    width: 100%;
    height: auto;
}

@keyframes heroImageAnimation {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(2%, 2%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-content.loaded {
    opacity: 1;
    transform: translateY(0);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: #e51e5a;
    color: #fff;
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.2);
}

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.1rem; /* 17.6px */
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Headings */
h1, .h1, .hero h1 {
    font-size: 2.8rem; /* 45px */
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.03em;
}

h2, .h2, .section-header h2 {
    font-size: 2.25rem; /* 36px */
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

h3, .h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
}

h4, .h4 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem;
}

h5, .h5 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 1rem;
}

/* Paragraphs */
p {
    margin: 0 0 1rem;
    font-size: 1.1rem; /* 17.6px */
    line-height: 1.5;
    color: #4a4a6a;
    font-weight: 400;
}

/* Hero Specific */
.hero h1 {
    background: linear-gradient(90deg, #1a1a2e 0%, #4a148c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    max-width: 90%;
    margin-bottom: 1.8rem;
}

/* Buttons */
.btn {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Labels & Badges */
.label, .badge, .tag, .hero-tag {
    font-size: 0.95rem; /* 15.2px */
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

/* Section Headers */
.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: #5a5a72;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Small Text */
.small, small {
    font-size: 0.95rem; /* 15.2px */
    line-height: 1.4;
}

/* Links */
a {
    color: #4a148c;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1a1a2e;
    text-decoration: underline;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1, .h1, .hero h1 {
        font-size: 2.25rem; /* 36px */
    }
    
    h2, .h2, .section-header h2 {
        font-size: 1.875rem; /* 30px */
    }
    
    h3, .h3 {
        font-size: 1.5rem; /* 24px */
    }
    
    h4, .h4 {
        font-size: 1.25rem; /* 20px */
    }
    
    h5, .h5 {
        font-size: 1.125rem; /* 18px */
    }
    
    body, p {
        font-size: 1.05rem; /* 16.8px */
    }
}

.typewriter {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.hero h1.typewriter {
    display: block;
    width: fit-content;
    margin: 0 auto 1.5rem auto;
}

.hero p.typewriter {
    display: block;
}

.typewriter.reveal-animation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
}

.hero-buttons.show {
    opacity: 1;
    visibility: visible;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-buttons.show .btn {
    animation: fadeInUp 0.6s ease-out forwards;
}

.btn-gradient {
    background: #e51e5a;
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 127, 191, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(216, 27, 96, 0.05);
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 6rem 1rem 4rem;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* About Bridge Section */
.about-bridge {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-bridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216, 27, 96, 0.1), transparent);
}

.about-bridge-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.about-bridge h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.about-bridge h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7fbf, #ff4d9e);
    border-radius: 2px;
}

.about-bridge p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a6a;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-bridge .btn-outline {
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-bridge .btn-outline:hover {
    background: var(--color-primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.15);
}

.about-bridge .btn-outline i {
    transition: transform 0.3s ease;
}

.about-bridge .btn-outline:hover i {
    transform: translateX(3px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-bridge {
        padding: 5rem 0;
    }
    
    .about-bridge h2 {
        font-size: 2.2rem;
    }
    
    .about-bridge p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .about-bridge {
        padding: 4rem 0;
    }
    
    .about-bridge h2 {
        font-size: 1.9rem;
    }
    
    .about-bridge p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .about-bridge .btn-outline {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background-color: #f9f5ff;
    position: relative;
    overflow: hidden;
}

.why-us .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.why-us .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff7fbf, #ff4d9e);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(216, 27, 96, 0.1);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(216, 27, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 4rem 0;
    }
    
    .why-us .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

/* Companies Section */
.companies-section {
    padding: 4rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.companies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    padding: 1rem 0;
}

.company-logo {
    flex: 0 0 auto;
    max-width: 100px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0%);
    padding: 0.5rem;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.company-logo img {
    max-width: 100%;
    height: auto;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Globe Section */
.globe-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f0f7 100%);
    position: relative;
    overflow: hidden;
    color: #111;
}

.globe-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#animated-globe-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

#animated-globe-container canvas {
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(216, 27, 96, 0.2);
}

@media (max-width: 992px) {
    .globe-content {
        flex-direction: column;
        text-align: center;
    }
    
    .globe-text h2 {
        font-size: 2rem;
    }
    
    #animated-globe-container {
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .globe-section {
        padding: 4rem 0;
    }
    
    #animated-globe-container {
        max-width: 350px;
        height: 350px;
    }
}

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

.pricing-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(216, 27, 96, 0.10);
    padding: 2.2rem 1.5rem 2.5rem 1.5rem;
    margin-bottom: 0;
    border: 2px solid #f8bbd0;
}

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

.pricing-features-list .check-item {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    background: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 12px rgba(216, 27, 96, 0.06);
}

.pricing-features-list .check-item i {
    color: #e51e5a;
    font-size: 1.2em;
    margin-right: 0.7em;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5em 1em;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.role-card:hover .card-badge {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.features-grid.three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.video-testimonial-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(216, 27, 96, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(216, 27, 96, 0.12);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-testimonial-content {
    padding: 2rem;
    text-align: center;
}

.video-testimonial-content h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-testimonial-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(216, 27, 96, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(216, 27, 96, 0.15), 0 0 30px rgba(255, 127, 191, 0.3);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(229, 30, 90, 0.08);
    color: #e51e5a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(229, 30, 90, 0.15);
    transition: all 0.2s ease;
}

.service-contact-btn i {
    font-size: 1em;
    opacity: 0.8;
}

.service-contact-btn:hover {
    background: rgba(229, 30, 90, 0.12);
    color: #d81b60;
    border-color: rgba(229, 30, 90, 0.25);
    transform: translateY(-1px);
}

.services-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7fbf, #ff4d9e);
    border-radius: 2px;
}

.services-section p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Tabs */
.services-tabs {
    margin-top: 2rem;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.tab-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: #f1f3f5;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.2);
}

.tab-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 5rem 0;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        scrollbar-width: none; /* Firefox */
    }
    
    .tab-buttons::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 0;
    background: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.roadmap-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.roadmap-section h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.roadmap-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    border-radius: 2px;
}

.roadmap-section p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a6cf7, #6a11cb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
    flex-shrink: 0;
    margin-right: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(106, 17, 203, 0.2);
}

.timeline-content h3 {
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -1.5rem 0;
    position: relative;
    z-index: 1;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #4a6cf7, #6a11cb);
    margin: 0.5rem 0;
    opacity: 0.3;
}

.connector-arrow {
    color: #6a11cb;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Vantage Section */
.vantage-section {
    padding: 6rem 0;
    background: #fff6fb;
    color: #111;
    position: relative;
    overflow: hidden;
}

.vantage-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.vantage-section h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.vantage-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    border-radius: 2px;
}

.vantage-section p {
    color: #111;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.vantage-card {
    background: #fff;
    border: 1px solid #f4b4d4;
    border-radius: 14px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(216, 27, 96, 0.10);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9);
}

.vantage-card.visible {
    opacity: 1;
    transform: scale(1);
}

.vantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.vantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #4a6cf7 0%, #6a11cb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: #fff;
    box-shadow: 0 4px 18px rgba(106, 17, 203, 0.18);
    transition: all 0.3s ease;
}

.vantage-card:hover .vantage-icon {
    background: linear-gradient(135deg, #4a6cf7, #6a11cb);
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.vantage-card h3 {
    color: #111;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vantage-card p {
    color: #111;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.roadmap-steps {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.roadmap-step {
    position: relative;
    display: flex;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.roadmap-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a6cf7, #6a11cb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.roadmap-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(74, 108, 247, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6edff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #4a6cf7;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.roadmap-step:hover .step-icon {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, #4a6cf7, #6a11cb);
    color: white;
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

.step-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4a6cf7, #6a11cb);
    border-radius: 3px;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 1rem 0 0;
    font-size: 1.05rem;
}

.roadmap-connector {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e2e8f0, #cbd5e1, #e2e8f0);
    z-index: 1;
}

/* Alternate layout for even steps */
.roadmap-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.roadmap-step:nth-child(even) .step-number {
    margin-right: 0;
    margin-left: 2rem;
}

.roadmap-step:nth-child(even) .step-content h3::after {
    left: auto;
    right: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .roadmap-section, .vantage-section {
        padding: 5rem 0;
    }
    
    .roadmap-step {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }
    
    .roadmap-step:nth-child(even) {
        flex-direction: column;
        text-align: left;
    }
    
    .step-number {
        margin: 0 0 1.5rem 2rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .roadmap-step:nth-child(even) .step-number {
        margin: 0 0 1.5rem 2rem;
    }
    
    .roadmap-connector {
        left: 21.5px;
    }
    
    .vantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .roadmap-section h2, 
    .vantage-section h2 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .vantage-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .about-bridge h2 {
        font-size: 1.7rem;
    }
    
    .about-bridge p {
        font-size: 1rem;
    }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    background: rgba(236, 72, 153, 0.22);
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
}

.hero-badge i {
    font-size: 1.1rem;
}

:root {
    --color-primary: #d81b60;
    --color-secondary: #f4b4d4;
    --color-accent: #fde8f3;
    --color-accent-deep: #8c1748;
    --color-background: #fdf9fc;
    --color-surface: #ffffff;
    --color-surface-soft: #f7eef5;
    --color-text: #23192b;
    --color-muted: #6f5d6a;
    --color-border: rgba(216, 27, 96, 0.18);
    --shadow-elevated: 0 18px 40px rgba(35, 25, 43, 0.12);
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background: linear-gradient(180deg, #fdf9fc 0%, #ffffff 55%, #f9f1f7 100%);
    line-height: 1.65;
    position: relative;
    opacity: 0;
    animation: fadeInBody 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #ff7fbf, #ff99cc);
    border-radius: 4px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--color-secondary);
}

.container {
    width: min(1160px, 90vw);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 16px 32px rgba(216, 27, 96, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn.primary {
    background: linear-gradient(90deg, #ff7fbf, #ff99cc);
    color: white;
}

.btn.primary:hover {
    box-shadow: 0 5px 15px rgba(255, 128, 191, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(216, 27, 96, 0.22);
    color: var(--color-primary);
    background: rgba(216, 27, 96, 0.08);
}

.btn-secondary:hover {
    background: rgba(216, 27, 96, 0.12);
}

.btn.secondary {
    border: 2px solid #ff7fbf;
    color: #ff7fbf;
    margin-left: 1rem;
    background: transparent;
}

.btn.secondary:hover {
    background: #ff7fbf;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(253, 249, 252, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(216, 27, 96, 0.08);
    padding: 0.85rem 0;
    box-shadow: 0 8px 24px rgba(35, 25, 43, 0.06);
}

.logo {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.14em;
    display: inline-flex;
    align-items: center;
}


.site-logo {
    display: block;
    height: clamp(68px, 12vw, 120px);
    width: auto;
    object-fit: contain;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-badge {
    width: 44px;
    height: 44px;
    color: var(--color-primary);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.4vw, 2.4rem);
    flex: 1;
    font-weight: 500;
    color: rgba(35, 25, 43, 0.64);
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2.2vw, 1.9rem);
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
}

.nav-links a {
    padding: 0.35rem 0.5rem;
    transition: color 0.2s ease;
    position: relative;
    color: inherit;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--color-primary);
}

.nav-links a.active::after,
.nav-links a:hover::after,
.nav-links a:focus::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary), rgba(244, 180, 212, 0.8));
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: clamp(1.2rem, 3.5vw, 2.1rem);
    margin-left: auto;
    flex-shrink: 0;
    flex-wrap: nowrap;
    position: relative;
    padding-left: clamp(1.2rem, 3vw, 3.4rem);
}

.nav .btn {
    flex-shrink: 0;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    background: rgba(5, 8, 22, 0.75);
    border: 1px solid rgba(34, 211, 238, 0.45);
    color: var(--color-secondary);
    font-weight: 600;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-phone:hover {
    background: rgba(34, 211, 238, 0.15);
    box-shadow: 0 12px 24px rgba(34, 211, 238, 0.25);
}

.hero {
    padding: 7rem 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1080px, 90vw);
    display: grid;
    gap: 1.6rem;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c2c2c;
    animation: slideUp 0.8s ease-out;
}


.hero-preheading {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(216, 27, 96, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.hero-preheading img {
    display: inline-block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c2c2c;
    margin: 0;
    animation: slideUp 0.8s ease-out;
}

.hero p {
    max-width: 600px;
    color: rgba(35, 25, 43, 0.68);
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.logo-row img {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: none;
}

.header-bar {
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg, #ff7fbf, #ff9a8b, #ffb199);
    background-size: 300% 100%;
    animation: slideGradient 6s infinite linear;
    border-radius: 0 0 8px 8px;
}

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

@keyframes slideGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav .has-dropdown {
    position: relative;
}

.nav .quick-nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    color: rgba(35, 25, 43, 0.6);
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.nav .quick-nav-toggle:hover,
.nav .quick-nav-toggle:focus {
    color: var(--color-primary);
}

.topbar > .quick-search {
    display: none;
}

.nav-actions .quick-search[hidden] {
    display: none !important;
}

.nav-actions .quick-search {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex: 0 1 clamp(240px, 30vw, 340px);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    border: 1px solid rgba(216, 27, 96, 0.16);
    padding: 0.35rem 0.7rem 0.35rem 0.8rem;
    margin-left: clamp(1.6rem, 3.4vw, 2.6rem);
    margin-right: clamp(1rem, 2.8vw, 2rem);
    position: relative;
    z-index: 3;
}

.nav-actions .btn-whatsapp {
    margin-left: auto;
}


.quick-search input {
    flex: 1;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    color: var(--color-text);
}

.quick-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(229, 0, 130, 0.2);
    background: rgba(229, 0, 130, 0.08);
    color: var(--color-primary);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quick-search-toggle:hover,
.quick-search-toggle:focus {
    transform: translateY(-1px);
    background: rgba(229, 0, 130, 0.16);
    box-shadow: 0 10px 20px rgba(229, 0, 130, 0.2);
}

.quick-search {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}


.quick-submenu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 0.75rem 0.9rem;
    box-shadow: 0 18px 30px rgba(229, 0, 130, 0.18);
    border: 1px solid rgba(229, 0, 130, 0.2);
    display: grid;
    gap: 0.65rem;
    min-width: 220px;
    z-index: 5;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-submenu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quick-submenu li {
    list-style: none;
}


.quick-submenu .quick-nav-link {
    display: block;
    color: var(--color-muted);
    font-weight: 500;
    padding-bottom: 0;
}

.quick-submenu .quick-nav-link:hover,
.quick-submenu .quick-nav-link:focus {
    color: var(--color-primary);
}


.quick-submenu .quick-nav-link::after {
    display: none;
}

.quick-search {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.quick-search input {
    flex: 1;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(216, 27, 96, 0.18);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
}

.quick-search input::placeholder {
    color: rgba(88, 80, 99, 0.6);
}

.quick-search .btn {
    padding: 0.5rem 1.1rem;
    white-space: nowrap;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    border: none;
    box-shadow: 0 10px 18px rgba(216, 27, 96, 0.18);
}

.section {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.section h2 {
    position: relative;
    z-index: 2;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.grid {
    display: grid;
    gap: 2.1rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(48px);
    transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.75s ease;
    will-change: transform, opacity;
}

[data-animate="fade-up"] {
    transform: translateY(36px);
}

[data-animate="slide-up"] {
    transform: translateY(52px);
}

[data-animate="slide-right"] {
    transform: translateX(-52px);
}

[data-animate="slide-left"] {
    transform: translateX(52px);
}

[data-animate="zoom-in"] {
    transform: scale(0.88);
}

[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.eyebrow {
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.brand-logos {
    padding-top: 0;
}

.role-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    height: 100%;
    min-height: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.role-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23, 18, 32, 0.45) 0%, rgba(23, 18, 32, 0.24) 55%, rgba(23, 18, 32, 0.1) 100%);
    z-index: 0;
    transition: opacity 0.4s ease;
}


.role-card-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    color: #ffffff;
}

.role-card-overlay h3 {
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
}

.role-card-overlay p {
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1.05rem;
}

.role-card-overlay .link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.role-card-overlay .link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    text-decoration: none;
}

.role-card:hover img {
    transform: scale(1.08);
}

.role-card:hover::after {
    opacity: 0.75;
}

.card {
    background: linear-gradient(180deg, #ffffff, #f9f1f7);
    border-radius: 22px;
    padding: 2.1rem;
    border: 1px solid rgba(35, 25, 43, 0.06);
    box-shadow: var(--shadow-elevated);
    display: grid;
    gap: 1rem;
    color: var(--color-text);
}

.card .card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(244, 180, 212, 0.28);
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1px rgba(216, 27, 96, 0.18);
}

.card h3 {
    margin: 0;
}

.card p {
    color: rgba(31, 31, 39, 0.75);
}

.card-image {
    border-radius: 18px;
    height: 190px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 18px 32px rgba(35, 25, 43, 0.14);
}

.section-accent {
    background: linear-gradient(180deg, #fdf9fc, #f7eef5);
    border-top: 1px solid rgba(35, 25, 43, 0.05);
    border-bottom: 1px solid rgba(216, 27, 96, 0.1);
}

.process {
    display: grid;
    gap: 1.6rem;
    padding-left: 1.25rem;
    color: var(--color-muted);
}

.process strong {
    color: var(--color-text);
}

.highlight-card {
    background: linear-gradient(135deg, #ffffff, #f9f1f7);
    border-radius: 24px;
    padding: 2.4rem;
    border: 1px solid rgba(35, 25, 43, 0.05);
    box-shadow: var(--shadow-elevated);
}

.highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    color: rgba(31, 31, 39, 0.72);
}

.testimonial {
    background: var(--color-surface);
    border-radius: 22px;
    border: 1px solid var(--color-border);
    padding: 2.1rem;
    display: grid;
    gap: 1.45rem;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.testimonial blockquote {
    margin: 0;
    font-size: 1.08rem;
    color: var(--color-text);
    position: relative;
    padding-left: 1.6rem;
}

.testimonial blockquote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2.2rem;
    color: var(--color-primary);
}

.testimonial figcaption {
    color: rgba(31, 31, 39, 0.6);
    font-weight: 500;
}

.testimonial::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.1), transparent);
    border-radius: 0 22px 0 22px;
    opacity: 0.7;
}

.recruiters {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
}

.recruiters > .container > p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(31, 31, 39, 0.68);
}

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

.recruiter-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.recruiter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(255, 128, 191, 0.25);
}

.recruiter-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.recruiter-card h3 {
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.recruiter-card p {
    margin: 0.35rem 0 0;
    color: rgba(31, 31, 39, 0.7);
}

.linkedin-btn {
    display: inline-block;
    margin-top: 1rem;
    color: #ff7fbf;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.linkedin-btn:hover {
    text-decoration: underline;
}


.contact {
    display: grid;
    gap: 2.6rem;
}

.contact-form {
    background: var(--color-surface);
    border-radius: 22px;
    padding: 2.6rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-elevated);
    display: grid;
    gap: 1.6rem;
}

.contact .cta-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(31, 31, 39, 0.6);
    font-size: 0.95rem;
}

.contact .cta-note i {
    font-size: 1.3rem;
    color: var(--color-primary);
}

label {
    display: grid;
    gap: 0.8rem;
    font-weight: 500;
}

input,
textarea,
select {
    font: inherit;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(229, 0, 130, 0.24);
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(88, 80, 99, 0.55);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(229, 0, 130, 0.18);
}

.link {
    color: var(--color-primary);
    font-weight: 600;
}

.footer {
    background: linear-gradient(180deg, #fdf9fc, #ffffff);
    color: rgba(35, 25, 43, 0.68);
    padding: 3.5rem 0 2.4rem;
    border-top: 1px solid rgba(35, 25, 43, 0.05);
}

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

.footer-brand {
    display: grid;
    gap: 1rem;
}

.footer-brand img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.footer .logo {
    font-size: 1.35rem;
}

.footer h4 {
    margin: 0 0 1.1rem;
}


.socials {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.socials a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(244, 180, 212, 0.28);
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 27, 96, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.socials img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(35, 25, 43, 0.12);
}

.footer-note {
    text-align: center;
    margin: 0;
    color: rgba(88, 80, 99, 0.55);
}

.floating-chat-button,
.floating-whatsapp {
    position: fixed;
    right: 2rem;
    z-index: 50;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 22px 32px rgba(15, 23, 42, 0.45);
}

.floating-chat-button {
    bottom: 5rem;
    background: #e51e5a;
    color: #fff;
    border: none;
    box-shadow: 0 20px 36px rgba(35, 25, 43, 0.18);
}

.floating-chat-button:hover {
    transform: translateY(-2px);
}

.floating-whatsapp {
    bottom: 2rem;
    width: 3.2rem;
    height: 3.2rem;
    justify-content: center;
    background: #25D366;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.16);
}

.floating-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-nav-button {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 99;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 0.85rem 1.5rem 0.85rem 1.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.16);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}

.whatsapp-nav-button:hover {
    background: #128C7E;
}

.whatsapp-nav-button img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.chat-widget {
    position: fixed;
    right: 2rem;
    bottom: 8.4rem;
    width: min(340px, 90vw);
    background: rgba(255, 255, 255, 0.98);
    border-radius: 22px;
    border: 1px solid rgba(35, 25, 43, 0.08);
    box-shadow: 0 24px 40px rgba(35, 25, 43, 0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chat-widget.is-open {
    display: flex;
}

.chat-header {
    padding: 1.25rem 1.5rem;
    background: rgba(244, 180, 212, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.chat-header h3 {
    margin: 0 0 0.2rem;
}

.chat-header p {
    margin: 0;
    color: rgba(88, 80, 99, 0.65);
    font-size: 0.9rem;
}

.chat-close {
    background: none;
    border: none;
    color: rgba(88, 80, 99, 0.7);
    font-size: 1.4rem;
    cursor: pointer;
}

.chat-body {
    padding: 1.25rem;
    display: grid;
    gap: 0.85rem;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(249, 241, 247, 0.72);
}

.chat-bubble {
    padding: 0.85rem 1.1rem;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.5;
    width: fit-content;
    max-width: 85%;
}

.chat-bubble.user {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.88), rgba(244, 180, 212, 0.82));
    color: #ffffff;
}

.chat-bubble.assistant {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(35, 25, 43, 0.08);
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    border-top: 1px solid rgba(35, 25, 43, 0.06);
    background: rgba(255, 255, 255, 0.96);
}

.chat-input input {
    flex: 1;
    min-width: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(229, 0, 130, 0.03), rgba(255, 143, 207, 0.02));
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 960px) {
    .hero-media {
        min-height: 480px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-chat-button,
    .floating-whatsapp,
    .chat-widget {
        right: 1.25rem;
    }

    .role-card {
        min-height: 320px;
    }

    #talent-map {
        height: 360px;
    }

    .recruiter-card {
        flex: 1 1 calc(50% - 1.6rem);
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 0.9rem;
    }

    .nav-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .topbar > .quick-search {
        width: min(460px, 100%);
        margin-right: auto;
    }

    .nav-actions .quick-search {
        flex: 1 1 100%;
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .topbar .container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .nav-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .topbar > .quick-search {
        margin-top: 0.75rem;
        margin-left: 0;
    }

    .nav-actions .quick-search {
        flex: 1 1 100%;
    }

    .floating-chat-button {
        bottom: 4.5rem;
    }

    .chat-widget {
        bottom: 7.2rem;
    }

    #talent-map {
        height: 320px;
    }

    .role-card {
        min-height: 280px;
    }

    .map-summary {
        grid-template-columns: 1fr;
    }

    .recruiter-card {
        flex: 1 1 100%;
    }

    .recruiter-card img {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 520px) {
    .hero-stats {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .floating-chat-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .floating-whatsapp {
        width: 3rem;
        height: 3rem;
    }

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