/* ===== HERO SECTION ===== */
.hero-section { position: relative; min-height: 100vh; overflow: hidden; padding-top: 8rem; padding-bottom: 5rem; }
.hero-bg-elements { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-bubble { position: absolute; border-radius: 50%; }
.hero-bubble-1 { top: 5rem; left: 2.5rem; width: 5rem; height: 5rem; background: rgba(79, 195, 247, 0.2); animation: float 6s ease-in-out infinite; }
.hero-bubble-2 { top: 10rem; right: 5rem; width: 8rem; height: 8rem; background: rgba(129, 199, 132, 0.2); animation: float 6s ease-in-out infinite 1s; }
.hero-bubble-3 { bottom: 10rem; left: 25%; width: 6rem; height: 6rem; background: rgba(255, 213, 79, 0.3); animation: float 6s ease-in-out infinite 2s; }
.hero-content { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-content { grid-template-columns: 1fr 1fr; } }
.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-radius: var(--radius-full); box-shadow: var(--shadow-soft); margin-bottom: 1.5rem; }
.hero-badge .stars { display: flex; gap: 2px; }
.hero-badge .stars svg { width: 16px; height: 16px; color: var(--color-accent); fill: var(--color-accent); }
.hero-badge span { font-size: 0.875rem; font-weight: 600; }
.hero-title { font-size: 2.25rem; line-height: 1.1; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-title .highlight { position: relative; display: inline-block; color: var(--color-primary); }
.hero-title .highlight::after { content: ''; position: absolute; bottom: -0.25rem; left: 0; width: 100%; height: 6px; background: var(--color-accent); border-radius: 3px; }
.hero-description { font-size: 1.125rem; color: var(--color-muted-foreground); margin-bottom: 2rem; max-width: 36rem; }
@media (min-width: 1024px) { .hero-description { margin-left: 0; margin-right: auto; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
@media (min-width: 1024px) { .hero-buttons { justify-content: flex-start; } }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
@media (min-width: 1024px) { .hero-trust { justify-content: flex-start; } }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust-item .icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hero-trust-item .icon svg { width: 20px; height: 20px; }
.hero-trust-item span { font-size: 0.875rem; font-weight: 500; }
.hero-image-wrapper { position: relative; }
.hero-main-image { position: relative; z-index: 10; }
.hero-main-image img { width: 100%; max-width: 32rem; margin: 0 auto; border-radius: var(--radius-2xl); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); animation: float-slow 8s ease-in-out infinite; }
.hero-mascot { position: absolute; top: -2.5rem; right: -1.25rem; width: 8rem; height: 8rem; animation: bounce-soft 3s ease-in-out infinite; z-index: 20; }
@media (min-width: 1024px) { .hero-mascot { right: -2.5rem; width: 10rem; height: 10rem; } }
.hero-mascot img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15)); }
.hero-stat-card { position: absolute; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); padding: 1rem; display: flex; align-items: center; gap: 0.75rem; animation: float 6s ease-in-out infinite; z-index: 15; }
.hero-stat-card.left { left: -1rem; top: 25%; animation-delay: 0.5s; }
.hero-stat-card.right { right: -1rem; bottom: 25%; animation-delay: 1s; }
@media (min-width: 1024px) { .hero-stat-card.left { left: -2.5rem; } .hero-stat-card.right { right: -2.5rem; } }
.hero-stat-card .icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.hero-stat-card .icon svg { width: 24px; height: 24px; }
.hero-stat-card .number { font-size: 1.5rem; font-weight: 700; }
.hero-stat-card .label { font-size: 0.875rem; color: var(--color-muted-foreground); }
.hero-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120%; height: 120%; background: linear-gradient(135deg, rgba(79, 195, 247, 0.1), rgba(129, 199, 132, 0.1), rgba(255, 213, 79, 0.1)); border-radius: 50%; filter: blur(60px); z-index: -1; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 5rem 0; background: white; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--radius-full); margin-bottom: 1rem; }
.section-badge svg { width: 16px; height: 16px; }
.section-badge span { font-size: 0.875rem; font-weight: 600; }
.section-title { font-size: 1.875rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-description { font-size: 1.125rem; color: var(--color-muted-foreground); max-width: 42rem; margin: 0 auto; }
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { position: relative; background: white; border-radius: var(--radius-2xl); padding: 1.5rem; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); border-color: rgba(79, 195, 247, 0.3); }
.service-card .icon { width: 56px; height: 56px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform 0.3s; }
.service-card:hover .icon { transform: scale(1.1); }
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover h3 { color: var(--color-primary); }
.service-card p { font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.service-card .link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--color-primary); }
.service-card .link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .link svg { transform: translateX(8px); }

