/* ====================================
   PARENTING LANDING PAGE – STYLE
   Soft pink/blush palette
   ==================================== */

:root {
    --bg-primary: #f0d9d9;
    --bg-secondary: #e8cccc;
    --bg-card: rgba(255, 255, 255, 0.5);
    --bg-card-hover: rgba(255, 255, 255, 0.7);
    --text-primary: #2d3a47;
    --text-secondary: #4a5968;
    --text-muted: #6b7a8a;
    --accent-primary: #5a7a94;
    --accent-secondary: #4a6a84;
    --accent-pink: #c4a4a8;
    --gradient-primary: linear-gradient(135deg, #5a7a94 0%, #4a6a84 50%, #6a8aa4 100%);
    --gradient-warm: linear-gradient(135deg, #c4a4a8 0%, #d4b4b8 50%, #e8cccc 100%);
    --gradient-glow: linear-gradient(135deg, rgba(90, 122, 148, 0.3) 0%, rgba(74, 106, 132, 0.3) 50%, rgba(106, 138, 164, 0.3) 100%);
    --border-color: rgba(90, 110, 127, 0.15);
    --border-glow: rgba(90, 122, 148, 0.4);
    --section-padding: 100px;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.6s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(90, 122, 148, 0.15);
}

/* ============ RESET ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    position: relative;
}

/* Subtle gradient overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(196, 164, 168, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(122, 155, 184, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(90, 122, 148, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.85rem 2rem;
    background: rgba(240, 217, 217, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

header.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(240, 217, 217, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-fast);
    border-radius: 1px;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.nav-cta.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.nav-cta.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2be072 0%, #159b8a 100%);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.nav-cta.whatsapp-btn svg { flex-shrink: 0; }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem 0.45rem 0.5rem;
    background: rgba(122, 155, 184, 0.1);
    border: 1px solid rgba(122, 155, 184, 0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(122, 155, 184, 0.1); }
    50% { box-shadow: 0 0 30px rgba(122, 155, 184, 0.25); }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #7a9bb8;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(122, 155, 184, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(122, 155, 184, 0); }
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* ============ BUTTONS ============ */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-medium);
    overflow: hidden;
    font-family: inherit;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(122, 155, 184, 0.4), 0 0 80px rgba(122, 155, 184, 0.15);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.bounce-finger {
    display: inline-block;
    font-size: 1.1em;
    animation: bounce-down 1s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-medium);
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    border-color: var(--border-glow);
}

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ FAMILY ILLUSTRATION ============ */
.family-illustration {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.family-svg {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(90, 122, 148, 0.15));
}

/* Waving animation */
.wave-arm {
    animation: wave 1.2s ease-in-out infinite;
    transform-origin: bottom center;
}

.dad-arm {
    transform-origin: 65px 210px;
    animation-delay: 0s;
}

.mom-arm {
    transform-origin: 324px 205px;
    animation-delay: 0.3s;
}

.child-arm-left {
    transform-origin: 173px 235px;
    animation-delay: 0.15s;
}

.child-arm-right {
    transform-origin: 227px 235px;
    animation-delay: 0.45s;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

/* Family members gentle bounce */
.family-member {
    animation: family-bounce 3s ease-in-out infinite;
}

.family-member.dad { animation-delay: 0s; }
.family-member.child { animation-delay: 0.5s; }
.family-member.mom { animation-delay: 1s; }

@keyframes family-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Floating hearts */
.floating-hearts .heart {
    animation: heart-float 3s ease-in-out infinite;
    opacity: 0.8;
}

.heart-1 { animation-delay: 0s; }
.heart-2 { animation-delay: 1s; }
.heart-3 { animation-delay: 2s; }

@keyframes heart-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-12px) scale(1.15);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .family-svg {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .family-svg {
        max-width: 260px;
    }
}

/* ============ HERO VISUAL ============ */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.floating-orb {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 8s ease-in-out infinite;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-orb.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(196, 164, 168, 0.3), rgba(232, 204, 204, 0.3));
    animation-delay: -3s;
    animation-duration: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-45%, -55%) scale(1.1); }
    66% { transform: translate(-55%, -45%) scale(0.95); }
}

.preview-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: float-card 6s ease-in-out infinite;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-pills {
    display: flex;
    gap: 0.4rem;
}

