:root {
    --blush: #F2D7D9;
    --blush-deep: #E8B4B8;
    --sage: #D4DFC7;
    --sage-deep: #B8C9A3;
    --lavender: #D5C7E8;
    --lavender-deep: #B8A4D4;
    --cream: #FFF8F0;
    --warm-white: #FFFDF9;
    --sand: #F0E6D3;
    --text-dark: #3D3535;
    --text-soft: #6B5E5E;
    --text-light: #9B8E8E;
    --accent-rose: #C48B8B;
    --accent-green: #8FA87A;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.3;
}

/* ═══════════════ NOISE TEXTURE OVERLAY ═══════════════ */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ═══════════════ NAVIGATION ═══════════════ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(196, 139, 139, 0.08);
    padding: 0.6rem 2rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-logo span {
    color: var(--accent-rose);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-rose);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--accent-rose); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--blush) !important;
    color: var(--text-dark) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--blush-deep) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 35%, var(--lavender) 65%, var(--sage) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 223, 199, 0.4) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 199, 232, 0.3) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.03); }
    66% { transform: translate(-20px, 15px) scale(0.97); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--accent-rose);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.3s;
}

.hero-text .subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--accent-rose);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.5s;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.7s;
}

.hero-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.6s;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 500;
    border: 1px solid rgba(196, 139, 139, 0.15);
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards 0.8s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-card {
    width: 380px;
    height: 460px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 30px 80px rgba(196, 139, 139, 0.1), 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
}

.hero-card::before {
    content: '🌿';
    position: absolute;
    top: -20px;
    right: -15px;
    font-size: 3rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hero-card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(196, 139, 139, 0.2);
}

.hero-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 300;
}

.hero-card .online-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--accent-green);
    font-weight: 500;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.9s;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--accent-rose);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 139, 139, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(196, 139, 139, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
    border: 1.5px solid var(--blush-deep);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--blush);
    transform: translateY(-2px);
}

/* ═══════════════ SECTIONS COMMON ═══════════════ */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-rose);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 600px;
    font-weight: 300;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
    background: var(--warm-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    background: linear-gradient(160deg, var(--blush) 0%, var(--lavender) 50%, var(--sage) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(61, 53, 53, 0.08) 100%);
}

.about-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

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

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    z-index: 2;
}

.about-floating-card .stat {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-rose);
}

.about-floating-card .stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--text-soft);
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1rem;
}

.about-highlight {
    background: linear-gradient(135deg, var(--cream), rgba(242, 215, 217, 0.3));
    border-left: 3px solid var(--accent-rose);
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.6;
}

.about-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid;
}

.about-tag:nth-child(1) { background: rgba(242, 215, 217, 0.3); border-color: var(--blush-deep); color: var(--accent-rose); }
.about-tag:nth-child(2) { background: rgba(212, 223, 199, 0.3); border-color: var(--sage-deep); color: var(--accent-green); }
.about-tag:nth-child(3) { background: rgba(213, 199, 232, 0.3); border-color: var(--lavender-deep); color: #8B6FB0; }
.about-tag:nth-child(4) { background: rgba(240, 230, 211, 0.4); border-color: var(--sand); color: #A89070; }

/* ═══════════════ SERVICES ═══════════════ */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
    transition: height 0.4s ease;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blush), var(--blush-deep)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--lavender), var(--lavender-deep)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--sage), var(--sage-deep)); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.service-card:hover::before {
    height: 6px;
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-icon { background: rgba(242, 215, 217, 0.5); }
.service-card:nth-child(2) .service-icon { background: rgba(213, 199, 232, 0.5); }
.service-card:nth-child(3) .service-icon { background: rgba(212, 223, 199, 0.5); }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✦';
    font-size: 0.6rem;
    color: var(--accent-rose);
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works {
    background: var(--warm-white);
}

.how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-header .section-desc {
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--blush), var(--lavender), var(--sage), var(--blush-deep));
    opacity: 0.4;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.step:nth-child(1) .step-number { background: var(--blush); color: var(--accent-rose); }
.step:nth-child(2) .step-number { background: var(--lavender); color: #8B6FB0; }
.step:nth-child(3) .step-number { background: var(--sage); color: var(--accent-green); }
.step:nth-child(4) .step-number { background: var(--sand); color: #A89070; }

.step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ═══════════════ FORMATION ═══════════════ */
.formation {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(213, 199, 232, 0.1) 50%, var(--warm-white) 100%);
}

.formation-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.formation-header .section-desc {
    margin: 0 auto;
}

.formation-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.formation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blush), var(--lavender), var(--sage));
    opacity: 0.5;
}

.formation-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 0;
    margin-bottom: 2rem;
    align-items: start;
}

.formation-item:nth-child(odd) .formation-content { grid-column: 1; text-align: right; padding-right: 1.5rem; }
.formation-item:nth-child(odd) .formation-dot { grid-column: 2; }
.formation-item:nth-child(odd) .formation-year { grid-column: 3; padding-left: 1.5rem; }

.formation-item:nth-child(even) .formation-year { grid-column: 1; text-align: right; padding-right: 1.5rem; }
.formation-item:nth-child(even) .formation-dot { grid-column: 2; }
.formation-item:nth-child(even) .formation-content { grid-column: 3; padding-left: 1.5rem; }

.formation-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--accent-rose);
    justify-self: center;
    margin-top: 5px;
}

.formation-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.formation-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
}

