/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D2D2D;
    background: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === FONTS === */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; src: local('Inter'); }

/* === COLOR VARIABLES === */
:root {
    --charcoal: #2D2D2D;
    --charcoal-light: #3D3D3D;
    --charcoal-dark: #1A1A1A;
    --coral: #E8645B;
    --coral-dark: #D15249;
    --coral-light: #F28A82;
    --neutral-50: #F8F8F8;
    --neutral-100: #F1F1F1;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(45,45,45,0.08);
    --shadow-md: 0 4px 16px rgba(45,45,45,0.1);
    --shadow-lg: 0 8px 32px rgba(45,45,45,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

/* === UTILITY === */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--neutral-500);
    max-width: 600px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--neutral-300);
}
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-nav {
    background: var(--coral);
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.875rem;
}
.btn-nav:hover { background: var(--coral-dark); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; padding: 16px 28px; }

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
}
.logo-mark { color: var(--coral); }
.logo-accent { color: var(--coral); font-weight: 600; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--coral); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.2s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, #FFF5F4 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--neutral-500);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.125rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
}
.trust-item svg { color: var(--coral); flex-shrink: 0; }

/* Hero Images */
.hero-image-wrap {
    position: relative;
    padding-left: 24px;
}
.hero-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 6/7;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: -24px;
    left: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.float-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45,45,45,0.85));
    padding: 24px 16px 12px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.float-badge-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.float-badge-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); }

/* === SERVICES === */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: #FFF5F4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* === ABOUT === */
.about {
    padding: 100px 0;
    background: var(--neutral-50);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 7/6; }
.about-stat-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
}
.stat-box {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    margin-top: 4px;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-body {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.5;
}
.about-feature svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* === WHY === */
.why {
    padding: 100px 0;
    background: var(--charcoal);
}
.why .section-tag { color: var(--coral-light); }
.why .section-title { color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.why-item {
    padding: 36px;
    background: var(--charcoal-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.why-item:hover { border-color: rgba(232,100,91,0.3); transform: translateY(-2px); }
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.8;
}
.why-item h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.why-item p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.testimonial-quote { color: var(--coral); margin-bottom: 16px; opacity: 0.7; }
.testimonial-text {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}
.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* === CONTACT === */
.contact {
    padding: 100px 0;
    background: var(--neutral-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: #FFF5F4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}
.contact-detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.contact-detail span, .contact-detail a {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}
.contact-detail a:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,100,91,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-privacy {
    font-size: 0.8125rem;
    color: var(--neutral-400);
    margin-top: 16px;
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon { color: var(--coral); margin-bottom: 16px; }
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.form-success p { color: var(--neutral-500); line-height: 1.7; }
.form-success a { color: var(--coral); font-weight: 600; }

/* === FOOTER === */
.site-footer {
    background: var(--charcoal-dark);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; color: var(--white); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-links a, .footer-links span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    line-height: 1.6;
}
.footer-links a:hover { color: var(--coral-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--coral-light); }

/* === MOBILE NAV OVERLAY === */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}
.nav-overlay.active { display: block; }

/* === ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--neutral-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .nav-links.active { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image-wrap { padding-left: 0; order: -1; max-width: 480px; margin: 0 auto; }
    .hero-img-float { left: 16px; bottom: -16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-features { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding-top: 72px; }
    .hero-headline { font-size: 1.75rem; }
    .services, .about, .why, .testimonials, .contact { padding: 64px 0; }
    .service-card { padding: 28px 20px; }
}
