/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e40af;
    --color-secondary: #f59e0b;
    --color-secondary-dark: #d97706;
    --color-accent: #2563eb;
    --color-dark: #0f172a;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-400: #94a3b8;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    --color-white: #ffffff;
    --color-emerald: #10b981;
    --color-emerald-light: #d1fae5;
    --color-blue-light: #dbeafe;
    --color-amber: #f59e0b;
    --color-amber-light: #fef3c7;
    --color-amber-dark: #d97706;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-gray-900);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-sm);
}

.header-content {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.025em;
}

.logo-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.logo-dark {
    color: var(--color-gray-900);
}

.header-info {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-600);
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-info-item .icon {
    width: 1rem;
    height: 1rem;
}

.header-info-item:first-child .icon {
    color: var(--color-amber);
}

.header-info-item:last-child .icon {
    color: var(--color-emerald);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: none;
    font-weight: 700;
    color: var(--color-gray-900);
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--color-primary);
}

.btn-order-header {
    display: none;
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-order-header:hover {
    background: var(--color-gray-800);
}

.phone-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue-light);
    color: var(--color-primary);
    padding: 0.625rem;
    border-radius: 9999px;
}

.phone-btn-mobile svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .phone-link {
        display: block;
    }
    
    .btn-order-header {
        display: block;
    }
    
    .phone-btn-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .header-info {
        display: flex;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.btn:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-gray-900);
}

.btn-secondary:hover {
    background: var(--color-secondary-dark);
}

.btn-outline {
    border: 2px solid var(--color-gray-200);
    color: var(--color-gray-700);
    background: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
    height: 3.5rem;
    margin-top: 1.5rem;
}

.btn .icon {
    margin-left: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: var(--color-gray-50);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-gray-50), rgba(248, 250, 252, 0.9), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 48rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: var(--color-blue-light);
    color: var(--color-primary-dark);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.text-accent {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
    font-weight: 300;
    max-width: 42rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-features {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-700);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.feature-icon {
    background: var(--color-emerald-light);
    padding: 0.25rem;
    border-radius: 9999px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-emerald);
    stroke-width: 2;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 8rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Problems Section */
.problems {
    padding: 6rem 0;
    background: var(--color-white);
}

.problem-card {
    background: var(--color-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-100);
    transition: box-shadow 0.3s;
}

.problem-card:hover {
    box-shadow: var(--shadow-xl);
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    background: var(--color-amber-light);
    color: var(--color-amber);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.problem-desc {
    color: var(--color-gray-600);
    line-height: 1.75;
}

.cta-box {
    background: var(--color-primary);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-white);
    max-width: 56rem;
    margin: 4rem auto 0;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.cta-subtitle {
    color: var(--color-blue-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--color-gray-900);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.process .section-title {
    color: var(--color-white);
}

.process .section-subtitle {
    color: var(--color-gray-400);
}

.process-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-700);
    position: relative;
    transition: background 0.3s;
}

.process-card:hover {
    background: var(--color-gray-800);
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-gray-700);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.5;
    transition: color 0.3s;
}

.process-card:hover .process-number {
    color: rgba(37, 99, 235, 0.2);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.process-desc {
    color: var(--color-gray-400);
    line-height: 1.75;
}

.process-footer {
    text-align: center;
    margin-top: 4rem;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 9999px;
    background: var(--color-gray-800);
    border: 1px solid var(--color-gray-700);
    margin-bottom: 2rem;
}

.timeline-label {
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: var(--color-gray-300);
}

.timeline-value {
    padding: 0.5rem 1.25rem;
    background: var(--color-primary);
    border-radius: 9999px;
    color: var(--color-white);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--color-gray-50);
}

.benefit-card {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--color-blue-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.benefit-desc {
    color: var(--color-gray-600);
    line-height: 1.75;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--color-white);
    overflow: hidden;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.stars {
    display: flex;
    color: var(--color-amber);
}

.stars svg {
    width: 1.5rem;
    height: 1.5rem;
}

.reviews-source {
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}

.review-card {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: var(--color-gray-50);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--color-gray-100);
}

.review-stars {
    display: flex;
    color: var(--color-amber);
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 1.25rem;
    height: 1.25rem;
}

.review-text {
    color: var(--color-gray-700);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-name {
    font-weight: 700;
    color: var(--color-gray-900);
}

.review-date {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

@media (min-width: 768px) {
    .review-card {
        width: calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .review-card {
        width: calc(33.333% - 1rem);
    }
}

/* Guarantees Section */
.guarantees {
    padding: 6rem 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.guarantees .section-title {
    color: var(--color-white);
}

.guarantee-card {
    background: rgba(29, 78, 216, 0.5);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.guarantee-icon {
    width: 3rem;
    height: 3rem;
    color: var(--color-blue-light);
    margin-bottom: 1.5rem;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guarantee-subtitle {
    color: var(--color-amber);
    font-weight: 500;
    margin-bottom: 1rem;
}

.guarantee-desc {
    color: rgba(219, 234, 254, 0.8);
    line-height: 1.75;
}

.guarantee-extra {
    text-align: center;
    max-width: 48rem;
    margin: 4rem auto 0;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(30, 64, 175, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.guarantee-extra-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.guarantee-extra-list {
    list-style: none;
    text-align: left;
    color: var(--color-blue-light);
}

.guarantee-extra-list li {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .guarantee-extra-list {
        text-align: center;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--color-gray-50);
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    box-shadow: var(--shadow);
}

.faq-question:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.faq-question span {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-gray-900);
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0.5rem 1.5rem 1.5rem;
    color: var(--color-gray-600);
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 1rem 1rem;
    margin-top: -0.5rem;
}

.faq-contact {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--color-blue-light);
    border-radius: 1rem;
}

.faq-contact-text {
    color: var(--color-gray-700);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-contact-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.faq-contact-phone:hover {
    color: var(--color-primary-dark);
}

.faq-contact-subtext {
    color: var(--color-gray-500);
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gray-200), transparent);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.promo-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--color-amber-light);
    color: var(--color-amber-dark);
    font-weight: 700;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: var(--color-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

.contact-feature-title {
    font-weight: 700;
    color: var(--color-gray-900);
}

.contact-feature-desc {
    color: var(--color-gray-600);
}

.contact-form-wrapper {
    width: 100%;
    max-width: 28rem;
}

.contact-form {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--color-gray-100);
    position: relative;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-primary);
    border-color: transparent;
}

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-info {
        padding-right: 2rem;
    }
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: 3rem 0;
    border-top: 1px solid var(--color-gray-800);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

.footer-desc {
    font-size: 0.875rem;
    max-width: 28rem;
    margin: 0 auto;
}

.footer-contact {
    text-align: center;
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer-phone:hover {
    color: var(--color-primary);
}

.footer-address {
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-800);
    font-size: 0.875rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-white);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-desc {
        margin: 0;
    }
    
    .footer-contact {
        text-align: right;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }
.fade-in:nth-child(7) { animation-delay: 0.6s; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar for reviews */
.reviews-grid::-webkit-scrollbar {
    display: none;
}

.reviews-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
