/* Reset & Variables */
:root {
    --primary-color: #6366f1; /* Pastel Indigo */
    --primary-hover: #4f46e5;
    --accent-color: #f43f5e; /* Pastel Rose for CTA */
    --bg-color: #f8fafc; /* Very light cool pastel */
    --text-color: #334155;
    --text-muted: #64748b;
    --white: rgba(255, 255, 255, 0.85); /* Slightly transparent white for glass effect */
    --border-color: rgba(255, 255, 255, 0.5);
    --font-family: 'Noto Sans KR', sans-serif;
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px; 
    position: relative;
}

/* Animated Background (Pastel Blobs) */
.bg-animation {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: #e0e7ff; /* Very light indigo pastel base */
}

.blob {
    position: absolute;
    filter: blur(60px);
    opacity: 0.85;
    animation: float 12s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: #c7d2fe; /* Soft pastel blue/indigo */
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%; right: -10%;
    width: 60vw; height: 60vw;
    background: #fbcfe8; /* Soft pastel pink */
    animation-delay: -3s;
}

.blob-3 {
    top: 40%; left: 60%;
    width: 40vw; height: 40vw;
    background: #fde68a; /* Soft pastel yellow/orange */
    animation-delay: -6s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, -100px) scale(1.2); }
    66% { transform: translate(-60px, 80px) scale(0.85); }
    100% { transform: translate(0, 0) scale(1); }
}

a { text-decoration: none; }

/* Utilities */
.container {
    max-width: 600px;
    margin: 0 auto;
}

.section-padding {
    padding: 60px 20px;
}

.glass {
    background: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1e293b;
    word-break: keep-all;
}

/* Hero Section */
.hero {
    padding: 100px 20px 60px;
    position: relative;
    z-index: 1;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    width: 320px;
    height: 420px;
    border-radius: 160px 160px 20px 20px; /* Arch shape */
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background-color: #fff;
    transform: rotate(2deg); /* slight playful tilt */
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-hover);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #0f172a;
    word-break: keep-all;
}

.hero .subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #475569;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px; 
    }
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-image-wrapper {
        width: 280px;
        height: 380px;
        border-radius: 140px 140px 20px 20px;
    }
}

/* Pain Points Section */
.check-list {
    list-style: none;
    margin-bottom: 20px;
}

.check-list li {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.check-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.pain-conclusion {
    text-align: center;
    font-size: 1.35rem;
    margin-top: 24px;
    color: #475569;
}
.pain-conclusion strong { color: var(--primary-color); }

/* Profile Section */
.profile-section {
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.profile-img-wrapper {
    width: 100%;
    height: 350px; /* Make it very large */
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 0; 
    background: #cbd5e1;
}

.profile-img { width: 100%; height: 100%; object-fit: cover; }

.profile-info {
    padding: 30px 20px 40px;
}
.profile-info h3 { font-size: 1.7rem; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.profile-info p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 20px; word-break: keep-all; }

.trust-badges { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.trust-badges span {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-hover);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Testimonials */
.testimonial-grid { display: flex; flex-direction: column; gap: 20px; }
.review-card { 
    padding: 24px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.stars { color: #fbbf24; margin-bottom: 10px; letter-spacing: 2px;}
.review-text { font-size: 1.25rem; font-weight: 500; font-style: italic; margin-bottom: 12px; color: #334155; }
.review-author { font-size: 1.1rem; color: var(--text-muted); text-align: right; }

/* Process */
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.step {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    padding-left: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.step-number {
    position: absolute;
    left: 15px; top: 20px;
    width: 32px; height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
}
.step h4 { font-size: 1.45rem; margin-bottom: 6px; color: #1e293b; }
.step p { font-size: 1.15rem; color: var(--text-muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { 
    padding: 20px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.faq-q { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; color: var(--primary-color); }
.faq-a { font-size: 1.25rem; color: var(--text-muted); }

/* Form Section */
.form-section { padding: 40px 20px 60px; max-width: 600px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 30px; }
.form-header h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; color: #1e293b; }
.form-header p { color: var(--text-muted); font-size: 0.95rem; }

.lead-form { padding: 30px 20px; }
.input-group { margin-bottom: 24px; }
.input-group label { display: block; font-weight: 700; margin-bottom: 10px; font-size: 1.25rem; }
.required { color: var(--accent-color); }

input[type="text"], input[type="tel"], textarea, input[type="password"] {
    width: 100%; padding: 14px;
    border: 1px solid #cbd5e1; border-radius: 8px;
    font-size: 1.25rem; font-family: inherit;
    background: rgba(255,255,255,0.9);
    transition: all 0.2s;
}
input:focus, textarea:focus {
    outline: none; border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); background: #fff;
}

/* Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 1.25rem;
    color: #475569;
    user-select: none;
    line-height: 1.5;
}
.checkbox-container input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.checkmark {
    position: absolute; top: 2px; left: 0; height: 22px; width: 22px;
    background-color: rgba(255,255,255,0.8); border: 1px solid #cbd5e1; border-radius: 6px; transition: all 0.2s ease;
}
.checkbox-container input:checked ~ .checkmark { background-color: var(--primary-color); border-color: var(--primary-color); }
.checkmark:after { content: ""; position: absolute; display: none; }
.checkbox-container input:checked ~ .checkmark:after { display: block; }
.checkbox-container .checkmark:after {
    left: 7px; top: 3px; width: 5px; height: 10px;
    border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* Submit Button */
.btn-submit {
    width: 100%; background: var(--accent-color); color: #fff;
    border: none; padding: 16px; font-size: 1.1rem; font-weight: 800;
    border-radius: 8px; cursor: pointer; transition: transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 6px 15px rgba(244, 63, 94, 0.3); margin-top: 10px;
}
.btn-submit:active { transform: translateY(2px); box-shadow: 0 2px 5px rgba(244, 63, 94, 0.3); }

/* Footer */
footer { text-align: center; padding: 20px; color: #94a3b8; font-size: 0.8rem; margin-bottom: 40px; }

/* Sticky CTA */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    padding: 12px 20px; background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.3);
    z-index: 100; transform: translateY(100%); transition: transform 0.3s ease-in-out;
    display: flex; justify-content: center;
}
.sticky-cta.show { transform: translateY(0); }
.btn-sticky {
    display: block; width: 100%; max-width: 600px;
    background: var(--primary-color); color: #fff; text-align: center;
    padding: 16px; border-radius: 8px; font-weight: 800; font-size: 1.1rem;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

/* Desktop */
@media (min-width: 768px) {
    .hero { padding: 100px 20px 80px; }
    .hero h1 { font-size: 3rem; }
    .sticky-cta { display: none; }
    body { padding-bottom: 0; }
}