.formation-year span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--accent-rose);
    font-weight: 600;
}

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials {
    background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 50%, var(--lavender) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 10%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #F0C987;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.testimonial-card:nth-child(1) .testimonial-avatar { background: var(--accent-rose); }
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--lavender-deep); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--accent-green); }
.testimonial-card:nth-child(4) .testimonial-avatar { background: #D4A574; }
.testimonial-card:nth-child(5) .testimonial-avatar { background: var(--blush-deep); }
.testimonial-card:nth-child(6) .testimonial-avatar { background: var(--sage-deep); }

.testimonial-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-method:nth-child(1) .contact-method-icon { background: rgba(37, 211, 102, 0.1); }
.contact-method:nth-child(2) .contact-method-icon { background: rgba(242, 215, 217, 0.5); }
.contact-method:nth-child(3) .contact-method-icon { background: rgba(213, 199, 232, 0.5); }
.contact-method:nth-child(4) .contact-method-icon { background: rgba(212, 223, 199, 0.5); }

.contact-method-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-method-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-rose);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-rose);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--blush-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(196, 139, 139, 0.3);
}

/* ═══════════════ EBOOKS / TIENDA ═══════════════ */
.ebooks {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 40%, rgba(213, 199, 232, 0.12) 100%);
    position: relative;
    overflow: hidden;
}

.ebooks::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 215, 217, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.ebooks::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -8%;
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 223, 199, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.ebooks-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.ebooks-header .section-desc {
    margin: 0 auto;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.ebook-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.ebook-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.07);
}

.ebook-cover {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebook-card:nth-child(1) .ebook-cover {
    background: linear-gradient(160deg, var(--blush) 0%, #F5C6C6 40%, var(--lavender) 100%);
}
.ebook-card:nth-child(2) .ebook-cover {
    background: linear-gradient(160deg, var(--sage) 0%, #C8DDB5 40%, var(--lavender) 100%);
}
.ebook-card:nth-child(3) .ebook-cover {
    background: linear-gradient(160deg, var(--lavender) 0%, #C4B8E0 40%, var(--blush) 100%);
}

.ebook-cover-inner {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.ebook-cover-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.ebook-cover-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 200px;
    margin: 0 auto;
}

.ebook-cover-author {
    font-size: 0.75rem;
    color: var(--text-soft);
    margin-top: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ebook-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(255,255,255,0.15) 100%);
    pointer-events: none;
}

.ebook-cover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.03) 100%);
    z-index: 3;
}

.ebook-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-rose);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 4;
}

.ebook-info {
    padding: 1.5rem 1.8rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ebook-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ebook-info p {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.2rem;
}

.ebook-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.ebook-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-light);
}

.ebook-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.ebook-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ebook-price .currency {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.ebook-price .old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 400;
}

.btn-ebook {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.ebook-card:nth-child(1) .btn-ebook {
    background: var(--blush);
    color: var(--text-dark);
}
.ebook-card:nth-child(1) .btn-ebook:hover {
    background: var(--blush-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.4);
}

.ebook-card:nth-child(2) .btn-ebook {
    background: var(--sage);
    color: var(--text-dark);
}
.ebook-card:nth-child(2) .btn-ebook:hover {
    background: var(--sage-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 201, 163, 0.4);
}

.ebook-card:nth-child(3) .btn-ebook {
    background: var(--lavender);
    color: var(--text-dark);
}
.ebook-card:nth-child(3) .btn-ebook:hover {
    background: var(--lavender-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 164, 212, 0.4);
}

.ebooks-footer {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.ebooks-footer p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.ebooks-footer-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ebooks-footer-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 500;
}

.hotmart-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.05);
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .ebooks-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .ebooks-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* ═══════════════ SOCIAL PROOF BAR ═══════════════ */
.social-bar {
    background: linear-gradient(90deg, var(--blush) 0%, var(--lavender) 50%, var(--sage) 100%);
    padding: 2rem;
    text-align: center;
}

.social-bar-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s;
}

.social-link:hover { transform: translateY(-2px); }

.social-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ═══════════════ FOOTER ═══════════════ */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-links h5 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--blush); }

.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ═══════════════ WHATSAPP FLOATING BTN ═══════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    min-width: 200px;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    background: #25D366;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
    animation: bounceIn 0.8s ease forwards 1.5s;
    opacity: 0;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-float-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.whatsapp-float-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-float-label {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

.whatsapp-float-number {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .whatsapp-float {
        min-width: 60px;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    .whatsapp-float-text {
        display: none;
    }
    .whatsapp-float-icon {
        width: 28px;
        height: 28px;
    }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }

    .hero-text p { margin: 0 auto 2rem; }
    .hero-badges { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-card { width: 280px; height: 340px; }
    .hero-card-icon { width: 70px; height: 70px; font-size: 2rem; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .steps-container { grid-template-columns: 1fr 1fr; }
    .steps-container::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }

    .formation-timeline::before { left: 20px; transform: none; }
    .formation-item { grid-template-columns: 40px 1fr; }
    .formation-item:nth-child(odd) .formation-content,
    .formation-item:nth-child(even) .formation-content { grid-column: 2; text-align: left; padding-left: 1rem; padding-right: 0; }
    .formation-item:nth-child(odd) .formation-dot,
    .formation-item:nth-child(even) .formation-dot { grid-column: 1; grid-row: 1; }
    .formation-item:nth-child(odd) .formation-year,
    .formation-item:nth-child(even) .formation-year { grid-column: 2; text-align: left; padding-left: 1rem; padding-right: 0; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(255, 253, 249, 0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    }

    section { padding: 4rem 1.2rem; }
    .steps-container { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
    .social-bar-inner { gap: 1.5rem; }
}
