/* ===== ORTODONTIA LANDING PAGE STYLES ===== */

/* Cores específicas */
:root {
    --tech-blue: #0066ff;
    --tech-light: #4d9fff;
    --tech-dark: #0052cc;
    --accent-cyan: #00d4ff;
    --accent-purple: #6c5ce7;
    --gradient-tech: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-accent: linear-gradient(135deg, #6c5ce7 0%, #00d4ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-cyan) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 50%, #6c5ce7 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 5%;
    animation-delay: 10s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 80%;
    right: 30%;
    animation-delay: 7s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-badge i {
    color: var(--accent-cyan);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-medium);
    color: var(--white);
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-cyan);
    font-size: 1.3rem;
}

.hero-visual {
    position: relative;
}

.main-image-container {
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.main-image-container img {
    width: 100%;
    height: auto;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.floating-card i {
    color: var(--tech-blue);
    font-size: 1.5rem;
}

.floating-card strong {
    color: var(--text-dark);
    font-size: 0.9rem;
    display: block;
}

.floating-card small {
    color: #666;
    font-size: 0.8rem;
}

.card-1 {
    top: 20%;
    left: -20px;
}

.card-2 {
    top: 50%;
    right: -20px;
}

.card-3 {
    bottom: 20%;
    left: -20px;
}

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

.preview-item {
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 1rem;
    border-radius: var(--radius-medium);
    border: 2px solid transparent;
}

.preview-item:hover,
.preview-item.active {
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.preview-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-small);
    margin-bottom: 0.5rem;
}

.preview-item span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
}

/* Treatments Section */
.treatments-section {
    background: var(--light-gray);
    position: relative;
}

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

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.treatment-card.featured {
    border: 3px solid var(--tech-blue);
    transform: scale(1.02);
}

.treatment-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.card-badge {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-image {
    position: relative;
    height: 200px;
    margin: 1rem 1.5rem;
    border-radius: var(--radius-medium);
    overflow: hidden;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.card-image:hover img {
    transform: scale(1.1);
}

.detail-btn {
    background: var(--white);
    color: var(--tech-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-medium);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-btn:hover {
    background: var(--accent-cyan);
    color: var(--white);
    transform: scale(1.05);
}

.card-content {
    padding: 0 1.5rem 1.5rem;
}

.card-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.benefit i {
    color: var(--tech-blue);
    font-size: 0.8rem;
}

.benefit span {
    color: var(--text-dark);
    font-weight: 500;
}

.treatment-info {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--radius-small);
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.label {
    color: #666;
    font-size: 0.9rem;
}

.value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.price-info {
    background: var(--gradient-tech);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-small);
    text-align: center;
    margin-bottom: 1.5rem;
}

.price .from {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
}

.price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.price .period {
    font-size: 0.8rem;
    opacity: 0.9;
}

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

.card-actions .btn-primary,
.card-actions .btn-outline {
    flex: 1;
    padding: 0.8rem;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    background: var(--gradient-tech);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--tech-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    margin: 0 4rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: var(--glass-bg);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: var(--glass-bg);
    transform: translateY(-50%);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline-content h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.timeline-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-features span {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Cases Section */
.cases-section {
    background: var(--white);
    position: relative;
}

.cases-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.case-item {
    display: none;
    background: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.case-item.active {
    display: block;
}

.case-images {
    padding: 2rem;
}

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

.image-container {
    position: relative;
    text-align: center;
}

.image-container img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-light);
}

.image-container .label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tech-blue);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vs-divider {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.case-info {
    padding: 0 2rem 2rem;
    text-align: center;
}

.case-info h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.case-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-medium);
}

.detail i {
    color: var(--tech-blue);
}

.detail span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: var(--tech-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: var(--tech-dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--tech-blue);
    transform: scale(1.3);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gradient-accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,40 90,40 70,60 80,90 50,70 20,90 30,60 10,40 40,40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

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

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-large);
    padding: 2rem;
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--dark-gray);
    color: var(--white);
}

.cta-features {
    margin-bottom: 2rem;
}

.cta-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.cta-features .feature-item i {
    color: var(--accent-cyan);
}

.form-alternative {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.form-alternative span {
    background: var(--white);
    color: #666;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.form-alternative::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

.form-alternative .btn-whatsapp {
    display: block;
    margin-top: 1rem;
    text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .feature-item {
        flex: 1;
        min-width: 200px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .timeline-content {
        margin: 2rem 0 !important;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .treatment-benefits {
        grid-template-columns: 1fr;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .carousel-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .treatment-card {
        margin-bottom: 1.5rem;
    }
    
    .card-content {
        padding: 0 1rem 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .image-container img {
        width: 150px;
        height: 120px;
    }
    
    .vs-divider {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}


/* Logo Styles */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

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


/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer .text-center p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}


/* Section Alignment Improvements */
.hero-content {
    text-align: left;
    padding-right: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: center;
}

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

.treatment-option {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.treatment-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.treatment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-badge {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin-right: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.step-feature {
    background: rgba(var(--primary-color-rgb), 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
}

.case-showcase {
    text-align: center;
    margin-bottom: 2rem;
}

.case-details {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.case-detail {
    text-align: center;
    min-width: 100px;
}

/* Responsive Alignments */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .case-details {
        justify-content: center;
    }
}

