@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --teal: #0D9488;
    --teal-light: #14B8A6;
    --teal-dark: #0F766E;
    --mint: #F0FDFA;
    --dark: #0F172A;
    --gray: #64748B;
    --white: #FFFFFF;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--white);
    color: var(--dark);
}

nav {
    position: fixed;
    width: 100%;
    padding: 18px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #F1F5F9;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-links a:hover { color: var(--teal); }

.btn-appointment {
    background: var(--teal);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 120px 50px 80px;
    align-items: center;
    background: var(--mint);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--teal); }

.hero p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }

.btn-primary {
    background: var(--teal);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.btn-outline {
    background: white;
    color: var(--teal);
    padding: 16px 32px;
    border: 2px solid var(--teal);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.trust-items {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}
.trust-item span { font-size: 1.2rem; }

.hero-visual {
    position: relative;
}

.hero-img-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #CCFBF1, #99F6E4);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.floating-card:nth-child(2) {
    bottom: 30px;
    left: -30px;
}

.floating-card:nth-child(3) {
    top: 30px;
    right: -20px;
}

.floating-card h4 { font-size: 1.5rem; font-weight: 700; color: var(--teal); }
.floating-card p { color: var(--gray); font-size: 0.85rem; }

.section { padding: 100px 50px; }
.bg-mint { background: var(--mint); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { color: var(--teal); font-weight: 600; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}
.service-card:hover {
    border-color: var(--teal);
    box-shadow: 0 15px 50px rgba(13, 148, 136, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--mint);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

.process-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-steps { display: flex; flex-direction: column; gap: 30px; }

.step {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    transition: background 0.3s;
}
.step:hover { background: var(--mint); }

.step-num {
    width: 50px;
    height: 50px;
    background: var(--teal);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #E2E8F0;
}

.stars { color: #FBBF24; margin-bottom: 15px; }
.testimonial p { color: var(--gray); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--teal);
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-info { color: var(--gray); font-size: 0.8rem; }

.cta-section {
    background: var(--teal);
    padding: 80px 50px;
    text-align: center;
    color: white;
}
.cta-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; }
.cta-section p { opacity: 0.8; margin-bottom: 30px; font-size: 1.1rem; }
.cta-btn {
    background: white;
    color: var(--teal);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 15px; line-height: 1.7; }
.footer-col h4 { margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; padding: 5px 0; font-size: 0.9rem; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { padding: 20px 50px; background: #080E1E; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; }