.pill {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pill:nth-child(1) { background: #c4a4a8; }
.pill:nth-child(2) { background: #a8b8c4; }
.pill:nth-child(3) { background: #7a9bb8; }

.preview-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.preview-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mini-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.mini-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.mini-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--accent-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.mini-cta:hover { gap: 0.65rem; }

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

.stat-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.85rem;
    transition: var(--transition-medium);
}

.stat-card:hover {
    background: rgba(122, 155, 184, 0.05);
    border-color: rgba(122, 155, 184, 0.2);
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.glow-line {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--gradient-primary);
    filter: blur(1px);
    opacity: 0.5;
}

/* ============ SECTIONS ============ */
.section {
    padding: var(--section-padding) 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title.align-right {
    text-align: right;
}

.gradient-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image-frame {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-placeholder-avatar,
.about-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 3px solid rgba(90, 122, 148, 0.2);
}

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

.about-placeholder-avatar svg {
    width: 100%;
    height: 100%;
}

.about-badge-float {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.highlight-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateX(-4px);
}

.highlight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ============ BENEFITS ============ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-medium);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(122, 155, 184, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--bg-card-hover);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-number {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(90, 122, 148, 0.07);
    line-height: 1;
    pointer-events: none;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(122, 155, 184, 0.1);
    border: 1px solid rgba(122, 155, 184, 0.2);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.benefit-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ PROCESS ============ */
.process-section {
    background: rgba(255, 255, 255, 0.15);
    margin: 0;
    max-width: 100%;
    padding: var(--section-padding) 2rem;
}

.process-section .section-title,
.process-section .section-subtitle {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(90, 122, 148, 0.3);
}

.step-circle span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-connector {
    position: absolute;
    top: 32px;
    left: 50%;
    width: calc(100% + 2.5rem);
    height: 2px;
    background: linear-gradient(to left, var(--border-color), var(--accent-primary), var(--border-color));
    z-index: 1;
}

.process-step:first-child .step-connector { display: none; }

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.testimonial-card.featured {
    border-color: rgba(90, 122, 148, 0.3);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    transform: scale(1.03);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

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

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============ CTA STRIP ============ */
.cta-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(122, 155, 184, 0.1) 0%, rgba(196, 164, 168, 0.1) 100%);
    border: 1px solid rgba(122, 155, 184, 0.2);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: conic-gradient(from 180deg, transparent, var(--accent-primary), transparent 30%);
    animation: rotate-border 4s linear infinite;
    z-index: -1;
}

@keyframes rotate-border {
    100% { transform: rotate(360deg); }
}

.cta-strip-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.cta-strip-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.cta-strip-actions { flex-shrink: 0; }

/* ============ FAQ ============ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(122, 155, 184, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.1rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============ CONTACT / FORM ============ */
#contact {
    position: relative;
}

#lead-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(122, 155, 184, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.form-success {
    margin-top: 1.25rem;
    padding: 1rem;
    background: rgba(122, 155, 184, 0.1);
    border: 1px solid rgba(122, 155, 184, 0.3);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    text-align: center;
    font-size: 0.92rem;
    font-weight: 500;
}

/* ============ FOOTER ============ */
footer {
    border-top: 1px solid var(--border-color);
    background: rgba(232, 204, 204, 0.5);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2.5rem 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 3rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

/* ============ FLOATING BUTTONS ============ */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: wa-pulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.floating-instagram {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: ig-pulse 2s ease-in-out infinite;
}

.floating-instagram:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.5);
}

@keyframes ig-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(220, 39, 67, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(220, 39, 67, 0.6); }
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.benefits-grid .benefit-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-medium), border-color var(--transition-medium), background var(--transition-medium);
}

.benefits-grid .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefits-grid .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefits-grid .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefits-grid .benefit-card:nth-child(4) { transition-delay: 0.4s; }

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

.testimonials-grid .testimonial-card {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition-medium);
}

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }

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

.process-steps .process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-steps .process-step:nth-child(1) { transition-delay: 0.1s; }
.process-steps .process-step:nth-child(2) { transition-delay: 0.25s; }
.process-steps .process-step:nth-child(3) { transition-delay: 0.4s; }

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(122, 155, 184, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(122, 155, 184, 0.6); }

::selection {
    background: rgba(122, 155, 184, 0.3);
    color: var(--text-primary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }
    .hero-subtitle { max-width: 100%; }
    .hero-cta-group { justify-content: center; }
    .hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    .floating-orb { width: 280px; height: 280px; }
    .about-layout { grid-template-columns: 1fr; text-align: center; }
    .section-title.align-right { text-align: center; }
    .about-image-wrapper { order: -1; }
    .about-highlights { align-items: center; }
    .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
    .step-connector { display: none !important; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card.featured { transform: none; }
    .testimonial-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px; }
    header { padding: 0.7rem 1rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 6rem 1rem 3rem; gap: 2rem; }
    .hero-badge { font-size: 0.75rem; }
    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .preview-card { padding: 1rem; }
    .stats-row { grid-template-columns: 1fr; }
    .section { padding: var(--section-padding) 1rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { padding: 1.5rem; }
    .cta-strip {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .cta-strip-actions { width: 100%; }
    .cta-strip-actions .btn-primary { width: 100%; }
    #lead-form { padding: 1.5rem; margin: 0; }
    .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-tagline { margin-right: 0; }
    .floating-whatsapp, .floating-instagram {
        width: 48px;
        height: 48px;
    }
    .floating-whatsapp { bottom: 1.5rem; right: 1.5rem; }
    .floating-instagram { bottom: 1.5rem; left: 1.5rem; }
    .process-section { padding: var(--section-padding) 1rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .stat-value { font-size: 1.4rem; }
    .section-title { font-size: 1.5rem; }
    .about-placeholder-avatar { width: 160px; height: 160px; }
}

/* ============ LOADING SPINNER ============ */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