/* ===== WHY CHOOSE US ===== */
.why-section { padding: 5rem 0; position: relative; overflow: hidden; }
.why-content { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .why-content { grid-template-columns: 1fr 1fr; } }
.why-image-wrapper { position: relative; }
.why-image-wrapper img { width: 100%; border-radius: var(--radius-2xl); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); }
.why-stats-card { position: absolute; bottom: -1.5rem; right: -1.5rem; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium); padding: 1.5rem; }
.why-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
.why-stats-grid .number { font-size: 1.875rem; font-weight: 700; color: var(--color-primary); }
.why-stats-grid .label { font-size: 0.875rem; color: var(--color-muted-foreground); }
.why-bg-shape { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-6deg); width: 110%; height: 110%; background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(129, 199, 132, 0.2)); border-radius: 40px; z-index: -1; }
.why-text h2 { font-size: 1.875rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .why-text h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .why-text h2 { font-size: 3rem; } }
.why-text h2 .highlight { color: var(--color-primary); }
.why-text > p { font-size: 1.125rem; color: var(--color-muted-foreground); margin-bottom: 2.5rem; }
.features-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; gap: 1rem; padding: 1rem; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-radius: var(--radius-lg); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); transition: box-shadow 0.2s; }
.feature-item:hover { box-shadow: var(--shadow-soft); }
.feature-item .icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item .icon svg { width: 24px; height: 24px; }
.feature-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 5rem 0; background: linear-gradient(180deg, rgba(245, 249, 252, 0.5) 0%, white 100%); }
.google-rating { display: flex; justify-content: center; margin-bottom: 3rem; }
.google-rating-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 2rem; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.google-rating-card .divider { width: 1px; height: 32px; background: var(--color-border); }
.google-rating-card .rating { display: flex; align-items: center; gap: 0.5rem; }
.google-rating-card .rating .number { font-size: 1.875rem; font-weight: 700; }
.google-rating-card .rating .stars { display: flex; }
.google-rating-card .rating .stars svg { width: 20px; height: 20px; color: var(--color-accent); fill: var(--color-accent); }
.google-rating-card .count { color: var(--color-muted-foreground); }
.reviews-carousel { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-carousel { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-carousel { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: white; border-radius: var(--radius-2xl); padding: 2rem; box-shadow: var(--shadow-card); border: 1px solid var(--color-border); }
.review-card .quote-icon { width: 40px; height: 40px; color: rgba(79, 195, 247, 0.2); margin-bottom: 1rem; }
.review-card .stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.review-card .stars svg { width: 20px; height: 20px; color: var(--color-accent); fill: var(--color-accent); }
.review-card .text { color: var(--color-foreground); margin-bottom: 1.5rem; line-height: 1.7; }
.review-card .author { display: flex; align-items: center; gap: 1rem; }
.review-card .avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.125rem; }
.review-card .name { font-weight: 700; }
.review-card .role { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ===== CTA ===== */
.cta-section { padding: 5rem 0; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-secondary) 100%); position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-bg-circle { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.1); filter: blur(40px); }
.cta-bg-circle.top-left { top: 2.5rem; left: 2.5rem; width: 8rem; height: 8rem; }
.cta-bg-circle.bottom-right { bottom: 2.5rem; right: 2.5rem; width: 10rem; height: 10rem; }
.cta-content { position: relative; text-align: center; max-width: 48rem; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border-radius: var(--radius-full); margin-bottom: 1.5rem; }
.cta-badge .stars { display: flex; }
.cta-badge .stars svg { width: 16px; height: 16px; color: var(--color-accent); fill: var(--color-accent); }
.cta-badge span { color: rgba(255, 255, 255, 0.9); font-size: 0.875rem; font-weight: 600; }
.cta-section h2 { font-size: 1.875rem; color: white; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .cta-section h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-section h2 { font-size: 3rem; } }
.cta-section > .cta-content > p { font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.cta-buttons .btn-white { background: white; color: var(--color-primary); font-weight: 700; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.cta-buttons .btn-white:hover { transform: scale(1.05); }
.cta-buttons .btn-outline { background: transparent; color: white; border: 2px solid white; font-weight: 700; }
.cta-buttons .btn-outline:hover { background: rgba(255, 255, 255, 0.1); }
.cta-benefits { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.cta-benefit { display: flex; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; }
.cta-benefit .check { width: 20px; height: 20px; background: var(--color-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cta-benefit .check svg { width: 12px; height: 12px; color: var(--color-accent-foreground); }
