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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 28px);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: white;
    color: #6366f1;
    padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 28px);
    border: 2px solid #6366f1;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    padding: 10px 20px;
    border: 2px solid #6366f1;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #6366f1;
    color: white;
}

.btn-large {
    padding: clamp(16px, 2vw, 20px) clamp(28px, 3vw, 36px);
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand h2 {
    color: #6366f1;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6366f1;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #6366f1;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: clamp(80px, 10vh, 120px) 0 clamp(60px, 8vh, 80px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 60px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.brand {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-left: 1rem;
    color: #7893FD;
}

.brand-logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    max-width: clamp(4rem, 8vw, 6rem);
    height: auto;
    display: block;
}

.hero-title .slogan {
    color: #1f2937;
    font-weight: 600;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-subdescription {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    width: clamp(280px, 35vw, 350px);
    height: clamp(560px, 70vw, 700px);
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 30px;
    padding: clamp(15px, 2vw, 15px);
    position: relative;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.phone-screen {
    background: #ffffff;
    border-radius: 20px;
    height: 100%;
    padding: clamp(15px, 2vw, 25px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vw, 18px);
    overflow-y: auto;
}

.chat-bubble {
    display: flex;
    gap: clamp(8px, 1vw, 12px);
    align-items: flex-start;
}

.chat-bubble.user {
    flex-direction: row-reverse;
}

.chat-bubble .avatar {
    width: clamp(32px, 4.5vw, 42px);
    height: clamp(32px, 4.5vw, 42px);
    border-radius: 50%;
    background: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.chat-bubble .message {
    background: #f3f4f6;
    padding: clamp(10px, 1.5vw, 15px) clamp(12px, 2vw, 18px);
    border-radius: 0px 18px 18px 18px;
    max-width: 80%;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    line-height: 1.4;
}

.chat-bubble.user .message {
    background: #6366f1;
    color: white;
    border-radius: 18px 0px 18px 18px;
}

/* Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(clamp(40px, 6vw, 60px));
    opacity: 0.7;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    animation-delay: 0s;
}

.orb-2 {
    animation-delay: 4s;
}

.orb-1 {
    width: clamp(250px, 35vw, 400px);
    height: clamp(250px, 35vw, 400px);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: clamp(-150px, -15vw, -200px);
    right: clamp(-150px, -15vw, -200px);
}

.orb-2 {
    width: clamp(200px, 25vw, 300px);
    height: clamp(200px, 25vw, 300px);
    background: linear-gradient(135deg, #ec4899, #f97316);
    bottom: clamp(-100px, -10vw, -150px);
    left: clamp(-100px, -10vw, -150px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;

}

/* Agents Section */
.agents-section {
    background: white;
}

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

.agent-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.agent-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.agent-card.featured .agent-features li {
    color: white;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.agent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.agent-card.featured .agent-icon {
    background: rgba(255, 255, 255, 0.2);
}

.agent-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.agent-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.agent-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #6b7280;
}

.agent-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.agent-card.featured .agent-features i {
    color: #34d399;
}

.agent-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Benefits Section - Simple & Clean */
.benefits-section {
    background: #ffffff;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.benefit-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card.featured h3 {
    color: white;
}

.benefit-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-card.featured .benefit-description {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.benefit-card.featured .stat-number {
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card.featured .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.benefit-result {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #374151;
}

.benefit-card.featured .benefit-result {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    justify-content: center;
}

.benefit-card.featured .benefit-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-cta {
    text-align: center;
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #e5e7eb;
}

.section-cta h3 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-cta p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 100px 0;
}

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

.problem-text-content h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.problem-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.highlight {
    font-size: 1.3rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 2rem;
}

.problem-cta {
    margin-top: 2rem;
}

.problem-cta .btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.problem-cta .btn-primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
}

.problem-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.problem-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.problem-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(220, 38, 38, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.problem-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: white;
}

.overlay-text i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.overlay-text p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Benefits Section - Enhanced */
.benefits-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Interactive Benefits Cards */
.benefits-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card-interactive {
    position: relative;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.benefit-card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
}

.benefit-card-back {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: rotateY(180deg);
}

.benefit-card-interactive:hover .benefit-card-front {
    transform: rotateY(-180deg);
}

.benefit-card-interactive:hover .benefit-card-back,
.benefit-card-interactive.active .benefit-card-back {
    transform: rotateY(0deg);
}

.benefit-card-interactive:hover .benefit-card-front,
.benefit-card-interactive.active .benefit-card-front {
    transform: rotateY(-180deg);
}

/* Animated Icons */
.benefit-icon-animated {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    overflow: hidden;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Stats Animation */
.benefit-stats {
    margin: 1.5rem 0;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Indicator */
.card-hover-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #64748b;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Card Back Styles */
.benefit-card-back h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.benefit-details {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefit-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-details i {
    color: #34d399;
    font-size: 0.9rem;
}

/* Progress Bars */
.progress-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #34d399, #10b981);
    border-radius: 10px;
    transition: width 1s ease;
    width: 0%;
}

.progress-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

/* Transformation Timeline */
.transformation-timeline {
    margin: 4rem 0;
    text-align: center;
}

.transformation-timeline h3 {
    color: #1f2937;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.timeline-item {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineSlideIn 0.6s ease forwards;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes timelineSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.timeline-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item:last-child .timeline-icon::after {
    display: none;
}

.timeline-content h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.9rem;
    max-width: 200px;
}

/* Enhanced CTA */
.benefits-cta-enhanced {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-content-footer {
    /* display: grid; */
    /* grid-template-columns: 1fr auto; */
    /* gap: 3rem; */
    align-items: center;
}

.cta-text h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefits-conclusion {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.urgency-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-size: 0.9rem;
    font-weight: 600;
}

.urgency-item i {
    font-size: 1.1rem;
}

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

.btn-pulse {
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

.cta-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-guarantee i {
    color: #10b981;
}

/* Results Section */
.results-section {
    background: white;
}

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

.result-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.result-company h3 {
    color: #6366f1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.result-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-previous {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.result-description {
    color: #374151;
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    background: #f9fafb;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-text h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.founder-text h3 {
    color: #6366f1;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-credentials {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.founder-text p {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-philosophy {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    font-style: italic;
}

/* Target Section - Interactive Quiz */
.target-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0eafc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.target-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.target-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(50px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(99, 102, 241, 0.3);
    top: -50px;
    left: -100px;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(139, 92, 246, 0.3);
    bottom: 10%;
    right: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.2);
    top: 40%;
    right: 15%;
    animation: float 20s ease-in-out infinite;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: rgba(245, 158, 11, 0.2);
    bottom: 20%;
    left: 10%;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

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

.target-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.target-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.target-badge i {
    margin-left: 0.5rem;
    animation: bounce 2s infinite;
}

.highlight-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.pulse-icon {
    animation: pulse 2s infinite;
}

.target-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Quiz Container */
.quiz-container {
    max-width: 800px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

/* Quiz Progress */
.quiz-progress {
    margin-bottom: 2rem;
    position: relative;
}

.quiz-progress-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    position: relative;
    margin-bottom: 1rem;
}

.quiz-progress-bar::before {
    content: '';
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    width: 25%;
    transition: width 0.5s ease;
}

.quiz-progress-bar[data-progress="50"]::before {
    width: 50%;
}

.quiz-progress-bar[data-progress="75"]::before {
    width: 75%;
}

.quiz-progress-bar[data-progress="100"]::before {
    width: 100%;
}

.quiz-steps {
    display: flex;
    justify-content: space-between;
}

.quiz-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    position: relative;
    transition: all 0.3s ease;
}

.quiz-step.active {
    background: #6366f1;
    color: white;
    transform: scale(1.1);
}

.quiz-step.completed {
    background: #10b981;
    color: white;
}

/* Quiz Content */
.quiz-content {
    position: relative;
    min-height: 350px;
}

.quiz-question {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.quiz-question.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.question-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.quiz-question h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    color: #1f2937;
    font-weight: 700;
}

/* Quiz Options */
.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quiz-option {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option-icon i {
    font-size: 1.5rem;
    color: #6366f1;
    transition: transform 0.3s ease;
}

.option-icon.warning i {
    color: #ef4444;
}

.option-icon.neutral i {
    color: #f59e0b;
}

.option-icon.success i {
    color: #10b981;
}

.option-content {
    flex: 1;
}

.option-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.option-desc {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
}

.option-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #6366f1;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.quiz-option:hover {
    border-color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.quiz-option:hover .option-icon {
    background: rgba(99, 102, 241, 0.2);
}

.quiz-option:hover .option-icon i {
    transform: scale(1.2);
}

.quiz-option.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
}

.quiz-option.selected .option-check {
    opacity: 1;
    transform: scale(1);
}

.featured-option {
    border-color: #6366f1;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

.option-badge {
    position: absolute;
    top: 0;
    right: 1.5rem;
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 10px rgba(16, 185, 129, 0.2);
}

/* Quiz Result */
.quiz-result {
    text-align: center;
    position: relative;
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #6366f1;
    opacity: 0.8;
    animation: confetti-fall 5s ease-in-out infinite;
}

.confetti:nth-child(2n) {
    background: #8b5cf6;
    left: 20%;
    animation-delay: 0.2s;
    animation-duration: 4.5s;
}

.confetti:nth-child(3n) {
    background: #10b981;
    left: 40%;
    animation-delay: 0.4s;
    animation-duration: 4.8s;
}

.confetti:nth-child(4n) {
    background: #f59e0b;
    left: 60%;
    animation-delay: 0.6s;
    animation-duration: 5.2s;
}

.confetti:nth-child(5n) {
    background: #ef4444;
    left: 80%;
    animation-delay: 0.8s;
    animation-duration: 5.5s;
}

.confetti:nth-child(6n) {
    background: #6366f1;
    left: 10%;
    animation-delay: 1s;
    animation-duration: 4.3s;
}

.confetti:nth-child(7n) {
    background: #8b5cf6;
    left: 30%;
    animation-delay: 1.2s;
    animation-duration: 4.7s;
}

.confetti:nth-child(8n) {
    background: #10b981;
    left: 50%;
    animation-delay: 1.4s;
    animation-duration: 5s;
}

.confetti:nth-child(9n) {
    background: #f59e0b;
    left: 70%;
    animation-delay: 1.6s;
    animation-duration: 5.3s;
}

.confetti:nth-child(10n) {
    background: #ef4444;
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 5.7s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
    }

    50% {
        transform: translateY(50vh) rotate(180deg);
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.result-badge {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.result-badge i {
    color: #f59e0b;
    font-size: 1.5rem;
    animation: star-pulse 1.5s ease-in-out infinite;
}

.result-badge i:nth-child(2) {
    animation-delay: 0.5s;
}

.result-badge i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes star-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.result-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.result-header .animated-check {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
    animation: check-animation 1s ease;
}

@keyframes check-animation {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.result-score {
    margin: 2rem auto;
    position: relative;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
    animation: score-appear 1s ease;
}

.score-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: pulse 2s infinite;
}

.score-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.score-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes score-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.result-message {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Result Details */
.result-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.result-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.result-detail-item:nth-child(2) {
    animation-delay: 0.3s;
}

.result-detail-item:nth-child(3) {
    animation-delay: 0.6s;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.5);
    border-radius: 16px;
    filter: blur(10px);
    animation: glow-pulse 2s infinite;
    z-index: -1;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.result-text h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.result-text p {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0;
}

.match-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    animation: badge-appear 0.5s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    transform: scale(0);
}

@keyframes badge-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.result-testimonial {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 600px;
    position: relative;
    border-left: 4px solid #6366f1;
    animation: slide-in 0.5s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-text strong {
    color: #1f2937;
    font-weight: 700;
}

.result-cta {
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.result-guarantee {
    margin-top: 1.2rem;
    color: #4b5563;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.result-guarantee i {
    color: #10b981;
}

.result-users {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.avatar-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.15);
    position: absolute;
    top: 0;
    left: 0;
}

.user-avatars {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #6366f1;
    border: 2px solid white;
    margin-left: -10px;
}

.user-avatar:first-child {
    margin-left: 0;
    background: #8b5cf6;
}

.user-avatar:last-child {
    background: #10b981;
}

.result-users p {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.quiz-prev-btn,
.quiz-restart-btn {
    background: none;
    border: none;
    color: #6366f1;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quiz-prev-btn:hover,
.quiz-restart-btn:hover {
    background: rgba(99, 102, 241, 0.1);
}

.quiz-prev-btn:disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.quiz-restart-btn {
    margin-left: auto;
}

/* Client Avatars */
.client-avatars {
    margin-top: 5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.client-avatar {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.client-avatar:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.client-avatar.highlighted {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.5);
}

.avatar-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.avatar-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.5);
    border-radius: 20px;
    filter: blur(10px);
    z-index: -1;
    animation: avatar-pulse 3s infinite;
}

@keyframes avatar-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.avatar-content {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-avatar h4 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.client-avatar p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.avatar-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #4b5563;
}

.avatar-benefits li i {
    color: #10b981;
    font-size: 0.9rem;
}

.avatar-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    padding: 0.8rem;
    border-top: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.client-avatar:hover .avatar-cta {
    background: #6366f1;
    color: white;
}

.avatar-cta i {
    transition: transform 0.3s ease;
}

.client-avatar:hover .avatar-cta i {
    transform: translateX(5px);
}

.avatar-tag {
    position: absolute;
    top: 0;
    right: 2rem;
    background: #10b981;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    z-index: 10;
}

.client-avatar[data-profile="growth"] .avatar-tag {
    background: #6366f1;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.client-avatar[data-profile="schedule"] .avatar-tag {
    background: #f59e0b;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.avatar-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    transition: all 0.5s ease;
}

.client-avatar:hover .avatar-glow {
    transform: scale(1.5);
    opacity: 0.2;
}

.client-avatar.highlighted .avatar-glow {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.5);
}

.clients-cta {
    margin-top: 2rem;
    text-align: center;
}

.clients-cta p {
    margin-top: 1rem;
    color: #4b5563;
    font-size: 0.95rem;
}

/* Hire Section */
.hire-section {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.hire-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hire-description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hire-cta {
    margin-bottom: 1rem;
}

.whatsapp-btn {
    background: #25d366;
    font-size: 1.2rem;
    padding: 18px 36px;
}

.whatsapp-btn:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.hire-note {
    color: #9ca3af;
    font-size: 0.9rem;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
}

.faq-question i {
    color: #6366f1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0 !important;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem !important;
    max-height: 500px !important;
    opacity: 1 !important;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Alternative CSS for better compatibility */
.faq-item {
    position: relative;
}

.faq-item .faq-answer {
    display: block;
    height: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    display: block;
    height: auto;
    visibility: visible;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-image {
    max-width: 120px;
    height: auto;
    display: block;
}

.footer-brand p {
    color: #9ca3af;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        padding: clamp(80px, 8vh, 100px) 0 clamp(50px, 6vh, 60px);
    }

    .hero-content {
        gap: clamp(30px, 4vw, 50px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3rem);
    }

    .brand {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
        margin-left: 0.8rem;
    }

    .logo-image {
        max-width: clamp(4.5rem, 7vw, 5.5rem);
    }

    .hero-title .slogan {
        font-size: clamp(1.6rem, 3vw, 2.5rem);
    }

    .phone-mockup {
        width: clamp(300px, 30vw, 380px);
        height: clamp(600px, 60vw, 760px);
    }

    .chat-bubble .avatar {
        width: clamp(30px, 4.2vw, 38px);
        height: clamp(30px, 4.2vw, 38px);
        border-width: 1.8px;
    }

    .gradient-orb {
        filter: blur(clamp(35px, 5vw, 50px));
    }

    .orb-1 {
        width: clamp(200px, 30vw, 350px);
        height: clamp(200px, 30vw, 350px);
        top: clamp(-120px, -12vw, -180px);
        right: clamp(-120px, -12vw, -180px);
    }

    .orb-2 {
        width: clamp(150px, 20vw, 250px);
        height: clamp(150px, 20vw, 250px);
        bottom: clamp(-80px, -8vw, -120px);
        left: clamp(-80px, -8vw, -120px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: clamp(60px, 8vh, 80px) 0 clamp(40px, 6vh, 60px);
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: clamp(30px, 5vw, 50px);
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .brand {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
        margin-left: 0.6rem;
    }

    .brand-logo {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
        justify-content: center;
    }

    .logo-image {
        max-width: clamp(3.5rem, 6vw, 4.5rem);
    }

    .hero-title .slogan {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }

    .hero-description {
        margin-bottom: 1.2rem;
    }

    .hero-subdescription {
        margin-bottom: 2rem;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 24px;
    }

    .phone-mockup {
        width: clamp(250px, 65vw, 320px);
        height: clamp(500px, 130vw, 640px);
    }

    .chat-bubble .avatar {
        width: clamp(26px, 3.8vw, 32px);
        height: clamp(26px, 3.8vw, 32px);
        border-width: 1.2px;
    }

    .gradient-orb {
        filter: blur(clamp(25px, 4vw, 35px));
    }

    .orb-1 {
        width: clamp(150px, 25vw, 250px);
        height: clamp(150px, 25vw, 250px);
        top: clamp(-80px, -10vw, -120px);
        right: clamp(-80px, -10vw, -120px);
    }

    .orb-2 {
        width: clamp(100px, 15vw, 180px);
        height: clamp(100px, 15vw, 180px);
        bottom: clamp(-60px, -6vw, -80px);
        left: clamp(-60px, -6vw, -80px);
    }

    .section-title {
        font-size: 2rem;
    }

    .agents-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section {
        padding: 60px 0;
    }

    .section-header .section-title {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-cta {
        padding: 2rem;
    }

    .section-cta h3 {
        font-size: 1.6rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .section-cta {
        padding: 1.5rem;
    }

    .section-cta h3 {
        font-size: 1.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .quiz-content {
        min-height: 350px;
    }

    .result-details {
        grid-template-columns: 1fr;
    }

    .avatar-grid {
        grid-template-columns: 1fr;
    }

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

    .problem-text-content h2 {
        font-size: 1.8rem;
    }

    .problem-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0.6rem 0;
    }

    .problem-list li i {
        font-size: 1.1rem;
        width: 18px;
    }



    .benefits-interactive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card-interactive {
        height: 300px;
    }

    .timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .timeline-icon::after {
        display: none;
    }

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

    .urgency-indicators {
        justify-content: center;
    }

    .problem-image img {
        height: 300px;
    }

    .problem-list li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        padding: 0.5rem 0;
        gap: 0.8rem;
    }

    .problem-list li i {
        font-size: 1rem;
        width: 16px;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .footer-logo-image {
        max-width: 100px;
        margin: 0 auto;
    }

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

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: clamp(50px, 6vh, 60px) 0 clamp(30px, 4vh, 40px);
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 1.8rem);
        margin-bottom: 1rem;
    }

    .brand {
        font-size: clamp(1.5rem, 3vw, 1.8rem);
        margin-left: 0.5rem;
    }

    .brand-logo {
        margin-bottom: 1.2rem;
        gap: 0.6rem;
        justify-content: center;
    }

    .logo-image {
        max-width: clamp(3rem, 5vw, 3.5rem);
    }

    .hero-title .slogan {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }

    .hero-description {
        font-size: clamp(0.95rem, 2.2vw, 1.05rem);
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-subdescription {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        margin-bottom: 1.8rem;
        line-height: 1.5;
    }

    .hero-cta {
        gap: 0.8rem;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .phone-mockup {
        width: clamp(200px, 75vw, 250px);
        height: clamp(340px, 150vw, 460px);
        padding: 12px;
    }

    .phone-screen {
        padding: 12px;
        gap: 8px;
    }

    .chat-bubble .message {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        padding: 8px 10px;
    }

    .chat-bubble .avatar {
        width: clamp(28px, 4vw, 35px);
        height: clamp(28px, 4vw, 35px);
        font-size: clamp(0.8rem, 1.2vw, 1rem);
        border-width: 1.5px;
    }

    .gradient-orb {
        filter: blur(clamp(20px, 3vw, 25px));
    }

    .orb-1 {
        width: clamp(120px, 20vw, 180px);
        height: clamp(120px, 20vw, 180px);
        top: clamp(-60px, -8vw, -80px);
        right: clamp(-60px, -8vw, -80px);
    }

    .orb-2 {
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        bottom: clamp(-40px, -5vw, -60px);
        left: clamp(-40px, -5vw, -60px);
    }

    .agent-card {
        padding: 1.5rem;
    }

    .problem-text-content h2 {
        font-size: 1.5rem;
    }



    .benefit-card-interactive {
        height: 280px;
    }

    .transformation-timeline h3 {
        font-size: 1.5rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    .benefits-cta-enhanced {
        padding: 2rem 1.5rem;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }

    .urgency-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .problem-image img {
        height: 250px;
    }

    .result-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo-image {
        max-width: 80px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add animation classes */
.animate-on-scroll {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

/* Orb Animation */
@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.animate-on-scroll.animate {
    animation-name: fadeInUp;
}

.animate-on-scroll.animate-left {
    animation-name: fadeInLeft;
}

.animate-on-scroll.animate-right {
    animation-name: fadeInRight;
}

/* Target Profiles Section */
.target-profiles-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

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

.profile-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.profile-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.profile-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.profile-card.featured .profile-icon {
    background: rgba(255, 255, 255, 0.2);
}

.profile-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.profile-card.featured h3 {
    color: white;
}

.profile-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.profile-card.featured .profile-description {
    color: rgba(255, 255, 255, 0.9);
}

.profile-benefits {
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    color: #374151;
    font-size: 0.9rem;
}

.profile-card.featured .benefit-item {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.profile-card.featured .benefit-item i {
    color: #34d399;
}

.profile-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    color: #92400e;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    justify-content: center;
    margin-top: 1rem;
}

.profile-card.featured .profile-highlight {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.profiles-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-card h4 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Testimonials Section */
.testimonials-section {
    background: #ffffff;
    padding: 100px 0;
}

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

.testimonial-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

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

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-info h4 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.client-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-screenshot {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #6366f1;
}

.whatsapp-message {
    position: relative;
}

.message-bubble {
    background: #dcf8c6;
    padding: 0.8rem 1rem;
    border-radius: 18px 18px 4px 18px;
    color: #1f2937;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    position: relative;
}

.message-bubble.client {
    background: #e3f2fd;
    border-radius: 18px 18px 18px 4px;
}

.message-time {
    font-size: 0.7rem;
    color: #6b7280;
    text-align: right;
}

.testimonial-content blockquote {
    font-style: italic;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    border-left: 4px solid #6366f1;
    padding-left: 1rem;
    margin: 0;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    overflow: visible;
}

.carousel-container {
    width: 100%;
    padding: 1rem;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 350px;
    opacity: 1;
    transition: all 0.4s ease;
    transform: scale(1);
}

.carousel-slide:hover {
    transform: scale(1.03) translateY(-10px);
    z-index: 5;
}

.carousel-slide .testimonial-card {
    background: white;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.carousel-slide:hover .testimonial-card {
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.1);
}

.carousel-slide .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-slide:hover .testimonial-card::before {
    opacity: 1;
}

.carousel-slide .testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.carousel-slide .client-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.carousel-slide .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.carousel-slide:hover .avatar-placeholder {
    transform: scale(1.1);
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.carousel-slide .client-info {
    flex: 1;
}

.carousel-slide .client-info h4 {
    margin: 0 0 0.3rem 0;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.2rem;
}

.carousel-slide .client-info p {
    margin: 0 0 0.8rem 0;
    color: #64748b;
    font-size: 0.95rem;
}

.carousel-slide .testimonial-rating {
    color: #fbbf24;
    display: flex;
    gap: 0.3rem;
    font-size: 1.1rem;
}

.carousel-slide .testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #f8fafc, #e2e8f0); */
    border-radius: 20px;
    /* padding: 1.5rem; */
    overflow: hidden;
    position: relative;
}

.feedback-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.feedback-image:hover {
    transform: scale(1.02);
}

.feedback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.feedback-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.feedback-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 2rem;
    animation: pulseIcon 2s ease-in-out infinite;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: calc(100% + 4rem);
    left: -2rem;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 999;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #6366f1;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.carousel-btn:hover {
    background: #6366f1;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    animation: progressBar 5s linear infinite;
    z-index: 10;
    border-radius: 0 0 24px 24px;
}

@keyframes progressBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    border: none;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator.active {
    background: #6366f1;
    transform: scale(1.4);
}

.indicator.active::before {
    border-color: rgba(99, 102, 241, 0.3);
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator:hover {
    background: #6366f1;
    transform: scale(1.2);
}

@keyframes indicatorPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.5;
    }
}

/* Carousel Counter */
.carousel-counter {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.current-slide {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Carousel Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.carousel-slide.entering-right {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.entering-left {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Carousel Touch Support */
.carousel-track {
    touch-action: pan-y;
}

/* Carousel Responsive */
@media (max-width: 1200px) {
    .testimonials-carousel {
        max-width: 1000px;
        padding: 0 1.5rem;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

    .carousel-slide {
        flex: 0 0 calc(100% - 1rem);
        min-width: 280px;
    }

    .carousel-slide .testimonial-card {
        padding: 1.5rem;
        height: 480px;
    }

    .carousel-slide .client-avatar {
        width: 55px;
        height: 55px;
    }

    .carousel-slide .avatar-placeholder {
        font-size: 1.5rem;
    }

    .carousel-controls {
        width: calc(100% + 2rem);
        left: -1rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .carousel-indicators {
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        margin: 2rem auto 0;
        padding: 0 0.5rem;
    }

    .carousel-slide {
        min-width: 260px;
    }

    .carousel-slide .testimonial-card {
        padding: 1.2rem;
        height: 450px;
    }

    .carousel-slide .client-avatar {
        width: 50px;
        height: 50px;
    }

    .carousel-slide .avatar-placeholder {
        font-size: 1.3rem;
    }

    .carousel-slide .client-info h4 {
        font-size: 1.1rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .carousel-counter {
        font-size: 0.9rem;
    }

    .current-slide {
        font-size: 1rem;
    }

    .carousel-track {
        gap: 1rem;
    }
}

/* Journey Section */
.journey-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.journey-timeline {
    margin-bottom: 3rem;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.timeline-content {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    margin-left: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content:hover {
    border-color: #6366f1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #6366f1;
    font-size: 1.5rem;
}

.timeline-content h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.timeline-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.timeline-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.timeline-details li i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
}

.timeline-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-flex;
}

.journey-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.summary-content h4 {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.summary-time {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.summary-desc {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* AI Agents Section */
.ai-agents-section {
    background: #ffffff;
    padding: 100px 0;
}

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

.agent-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.agent-card.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    position: relative;
}

.agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.agent-badge.popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.agent-card.featured .agent-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.popular-tag {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #f59e0b;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.agent-card h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.agent-card.featured h3 {
    color: white;
}

.agent-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.agent-card.featured .agent-description {
    color: rgba(255, 255, 255, 0.9);
}

.agent-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    color: #374151;
    font-size: 0.9rem;
}

.agent-card.featured .feature-item {
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.agent-card.featured .feature-item i {
    color: #34d399;
}

.agent-best-for {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.agent-card.featured .agent-best-for {
    background: rgba(255, 255, 255, 0.1);
}

.agent-best-for h4 {
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.agent-card.featured .agent-best-for h4 {
    color: white;
}

.agent-best-for p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.agent-card.featured .agent-best-for p {
    color: rgba(255, 255, 255, 0.8);
}

.agent-cta {
    margin-top: 1rem;
}

/* Support Team Section */
.support-team-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.support-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auri-center {
    text-align: center;
    z-index: 2;
    position: relative;
}

.auri-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid #6366f1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.auri-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auri-center h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.auri-center p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.support-orbits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
}

.orbit-4 {
    width: 360px;
    height: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.support-point {
    position: absolute;
    width: 50px;
    height: 50px;
    /* background: white; */
    /* border: 2px solid #6366f1; */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-point:hover {
    background: #6366f1;
    color: white;
    transform: scale(1.1);
}

.support-point i {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.support-point span {
    font-size: 0.6rem;
    line-height: 1;
}

.orbit-1 .support-point {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 .support-point {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}

.orbit-3 .support-point {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-4 .support-point {
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
}

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

.service-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.support-guarantee {
    text-align: center;
    margin-top: 3rem;
}

.guarantee-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    border: 2px solid #10b981;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.guarantee-content p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {

    .target-profiles-section,
    .testimonials-section,
    .journey-section,
    .ai-agents-section,
    .support-team-section {
        padding: 60px 0;
    }

    .profiles-grid,
    .testimonials-grid,
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-timeline {
        margin-bottom: 2rem;
    }

    .timeline-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }

    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

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

    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .support-visual {
        height: 300px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 200px;
        height: 200px;
    }

    .orbit-3 {
        width: 250px;
        height: 250px;
    }

    .orbit-4 {
        width: 300px;
        height: 300px;
    }

    .support-point {
        width: 40px;
        height: 40px;
        font-size: 0.6rem;
    }

    .support-point i {
        font-size: 0.9rem;
    }

    .support-services {
        grid-template-columns: 1fr;
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    .profiles-grid,
    .testimonials-grid,
    .agents-grid {
        gap: 1rem;
    }

    .profile-card,
    .testimonial-card,
    .agent-card {
        padding: 1.5rem;
    }

    .timeline-content {
        margin-left: 0.5rem;
        padding: 1.2rem;
    }

    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        left: -15px;
    }

    .support-visual {
        height: 250px;
    }

    .orbit-1 {
        width: 120px;
        height: 120px;
    }

    .orbit-2 {
        width: 160px;
        height: 160px;
    }

    .orbit-3 {
        width: 200px;
        height: 200px;
    }

    .orbit-4 {
        width: 240px;
        height: 240px;
    }

    .support-point {
        width: 35px;
        height: 35px;
        font-size: 0.55rem;
    }

    .support-point i {
        font-size: 0.8rem;
    }

    .auri-icon {
        width: 80px;
        height: 80px;
    }
}

/* NEW SECTION STYLES */

/* Bloco 3 - Target Profiles New Layout */
.profiles-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-card-new {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.profile-card-new.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

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

.profile-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.profile-card-new.featured .profile-icon-new {
    background: rgba(255, 255, 255, 0.2);
}

.profile-header h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

.profile-card-new.featured .profile-header h3 {
    color: white;
}

.featured-badge {
    position: absolute;
    top: -28px;
    right: -28px;
    background: #f59e0b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.profile-description-new {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.profile-card-new.featured .profile-description-new {
    color: rgba(255, 255, 255, 0.9);
}

.profile-benefits-new {
    margin-top: auto;
}

.benefit-item-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    color: #374151;
    font-size: 0.9rem;
}

.profile-card-new.featured .benefit-item-new {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item-new i {
    color: #10b981;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.profile-card-new.featured .benefit-item-new i {
    color: #34d399;
}

.profiles-cta-new {
    text-align: center;
    margin-top: 3rem;
}

.cta-card-new {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.cta-card-footer {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    /* max-width: 600px; */
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-content h4 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cta-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Bloco 4 - Benefits Section New */
.benefits-section-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
}

.hero-benefit {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-benefit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefit-number {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-benefit-text h3 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-benefit-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-benefit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock-visual {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clock-visual:hover {
    transform: scale(1.05);
}

.clock-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    animation: clockRotate 8s linear infinite;
}

.clock-circle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.clock-pulse {
    position: absolute;
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: pulsing 2s ease-in-out infinite;
    z-index: 1;
}

.clock-pulse::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: pulsing 2s ease-in-out infinite 0.5s;
}

.time-indicators {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbitRotate 12s linear infinite;
}

.time-point {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border: 0.5px solid #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.time-point:nth-child(1) {
    animation-delay: 0s;
}

.time-point:nth-child(2) {
    animation-delay: 0.75s;
}

.time-point:nth-child(3) {
    animation-delay: 1.5s;
}

.time-point:nth-child(4) {
    animation-delay: 2.25s;
}

.time-point.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
    animation: activeGlow 2s ease-in-out infinite;
}

.time-point:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.6) !important;
    background: linear-gradient(135deg, #8b5cf6, #6366f1) !important;
    color: white !important;
}

.time-point:nth-child(1) {
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.time-point:nth-child(2) {
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
}

.time-point:nth-child(3) {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.time-point:nth-child(4) {
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
}

/* Dynamic Animations */
@keyframes clockRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulsing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pointFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes activeGlow {

    0%,
    100% {
        box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
    }

    50% {
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.8), 0 0 20px rgba(99, 102, 241, 0.6);
    }
}

/* Interactive states */
.clock-visual.clicked .clock-circle {
    animation: clickPulse 0.6s ease-out;
}

.clock-visual.clicked .time-indicators {
    animation-duration: 2s;
}

@keyframes clickPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

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

.secondary-benefit {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.secondary-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.secondary-benefit.featured {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.benefit-number-small {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.secondary-benefit.featured .benefit-number-small {
    background: rgba(255, 255, 255, 0.2);
}

.secondary-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #6366f1;
    font-size: 1.5rem;
}

.secondary-benefit.featured .secondary-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.secondary-benefit h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.secondary-benefit.featured h4 {
    color: white;
}

.secondary-benefit p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.secondary-benefit.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.mini-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6366f1;
}

.secondary-benefit.featured .mini-number {
    color: white;
}

.mini-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

.secondary-benefit.featured .mini-label {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-cta-new {
    margin-top: 3rem;
}

.cta-background {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.cta-content-new h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-new p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.cta-security {
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-security i {
    color: #10b981;
}

/* Bloco 10 - Journey Section New */
.journey-section-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
}

.interactive-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-progress {
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 1;
}

.progress-line {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.timeline-step.visible .step-content {
    border-color: #6366f1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-marker {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.step-icon {
    position: absolute;
    top: 70px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 0.9rem;
}

.step-content {
    margin-left: 100px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-step.visible .step-content {
    border-color: #6366f1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.step-duration {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
}

.step-badge.success .step-duration {
    background: rgba(16, 185, 129, 0.1);
}

.step-content h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

.step-details {
    display: grid;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
}

.detail-item i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.journey-summary-new {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.summary-visual {
    display: flex;
    justify-content: center;
}

.countdown-circle {
    position: relative;
}

.circle-progress {
    position: relative;
}

.progress-circle {
    stroke-dasharray: 314;
    stroke-dashoffset: 78.5;
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
    animation: fillCircle 2s ease-out;
}

@keyframes fillCircle {
    from {
        stroke-dashoffset: 314;
    }

    to {
        stroke-dashoffset: 78.5;
    }
}

.circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.total-days {
    font-size: 2rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.days-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.summary-content-new h4 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.summary-content-new p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.implementation-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.impl-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

.impl-stat i {
    color: #6366f1;
    font-size: 1rem;
}

.btn-journey {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btn-journey:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* NEW Timeline Styles - Fixed Version */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}

.timeline-progress-bar {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6);
    border-radius: 2px;
    transition: height 1s ease;
}

.timeline-steps {
    position: relative;
}

.timeline-step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.step-circle {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    z-index: 10;
    flex-shrink: 0;
}

.step-circle.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.step-num {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.step-icon-small {
    color: white;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    opacity: 0.8;
}

.step-card {
    flex: 1;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.step-card.success {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.step-category {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-card.success .step-category {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.step-time {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-card h3 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

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

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

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #374151;
    font-size: 0.9rem;
}

.step-checklist i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

.timeline-summary {
    margin-top: 4rem;
}

.summary-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.summary-icon {
    flex-shrink: 0;
}

.summary-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.summary-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.summary-text h4 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.summary-text p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.summary-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #6366f1;
    font-size: 1rem;
}

/* Responsive for new timeline */
@media (max-width: 768px) {
    .timeline-step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-circle {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
    }

    .step-num {
        font-size: 1.5rem;
    }

    .summary-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .timeline-line {
        left: 40px;
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .profiles-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-card-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-benefit {
        padding: 2rem;
    }

    .hero-benefit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .secondary-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-background {
        padding: 2rem;
    }

    .step-content {
        margin-left: 80px;
        padding: 1.5rem;
    }

    .journey-summary-new {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .implementation-stats {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-benefit {
        padding: 1.5rem;
    }

    .hero-benefit-text h3 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .clock-visual {
        width: 150px;
        height: 150px;
    }

    .clock-circle {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .time-point {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }

    .step-content {
        margin-left: 60px;
        padding: 1.2rem;
    }

    .step-marker {
        width: 50px;
        height: 50px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .implementation-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* Timeline Animation Styles */
.timeline-step {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.highlighted .step-content {
    border-color: #10b981 !important;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4) !important;
}

.timeline-step.highlighted .step-number {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.timeline-step.highlighted .step-badge {
    background: rgba(16, 185, 129, 0.15) !important;
    color: #10b981 !important;
}

/* Avatar Placeholder Styles */
.avatar-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}