/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════ */
:root {
    --pink: #E8A0BF;
    --pink-light: #F3C8DC;
    --pink-dark: #D47FA6;
    --lavender: #BA90C6;
    --lavender-light: #D4B8DD;
    --lavender-dark: #9A6FAF;
    --baby-blue: #C0DBEA;
    --baby-blue-light: #DAE9F2;
    --cream: #FDF0D5;
    --cream-dark: #F5E2B8;
    --text-dark: #2D2D2D;
    --text-medium: #4A4A5A;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-page: #FFFBF7;
    --shadow-soft: 0 4px 24px rgba(232, 160, 191, 0.12);
    --shadow-card: 0 8px 32px rgba(186, 144, 198, 0.10);
    --shadow-hover: 0 12px 40px rgba(232, 160, 191, 0.20);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-page);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════
   QUOTE OF THE DAY
═══════════════════════════════════════════ */
.quote-section {
    background: linear-gradient(160deg, #FFF5F8 0%, #F8F0FF 50%, #F0F4FF 100%);
    position: relative; overflow: hidden;
}
.quote-section::before {
    content: ''; position: absolute; width: 300px; height: 300px;
    border-radius: 50%; top: -80px; left: -80px;
    background: radial-gradient(circle, rgba(232,160,191,0.12) 0%, transparent 70%);
}
.quote-card-wrap {
    max-width: 680px; margin: 0 auto; position: relative; z-index: 1;
}
.quote-card {
    background: white; border-radius: var(--radius-xl); padding: 48px 40px;
    box-shadow: var(--shadow-card); text-align: center; position: relative;
    border: 1px solid rgba(232,160,191,0.12);
}
@media (max-width: 600px) { .quote-card { padding: 32px 24px; } }
.quote-big-mark {
    font-family: 'Caveat', cursive; font-size: 5rem; line-height: 1;
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: -16px; display: block;
    user-select: none;
}
.quote-text {
    font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 600;
    color: var(--text-dark); line-height: 1.7; margin-bottom: 20px;
    font-style: italic;
}
.quote-author {
    font-size: 0.95rem; color: var(--lavender-dark); font-weight: 600;
    margin-bottom: 8px;
}
.quote-source {
    font-size: 0.8rem; color: var(--text-light); margin-bottom: 28px;
}
.quote-date-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(232,160,191,0.1), rgba(186,144,198,0.1));
    font-size: 0.8rem; font-weight: 600; color: var(--lavender-dark);
    margin-bottom: 24px;
}
.quote-actions {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.btn-share {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.9rem; cursor: pointer;
    transition: var(--transition); border: none;
}
.btn-share-ig {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: white; box-shadow: 0 4px 16px rgba(225,48,108,0.3);
}
.btn-share-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,48,108,0.4); }
.btn-share-wa {
    background: #25D366; color: white;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn-share-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-share-copy {
    background: white; color: var(--text-medium);
    border: 2px solid rgba(232,160,191,0.3);
}
.btn-share-copy:hover { background: var(--pink-light); color: var(--pink-dark); border-color: var(--pink-light); }
.btn-share-copy.copied { background: #E8F5E9; color: #2E7D32; border-color: #C8E6C9; }
.quote-nav {
    display: flex; gap: 12px; justify-content: center; margin-top: 24px;
}
.quote-nav-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: white; border: 2px solid var(--pink-light);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition); color: var(--pink-dark);
}
.quote-nav-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* Hidden canvas for IG story generation */
#quoteCanvas { display: none; }

/* ═══════════════════════════════════════════
   TIPS HARIAN
═══════════════════════════════════════════ */
.tips-section { background: white; }
.tips-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tips-grid { grid-template-columns: repeat(3, 1fr); } }
.tip-card {
    background: linear-gradient(145deg, #FFFBF7, #FFF5F8);
    border-radius: var(--radius-md); padding: 28px;
    border: 1px solid rgba(232,160,191,0.1);
    transition: var(--transition); position: relative; overflow: hidden;
}
.tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tip-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--pink), var(--lavender));
    border-radius: 4px 4px 0 0;
}
.tip-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
.tip-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.tip-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.tip-category {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 12px;
}
.tip-category.edukasi { background: #E8F5E9; color: #2E7D32; }
.tip-category.praktis { background: #E3F2FD; color: #1565C0; }
.tip-category.motivasi { background: #FCE4EC; color: #C62828; }

/* ═══════════════════════════════════════════
   BLOG / ARTIKEL SEO
═══════════════════════════════════════════ */
.blog-section { background: linear-gradient(180deg, var(--bg-page), #FFF8FA); }
.blog-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
    background: white; border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(232,160,191,0.08);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-thumb {
    width: 100%; height: 180px; object-fit: cover;
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
}
.blog-card-body { padding: 24px; }
.blog-tag {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 12px;
    background: rgba(232,160,191,0.12); color: var(--pink-dark);
}
.blog-card h3 {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
    color: var(--text-dark); line-height: 1.4;
}
.blog-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more {
    font-size: 0.9rem; font-weight: 600; color: var(--pink-dark);
    display: inline-flex; align-items: center; gap: 6px;
}
.blog-read-more:hover { gap: 10px; }
.blog-cta-wrap { text-align: center; margin-top: 40px; }

/* Share toast notification */
.share-toast {
    position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--text-dark); color: white; padding: 12px 24px;
    border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 600;
    z-index: 9999; opacity: 0; transition: all 0.3s ease;
    pointer-events: none; white-space: nowrap;
}
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════ */
.skip-link {
    position: absolute; top: -100%; left: 16px; z-index: 10000;
    padding: 12px 24px; background: var(--pink); color: white;
    border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 16px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 1rem; transition: var(--transition);
    white-space: nowrap; position: relative; overflow: hidden;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: white; box-shadow: 0 4px 20px rgba(232, 160, 191, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232, 160, 191, 0.5); }

.btn-secondary {
    background: white; color: var(--pink-dark);
    border: 2px solid var(--pink-light); box-shadow: var(--shadow-soft);
}
.btn-secondary:hover {
    background: var(--pink); color: white;
    border-color: var(--pink); transform: translateY(-2px);
}

.btn-wa {
    background: #25D366; color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
    background: #1EBE5A; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section { padding: 80px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 100px 0; } }

.section-label {
    font-family: 'Caveat', cursive; font-size: 1.25rem;
    color: var(--lavender); font-weight: 600; margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
    line-height: 1.25; margin-bottom: 16px; color: var(--text-dark);
}
.section-subtitle {
    font-size: 1.1rem; color: var(--text-light);
    max-width: 600px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255, 251, 247, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 160, 191, 0.1);
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(186, 144, 198, 0.1); }
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between; height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.4rem; color: var(--pink-dark);
}
.logo-img {
    width: 42px; height: 42px; border-radius: 12px; object-fit: contain;
}

.nav-desktop { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
    font-size: 0.95rem; font-weight: 500; color: var(--text-medium);
    position: relative; padding: 4px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--pink);
    border-radius: 2px; transition: width 0.3s ease;
}
.nav-link:hover { color: var(--pink-dark); }
.nav-link:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    padding: 8px; z-index: 1001;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span {
    display: block; width: 24px; height: 2.5px;
    background: var(--text-dark); border-radius: 2px;
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    background: var(--bg-page); z-index: 999;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); }
.nav-mobile a:hover { color: var(--pink-dark); }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
    padding-top: 120px; padding-bottom: 60px;
    background: linear-gradient(170deg, var(--bg-page) 0%, #FFF5F8 30%, var(--cream) 70%, var(--bg-page) 100%);
    position: relative; overflow: hidden;
}
@media (min-width: 768px) { .hero { padding-top: 140px; padding-bottom: 80px; } }

.hero::before {
    content: ''; position: absolute; width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 191, 0.15) 0%, transparent 70%);
    top: -100px; right: -150px; animation: float 8s ease-in-out infinite;
}
.hero::after {
    content: ''; position: absolute; width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 219, 234, 0.15) 0%, transparent 70%);
    bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-inner {
    display: grid; grid-template-columns: 1fr;
    gap: 48px; align-items: center;
    position: relative; z-index: 1;
}
@media (min-width: 768px) {
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; background: white;
    border-radius: var(--radius-full); box-shadow: var(--shadow-soft);
    font-size: 0.85rem; font-weight: 600; color: var(--lavender-dark);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #25D366; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.2rem); font-weight: 800;
    line-height: 1.15; color: var(--text-dark); margin-bottom: 20px;
    line-height: 1.15;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--pink-dark), var(--lavender-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 32px;
}
.hero-cta {
    display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
@media (max-width: 480px) {
    .hero-cta .btn { width: 100%; justify-content: center; }
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--text-medium);
}
.trust-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.trust-icon.green { background: #E8F5E9; color: #2E7D32; }
.trust-icon.blue { background: #E3F2FD; color: #1565C0; }
.trust-icon.pink { background: #FCE4EC; color: #C62828; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-image {
    width: 100%; max-width: 520px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(186, 144, 198, 0.2);
    animation: gentle-bob 4s ease-in-out infinite;
}
@keyframes gentle-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════
   PROOF BAR
═══════════════════════════════════════════ */
.proof-bar {
    padding: 40px 0; background: white;
    border-top: 1px solid rgba(232, 160, 191, 0.1);
    border-bottom: 1px solid rgba(232, 160, 191, 0.1);
}
.proof-bar-inner {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; text-align: center;
}
.proof-item-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800;
    background: linear-gradient(135deg, var(--pink-dark), var(--lavender-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1.2;
}
.proof-item-label {
    font-size: 0.85rem; color: var(--text-light);
    font-weight: 500; margin-top: 4px;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem-section { background: linear-gradient(180deg, var(--bg-page), #FFF8FA); }
.problem-grid {
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
    background: white; border-radius: var(--radius-md);
    padding: 28px; box-shadow: var(--shadow-soft);
    border: 1px solid rgba(232, 160, 191, 0.08);
    transition: var(--transition);
    display: flex; gap: 16px; align-items: flex-start;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.problem-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    border-radius: 14px; display: flex;
    align-items: center; justify-content: center; font-size: 1.4rem;
}
.problem-icon.rose { background: #FDEDF3; }
.problem-icon.lavender { background: #F0E6F5; }
.problem-icon.blue { background: #E6F0F8; }
.problem-icon.cream { background: #FDF5E6; }
.problem-icon.mint { background: #E6F5F0; }
.problem-icon.peach { background: #FDF0E6; }

.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.problem-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.problem-closing {
    text-align: center; margin-top: 48px;
    font-family: 'Caveat', cursive; font-size: 1.5rem;
    color: var(--lavender-dark); font-weight: 600;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section { background: white; }
.services-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
    background: var(--bg-page); border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid rgba(232, 160, 191, 0.08);
    transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; border-radius: 4px 4px 0 0; transition: height 0.3s ease;
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--pink), var(--pink-dark)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--lavender), var(--lavender-dark)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--baby-blue), #8BB8D0); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--cream-dark), #E8C87A); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { height: 6px; }

.service-icon-wrap {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.6rem;
}
.service-card:nth-child(1) .service-icon-wrap { background: #FDEDF3; }
.service-card:nth-child(2) .service-icon-wrap { background: #F0E6F5; }
.service-card:nth-child(3) .service-icon-wrap { background: #E6F0F8; }
.service-card:nth-child(4) .service-icon-wrap { background: #FDF5E6; }

.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-section { background: linear-gradient(180deg, #FFF8FA, var(--bg-page)); }
.about-inner {
    display: grid; grid-template-columns: 1fr;
    gap: 48px; align-items: center;
}
@media (min-width: 768px) {
    .about-inner { grid-template-columns: 5fr 7fr; gap: 64px; }
}
.about-photo-wrap { display: flex; justify-content: center; }
.about-photo {
    width: 300px; height: 380px; border-radius: var(--radius-xl);
    object-fit: cover; object-position: top center;
    box-shadow: var(--shadow-card);
    border: 4px solid rgba(255, 255, 255, 0.8);
}
.about-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800; margin-bottom: 20px;
}
.about-content > p {
    color: var(--text-medium); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: 16px;
}
.about-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 28px; margin-bottom: 32px;
}
.about-value {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 0.95rem; color: var(--text-medium);
}
.about-value-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: #FDEDF3; display: flex;
    align-items: center; justify-content: center; font-size: 1rem;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════════ */
.testimonials-section { background: white; overflow: hidden; }
.testimonial-card {
    background: var(--bg-page); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid rgba(232, 160, 191, 0.08);
}
.testimonial-stars {
    display: flex; gap: 4px; margin-bottom: 16px;
    color: #FBBF24; font-size: 1.1rem;
}
.testimonial-card blockquote {
    font-size: 0.95rem; color: var(--text-medium);
    line-height: 1.8; font-style: italic; margin-bottom: 20px;
}
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--lavender-light));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: var(--lavender-dark);
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-meta { font-size: 0.8rem; color: var(--text-light); }

.swiper { padding-bottom: 48px !important; }
.swiper-pagination-bullet { background: var(--pink) !important; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { width: 28px; border-radius: 5px !important; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section { background: linear-gradient(180deg, var(--bg-page), #FFF8FA); }
.steps-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.step-card { text-align: center; padding: 32px 24px; position: relative; }
.step-number {
    font-family: 'Caveat', cursive; font-size: 3rem; font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--lavender));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 16px;
}
.step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: white; box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.6rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
@media (min-width: 1024px) {
    .step-card:not(:last-child)::after {
        content: ''; position: absolute; top: 80px; right: -12px;
        width: 24px; height: 2px; background: var(--pink-light);
    }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section { background: white; }
.faq-list {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
    background: var(--bg-page); border-radius: var(--radius-md);
    border: 1px solid rgba(232, 160, 191, 0.06);
    overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(232, 160, 191, 0.15); }
.faq-question {
    display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    width: 100%; padding: 20px 24px;
    font-size: 1rem; font-weight: 600; color: var(--text-dark);
    text-align: left; cursor: pointer;
    background: none; border: none; font-family: inherit;
}
.faq-chevron {
    flex-shrink: 0; width: 24px; height: 24px;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 24px 20px; font-size: 0.95rem;
    color: var(--text-light); line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #F8E8F0 30%, #EDE4F3 60%, #E6EFF8 100%);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 191, 0.12) 0%, transparent 70%);
    top: -200px; right: -200px;
}
.cta-inner {
    text-align: center; position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto;
}
.cta-inner h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 800; margin-bottom: 20px; line-height: 1.25;
}
.cta-inner p {
    font-size: 1.1rem; color: var(--text-medium);
    line-height: 1.8; margin-bottom: 36px;
}
.cta-buttons {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.cta-note {
    margin-top: 20px; font-size: 0.85rem; color: var(--text-light);
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */
.contact-section { background: var(--bg-page); }
.contact-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    border-radius: 14px; background: #FDEDF3;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink-dark);
}
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.contact-info-item a { color: var(--pink-dark); font-weight: 600; }
.contact-info-item a:hover { text-decoration: underline; }

.contact-map {
    width: 100%; height: 240px; border-radius: var(--radius-md);
    overflow: hidden; margin-top: 24px;
    border: 1px solid rgba(232, 160, 191, 0.1);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
    background: white; border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-card);
    border: 1px solid rgba(232, 160, 191, 0.06);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.9rem; font-weight: 600;
    color: var(--text-medium); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #E8E8EE;
    border-radius: var(--radius-sm); font-family: inherit;
    font-size: 0.95rem; color: var(--text-dark);
    background: var(--bg-page); transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(232, 160, 191, 0.15);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; text-align: center; padding: 32px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: 0.95rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
    background: var(--text-dark); color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 40px; margin-bottom: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
.footer h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.footer-links a:hover { color: var(--pink-light); }

.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, 0.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--pink); color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px; display: flex; flex-wrap: wrap;
    justify-content: space-between; gap: 16px; font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: var(--pink-light); }
.footer-logo-img {
    width: 42px; height: 42px; border-radius: 12px; object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════ */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.wa-tooltip {
    background: white; color: var(--text-dark);
    padding: 10px 16px; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 600;
    box-shadow: var(--shadow-card); white-space: nowrap;
    opacity: 0; transform: translateY(8px);
    transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }

.wa-float-btn {
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition); animation: wa-pulse 2s infinite;
}
@media (min-width: 768px) { .wa-float-btn { width: 64px; height: 64px; } }
.wa-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.wa-float-btn svg { width: 28px; height: 28px; }
@keyframes wa-pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
    70% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); }

/* WhatsApp SVG icon reusable */
.wa-icon { display: inline-block; vertical-align: middle; }
