
/* ===== MODERN CONTACT PAGE STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:wght@400;500;600;700&display=swap');
:root {--primary:#7c5caa; --primary-light:#a78bce; --primary-dark:#5a3d82; --accent-purple:#f5e6ff; --accent-green:#d4edda; --bg-warm:#fefbf6; --text-dark:#2d2a33; --text-muted:#6b6774; --input-bg:#f8f6fa; --success:#28a745;}
* {margin:0; padding:0; box-sizing:border-box;}
.contact-page {min-height:100vh; background:var(--bg-warm); position:relative; overflow:hidden;}
.contact-page::before {content:''; position:fixed; top:-50%; left:-50%; width:200%; height:200%; background:radial-gradient(ellipse at 30% 20%, rgba(245, 184, 212, 0.25) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(142, 200, 232, 0.2) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(167, 139, 206, 0.2) 0%, transparent 50%); animation:gradientMove 25s ease-in-out infinite; z-index:0;}

@keyframes gradientMove {
0%, 100% {transform:translate(0, 0) rotate(0deg);}
25% {transform:translate(2%, 2%) rotate(1deg);}
50% {transform:translate(-1%, 3%) rotate(-1deg);}
75% {transform:translate(1%, -2%) rotate(0.5deg);}
}

.contact-container {position:relative; z-index:1; max-width:1100px; margin:0 auto; padding:60px 20px 100px; display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:start;}
.contact-info {padding-top:40px;}
.contact-info h1 {font-family:'Playfair Display', serif; font-size:clamp(2.5rem, 5vw, 3.5rem); color:var(--text-dark); margin-bottom:20px; line-height:1.2; animation:fadeInUp 0.8s ease-out forwards; opacity:0; transform:translateY(20px);}

@keyframes fadeInUp {
to {opacity:1; transform:translateY(0);}
}

.contact-info > p {font-family:'DM Sans', sans-serif; font-size:1.1rem; color:var(--text-muted); line-height:1.7; margin-bottom:40px; animation:fadeInUp 0.8s ease-out 0.2s forwards; opacity:0; transform:translateY(20px);}
.contact-methods {display:flex; flex-direction:column; gap:24px; animation:fadeInUp 0.8s ease-out 0.4s forwards; opacity:0; transform:translateY(20px);}
.contact-method {display:flex; align-items:center; gap:16px; padding:20px 24px; background:white; border-radius:16px; box-shadow:0 4px 20px rgba(124, 92, 170, 0.08); transition:all 0.3s ease;}
.contact-method:hover {transform:translateX(8px); box-shadow:0 8px 30px rgba(124, 92, 170, 0.12);}
.contact-method-icon {width:50px; height:50px; border-radius:14px; background:linear-gradient(135deg, var(--accent-purple), #eddeff); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0;}
.contact-method-text h3 {font-family:'DM Sans', sans-serif; font-size:0.85rem; color:var(--text-muted); font-weight:500; margin-bottom:4px;}
.contact-method-text p {font-family:'DM Sans', sans-serif; font-size:1rem; color:var(--text-dark); font-weight:600; margin:0;}
.contact-form-wrapper {background:white; border-radius:32px; padding:50px; box-shadow:0 20px 80px rgba(124, 92, 170, 0.1); animation:slideIn 0.8s ease-out 0.3s forwards; opacity:0; transform:translateY(40px);}

@keyframes slideIn {
to {opacity:1; transform:translateY(0);}
}

.form-header {margin-bottom:30px;}
.form-header h2 {font-family:'Playfair Display', serif; font-size:1.75rem; color:var(--text-dark); margin-bottom:8px;}
.form-header p {font-family:'DM Sans', sans-serif; color:var(--text-muted); font-size:0.95rem;}
.contact-form {display:flex; flex-direction:column; gap:24px;}
.form-group {display:flex; flex-direction:column; gap:8px;}
.form-group label {font-family:'DM Sans', sans-serif; font-size:0.9rem; font-weight:600; color:var(--text-dark);}
.form-group input, .form-group textarea {font-family:'DM Sans', sans-serif; font-size:1rem; padding:16px 20px; background:var(--input-bg); border:2px solid transparent; border-radius:14px; outline:none; transition:all 0.3s ease; color:var(--text-dark);}
.form-group input::placeholder, .form-group textarea::placeholder {color:#a8a3b0;}
.form-group input:focus, .form-group textarea:focus {background:white; border-color:var(--primary-light); box-shadow:0 0 0 4px rgba(167, 139, 206, 0.15);}
.form-group textarea {min-height:140px; resize:vertical;}
.submit-btn {font-family:'DM Sans', sans-serif; font-size:1rem; font-weight:600; padding:18px 32px; background:linear-gradient(135deg, var(--primary), var(--primary-dark)); color:white; border:none; border-radius:14px; cursor:pointer; transition:all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); position:relative; overflow:hidden;}
.submit-btn::before {content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition:left 0.5s ease;}
.submit-btn:hover {transform:translateY(-3px); box-shadow:0 10px 30px rgba(124, 92, 170, 0.3);}
.submit-btn:hover::before {left:100%;}
.submit-btn:active {transform:translateY(-1px);}
.form-disclaimer {font-family:'DM Sans', sans-serif; font-size:0.8rem; color:var(--text-muted); line-height:1.6; margin-top:8px; padding:16px; background:rgba(124, 92, 170, 0.05); border-radius:12px;}
.success-message {display:none; text-align:center; padding:60px 40px;}
.success-message.show {display:block; animation:fadeInUp 0.5s ease-out forwards;}
.success-icon {width:80px; height:80px; background:linear-gradient(135deg, #d4edda, #c3e6cb); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; font-size:40px;}
.success-message h3 {font-family:'Playfair Display', serif; font-size:1.75rem; color:var(--text-dark); margin-bottom:12px;}
.success-message p {font-family:'DM Sans', sans-serif; color:var(--text-muted); font-size:1rem; margin:0;}
.social-section {margin-top:50px; animation:fadeInUp 0.8s ease-out 0.6s forwards; opacity:0; transform:translateY(20px);}
.social-section h3 {font-family:'DM Sans', sans-serif; font-size:0.85rem; color:var(--text-muted); margin-bottom:16px; text-transform:uppercase; letter-spacing:1px;}
.social-links {display:flex; gap:12px;}
.social-link {width:48px; height:48px; background:white; border-radius:14px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 15px rgba(124, 92, 170, 0.1); transition:all 0.3s ease; text-decoration:none;}
.social-link:hover {transform:translateY(-4px); box-shadow:0 8px 25px rgba(124, 92, 170, 0.15);}
.social-link img {width:24px; height:24px;}

@media (max-width: 900px) {
.contact-container {grid-template-columns:1fr; gap:40px; padding:40px 16px 80px;}
.contact-info {padding-top:0; text-align:center;}
.contact-methods {max-width:400px; margin:0 auto;}
.contact-form-wrapper {padding:35px 25px;}
.social-section {text-align:center;}
.social-links {justify-content:center;}
}

#particle-container {display:none;}
body {background:transparent !important;}
.team-page {min-height:100vh; background:var(--bg-warm); position:relative; overflow:hidden;}
.team-page::before {content:''; position:fixed; top:-50%; left:-50%; width:200%; height:200%; background:radial-gradient(ellipse at 20% 20%, rgba(245, 184, 212, 0.25) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(142, 200, 232, 0.2) 0%, transparent 50%), radial-gradient(ellipse at 40% 80%, rgba(125, 211, 168, 0.2) 0%, transparent 50%), radial-gradient(ellipse at 70% 70%, rgba(255, 214, 102, 0.2) 0%, transparent 50%); animation:gradientMove 25s ease-in-out infinite; z-index:0;}

@keyframes gradientMove {
0%, 100% {transform:translate(0, 0) rotate(0deg);}
25% {transform:translate(2%, 2%) rotate(1deg);}
50% {transform:translate(-1%, 3%) rotate(-1deg);}
75% {transform:translate(1%, -2%) rotate(0.5deg);}
}

.team-container {position:relative; z-index:1; max-width:1000px; margin:0 auto; padding:60px 20px 100px;}
.team-header {text-align:center; margin-bottom:80px;}
.team-header h1 {font-family:'Playfair Display', serif; font-size:clamp(2.5rem, 5vw, 3.5rem); color:var(--text-dark); margin-bottom:16px; animation:fadeInUp 0.8s ease-out forwards; opacity:0; transform:translateY(20px);}

@keyframes fadeInUp {
to {opacity:1; transform:translateY(0);}
}

.team-header p {font-family:'DM Sans', sans-serif; font-size:1.15rem; color:var(--text-muted); max-width:600px; margin:0 auto; line-height:1.7; animation:fadeInUp 0.8s ease-out 0.2s forwards; opacity:0; transform:translateY(20px);}
.team-cards {display:flex; flex-direction:column; gap:40px;}
.team-card {background:white; border-radius:32px; padding:50px; display:flex; gap:40px; align-items:flex-start; box-shadow:0 10px 60px rgba(124, 92, 170, 0.08); transition:all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); position:relative; overflow:hidden;}
.team-card::before {content:''; position:absolute; top:0; left:0; right:0; height:6px; transform:scaleX(0); transform-origin:left; transition:transform 0.5s ease;}
.team-card:nth-child(1)::before {background:linear-gradient(90deg, #d4b8e8, #a78bce);}
.team-card:nth-child(2)::before {background:linear-gradient(90deg, #ffd666, #ffb347);}
.team-card:nth-child(3)::before {background:linear-gradient(90deg, #7dd3a8, #4db6ac);}
.team-card:hover {transform:translateY(-8px); box-shadow:0 25px 80px rgba(124, 92, 170, 0.15);}
.team-card:hover::before {transform:scaleX(1);}
.team-card:nth-child(1) {animation:slideIn 0.8s ease-out 0.3s forwards;}
.team-card:nth-child(2) {animation:slideIn 0.8s ease-out 0.5s forwards;}
.team-card:nth-child(3) {animation:slideIn 0.8s ease-out 0.7s forwards;}
.team-card {opacity:0; transform:translateY(40px);}

@keyframes slideIn {
to {opacity:1; transform:translateY(0);}
}

.team-avatar-wrapper {flex-shrink:0;}
.team-avatar {width:160px; height:160px; border-radius:24px; background-size:cover; background-position:center; position:relative; box-shadow:0 15px 40px rgba(0, 0, 0, 0.12); transition:all 0.4s ease;}
.team-card:hover .team-avatar {transform:scale(1.05) rotate(-2deg);}
.team-card:nth-child(1) .team-avatar {background-color:var(--accent-purple);}
.team-card:nth-child(2) .team-avatar {background-color:var(--accent-yellow);}
.team-card:nth-child(3) .team-avatar {background-color:var(--accent-green);}
.team-content {flex:1;}
.team-name {font-family:'Playfair Display', serif; font-size:1.75rem; color:var(--text-dark); margin-bottom:8px; display:flex; align-items:center; gap:12px;}
.team-role {font-family:'DM Sans', sans-serif; font-size:0.9rem; color:var(--primary); font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:20px;}
.team-bio {font-family:'DM Sans', sans-serif; color:var(--text-muted); font-size:1rem; line-height:1.8;}
.team-bio p {margin-bottom:16px;}
.team-bio p:last-child {margin-bottom:0;}
.team-highlight {background:linear-gradient(135deg, rgba(124, 92, 170, 0.08), rgba(167, 139, 206, 0.05)); padding:16px 20px; border-radius:12px; margin-top:20px; border-left:3px solid var(--primary-light);}
.team-highlight p {font-size:0.95rem; font-style:italic; margin:0;}

@media (max-width: 768px) {
.team-container {padding:40px 16px 80px;}
.team-header {margin-bottom:50px;}
.team-card {flex-direction:column; align-items:center; text-align:center; padding:40px 30px;}
.team-avatar {width:140px; height:140px;}
.team-name {justify-content:center;}
.team-highlight {border-left:none; border-top:3px solid var(--primary-light);}
}

.header {background:#fff; padding:10px 20px; box-shadowx:0 2px 4px rgba(0,0,0,.1); position:relative; position:fixed; z-index:10; width:100%;}
.hero-section {min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:60px 20px; background:var(--bg-warm); position:relative; overflow:hidden;}
.hero-section::before {content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:radial-gradient(ellipse at 20% 20%, rgba(245, 184, 212, 0.4) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(142, 200, 232, 0.3) 0%, transparent 50%), radial-gradient(ellipse at 40% 80%, rgba(125, 211, 168, 0.3) 0%, transparent 50%), radial-gradient(ellipse at 70% 70%, rgba(255, 214, 102, 0.3) 0%, transparent 50%); animation:gradientMove 20s ease-in-out infinite; z-index:0;}

@keyframes gradientMove {
0%, 100% {transform:translate(0, 0) rotate(0deg);}
25% {transform:translate(2%, 2%) rotate(1deg);}
50% {transform:translate(-1%, 3%) rotate(-1deg);}
75% {transform:translate(1%, -2%) rotate(0.5deg);}
}

.floating-shapes {position:absolute; width:100%; height:100%; overflow:hidden; z-index:0; pointer-events:none;}
.shape {position:absolute; border-radius:50%; opacity:0.6; animation:float 8s ease-in-out infinite;}
.shape-1 {width:80px; height:80px; background:var(--accent-pink); top:15%; left:10%; animation-delay:0s;}
.shape-2 {width:60px; height:60px; background:var(--accent-yellow); top:25%; right:15%; animation-delay:-2s;}
.shape-3 {width:100px; height:100px; background:var(--accent-green); bottom:20%; left:20%; animation-delay:-4s;}
.shape-4 {width:50px; height:50px; background:var(--accent-blue); bottom:30%; right:10%; animation-delay:-6s;}

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

.hero-content {position:relative; z-index:1; text-align:center; max-width:800px;}
.hero-logo {width:120px; height:120px; border-radius:30px; box-shadow:0 20px 60px rgba(124, 92, 170, 0.3); margin-bottom:30px; animation:logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; opacity:0; transform:scale(0.5) translateY(30px);}

@keyframes logoEntrance {
to {opacity:1; transform:scale(1) translateY(0);}
}

.hero-title {font-family:'Playfair Display', serif; font-size:clamp(2.5rem, 6vw, 4rem); font-weight:600; color:var(--text-dark); margin-bottom:20px; letter-spacing:-0.02em; animation:fadeInUp 0.8s ease-out 0.2s forwards; opacity:0; transform:translateY(20px);}

@keyframes fadeInUp {
to {opacity:1; transform:translateY(0);}
}

.hero-tagline {min-height:100px; display:flex; align-items:center; justify-content:center; margin-bottom:40px; animation:fadeInUp 0.8s ease-out 0.4s forwards; opacity:0; transform:translateY(20px);}
.typewriter-container {font-family:'DM Sans', sans-serif; font-size:clamp(1rem, 2.5vw, 1.25rem); color:var(--text-muted); line-height:1.6; max-width:600px; padding:0 20px;}
#typewriter-text {display:inline;}
.cursor-blink {display:inline-block; width:2px; height:1.2em; background:var(--primary); margin-left:3px; vertical-align:text-bottom; animation:blink 1s step-end infinite;}

@keyframes blink {
50% {opacity:0;}
}

.download-section {animation:fadeInUp 0.8s ease-out 0.6s forwards; opacity:0; transform:translateY(20px);}
.download-buttons-new {display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:30px;}
.download-btn {display:flex; align-items:center; gap:12px; padding:14px 28px; background:var(--text-dark); border-radius:14px; text-decoration:none; color:white; font-family:'DM Sans', sans-serif; font-weight:500; transition:all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow:0 4px 20px rgba(45, 42, 51, 0.2);}
.download-btn:hover {transform:translateY(-4px) scale(1.02); box-shadow:0 12px 40px rgba(45, 42, 51, 0.3);}
.download-btn svg {width:24px; height:24px;}
.download-btn span {display:flex; flex-direction:column; align-items:flex-start; line-height:1.2;}
.download-btn .small-text {font-size:11px; opacity:0.8;}
.download-btn .big-text {font-size:16px; font-weight:600;}
.qr-section {padding:30px 40px; border-radius:24px; box-shadow:0; text-align:center;}
.qr-section img {width:160px; height:160px; border-radius:16px; margin-bottom:16px;}
.qr-section p {font-family:'DM Sans', sans-serif; color:var(--text-muted); font-size:14px; margin:0;}
.features-section {padding:100px 20px; background:white; position:relative;}
.features-section::before {content:''; position:absolute; top:0; left:0; right:0; height:150px; background:linear-gradient(to bottom, var(--bg-warm), white);}
.features-container {max-width:1100px; margin:0 auto; position:relative; z-index:1;}
.features-header {text-align:center; margin-bottom:60px;}
.features-header h2 {font-family:'Playfair Display', serif; font-size:clamp(2rem, 4vw, 2.75rem); color:var(--text-dark); margin-bottom:16px;}
.features-header p {font-family:'DM Sans', sans-serif; color:var(--text-muted); font-size:1.1rem; max-width:500px; margin:0 auto;}
.features-grid {display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:30px;}
.feature-card-new {background:var(--bg-warm); padding:40px 30px; border-radius:24px; text-align:center; transition:all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); position:relative; overflow:hidden;}
.feature-card-new::before {content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--primary-light), var(--primary)); transform:scaleX(0); transition:transform 0.4s ease;}
.feature-card-new:hover {transform:translateY(-8px); box-shadow:0 20px 60px rgba(124, 92, 170, 0.15);}
.feature-card-new:hover::before {transform:scaleX(1);}
.feature-icon {width:80px; height:80px; border-radius:20px; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; font-size:36px;}
.feature-card-new:nth-child(1) .feature-icon {background:linear-gradient(135deg, #f5e6ff, #e8d4ff);}
.feature-card-new:nth-child(2) .feature-icon {background:linear-gradient(135deg, #fff8e1, #ffecb3);}
.feature-card-new:nth-child(3) .feature-icon {background:linear-gradient(135deg, #e8f5e9, #c8e6c9);}
.feature-card-new:nth-child(4) .feature-icon {background:linear-gradient(135deg, #e3f2fd, #bbdefb);}
.feature-card-new h3 {font-family:'Playfair Display', serif; font-size:1.4rem; color:var(--text-dark); margin-bottom:12px;}
.feature-card-new p {font-family:'DM Sans', sans-serif; color:var(--text-muted); font-size:0.95rem; line-height:1.6; margin:0;}

@media (max-width: 768px) {
.download-buttons-new {flex-direction:column; align-items:center;}
.download-btn {width:100%; max-width:280px; justify-content:center;}
.qr-section {display:none;}
.shape {opacity:0.3;}
.features-grid {grid-template-columns:1fr;}
}

@media (min-width: 769px) {
.download-buttons-new {display:none;}
}


/* ===== MODERN FOOTER STYLES ===== */
.modern-footer {
    position: relative;
    z-index: 1;
    padding: 60px 20px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 92, 170, 0.03) 100%);
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 92, 170, 0.2), transparent);
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Logo section */
.footer-brand {
    margin-bottom: 28px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2d2a33;
    margin: 0;
}

/* Social links */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(124, 92, 170, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(124, 92, 170, 0.18);
}

.footer-social-link img {
    width: 22px;
    height: 22px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-social-link:hover img {
    opacity: 1;
}

/* Navigation links */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 28px;
}

.footer-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b6774;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: #7c5caa;
    background: rgba(124, 92, 170, 0.08);
}

/* Disclaimer */
.footer-disclaimer {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #8a8494;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 24px;
}

/* Divider */
.footer-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a78bce, #7c5caa);
    border-radius: 2px;
    margin: 0 auto 24px;
    opacity: 0.6;
}

/* Copyright */
.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #a8a3b0;
}

.footer-copyright strong {
    color: #6b6774;
    font-weight: 600;
}

/* App download badges */
.footer-apps {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #2d2a33;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.footer-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 42, 51, 0.25);
}

.footer-app-btn svg {
    width: 18px;
    height: 18px;
}

.footer-app-btn span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.footer-app-btn .small {
    font-size: 9px;
    opacity: 0.7;
}

.footer-app-btn .big {
    font-size: 12px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .modern-footer {
        padding: 50px 16px 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 4px;
    }
    
    .footer-apps {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-app-btn {
        width: 160px;
        justify-content: center;
    }
}



/* ===== MODERN LEGAL PAGE STYLES ===== */
.legal-page {
    min-height: 100vh;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.legal-page::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(245, 184, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(167, 139, 206, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.legal-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

/* Header */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-purple), #eddeff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    box-shadow: 0 10px 40px rgba(124, 92, 170, 0.15);
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.legal-header p {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Content Card */
.legal-card {
    background: white;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 15px 60px rgba(124, 92, 170, 0.08);
    animation: slideUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Content Typography */
.legal-content {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 36px 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(124, 92, 170, 0.1);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.legal-content li::marker {
    color: var(--primary-light);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Last updated badge */
.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(124, 92, 170, 0.08), rgba(167, 139, 206, 0.05));
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 32px;
    font-size: 0.9rem;
}

.legal-updated span {
    color: var(--primary);
    font-weight: 600;
}

/* Contact box */
.legal-contact {
    background: linear-gradient(135deg, var(--accent-purple), #f5f0ff);
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-contact-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(124, 92, 170, 0.1);
}

.legal-contact p {
    margin: 0;
    font-size: 0.95rem;
}

.legal-contact a {
    color: var(--primary);
    font-weight: 600;
}

/* Back link */
.legal-back {
    text-align: center;
    margin-top: 32px;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

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

.legal-back a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-block;
}

.legal-back a:hover {
    color: var(--primary);
    background: rgba(124, 92, 170, 0.08);
}

/* Hide utility */
.hide { display: none; }

/* Responsive */
@media (max-width: 600px) {
    .legal-container {
        padding: 40px 16px 80px;
    }
    
    .legal-card {
        padding: 30px 24px;
        border-radius: 24px;
    }
    
    .legal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .legal-contact {
        flex-direction: column;
        text-align: center;
    }
}



/* ===== MODERN LEGAL PAGE STYLES ===== */
.legal-page {
    min-height: 100vh;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.legal-page::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(245, 184, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(167, 139, 206, 0.12) 0%, transparent 50%);
    z-index: 0;
}

.legal-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

/* Header */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-purple), #eddeff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    box-shadow: 0 10px 40px rgba(124, 92, 170, 0.15);
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

.legal-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.legal-header p {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Content Card */
.legal-card {
    background: white;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 15px 60px rgba(124, 92, 170, 0.08);
    animation: slideUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* Content Typography */
.legal-content {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 36px 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(124, 92, 170, 0.1);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.legal-content li::marker {
    color: var(--primary-light);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Last updated badge */
.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(124, 92, 170, 0.08), rgba(167, 139, 206, 0.05));
    padding: 12px 20px;
    border-radius: 12px;
    margin-top: 32px;
    font-size: 0.9rem;
}

.legal-updated span {
    color: var(--primary);
    font-weight: 600;
}

/* Contact box */
.legal-contact {
    background: linear-gradient(135deg, var(--accent-purple), #f5f0ff);
    padding: 20px 24px;
    border-radius: 16px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-contact-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(124, 92, 170, 0.1);
}

.legal-contact p {
    margin: 0;
    font-size: 0.95rem;
}

.legal-contact a {
    color: var(--primary);
    font-weight: 600;
}

/* Back link */
.legal-back {
    text-align: center;
    margin-top: 32px;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

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

.legal-back a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: inline-block;
}

.legal-back a:hover {
    color: var(--primary);
    background: rgba(124, 92, 170, 0.08);
}


/* Responsive */
@media (max-width: 600px) {
    .legal-container {
        padding: 40px 16px 80px;
    }
    
    .legal-card {
        padding: 30px 24px;
        border-radius: 24px;
    }
    
    .legal-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .legal-contact {
        flex-direction: column;
        text-align: center;
    }
}


/* ===== MODERN 404 PAGE STYLES ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.error-page::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(245, 184, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(167, 139, 206, 0.15) 0%, transparent 50%);
    animation: gradientMove 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(1%, -2%) rotate(0.5deg); }
}

/* Floating shapes */
.error-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.error-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.error-shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f5b8d4, #f5e6ff);
    top: 15%;
    left: 8%;
}

.error-shape-2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8ec8e8, #bbdefb);
    top: 65%;
    right: 12%;
    animation-delay: -3s;
}

.error-shape-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7dd3a8, #c8e6c9);
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
}

.error-shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd666, #ffecb3);
    top: 25%;
    right: 20%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

.error-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

/* 404 Number */
.error-code {
    font-family: 'Playfair Display', serif;
    font-size: clamp(120px, 25vw, 200px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-30px);
    text-shadow: 0 20px 60px rgba(124, 92, 170, 0.2);
}

@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

/* Icon */
.error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), #eddeff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
    box-shadow: 0 15px 50px rgba(124, 92, 170, 0.2);
    animation: bounce 2s ease-in-out infinite, fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

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

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

/* Text content */
.error-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.error-message {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Buttons */
.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.error-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.error-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 30px rgba(124, 92, 170, 0.3);
}

.error-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(124, 92, 170, 0.4);
}

.error-btn-secondary {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(124, 92, 170, 0.1);
}

.error-btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(124, 92, 170, 0.15);
    color: var(--primary);
}

/* Helpful links */
.error-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 92, 170, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.error-links p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.error-quick-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-quick-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.error-quick-links a:hover {
    background: rgba(124, 92, 170, 0.08);
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 600px) {
    .error-page {
        padding: 30px 16px;
    }
    
    .error-icon {
        width: 70px;
        height: 70px;
        font-size: 34px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .error-shape {
        opacity: 0.2;
    }
    
    .error-quick-links {
        flex-direction: column;
        gap: 8px;
    }
}



:root {--primary:#7c5caa; --primary-light:#a78bce; --primary-dark:#5a3d82; --accent-purple:#f5e6ff; --accent-yellow:#ffd666; --accent-green:#7dd3a8; --accent-pink:#f5b8d4; --accent-blue:#8ec8e8; --bg-warm:#fefbf6; --text-dark:#2d2a33; --text-muted:#6b6774; --input-bg:#f8f6fa;}
section {margin:unset;}
html, body {font-family:'DM Sans', Poppins, sans-serif; margin:0; padding:0; background:#fff !important; color:#1c1c1c; background:transparent !important;}
.hide {display:none;}
a {color:#000;}
.header {background:rgba(255, 255, 255, 0.95); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); padding:12px 24px; position:fixed; top:0; left:0; right:0; z-index:1000; box-shadow:0 2px 20px rgba(124, 92, 170, 0.08); transition:all 0.3s ease;}
.header.scrolled {padding:8px 24px; box-shadow:0 4px 30px rgba(124, 92, 170, 0.12);}
.header-container {display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto;}
.header-logo {display:flex; align-items:center; gap:12px; text-decoration:none; transition:transform 0.3s ease;}
.header-logo:hover {transform:scale(1.02);}
.header-logo img {width:42px; height:42px; border-radius:12px; box-shadow:0 4px 15px rgba(124, 92, 170, 0.2);}
.header-logo-text {font-size:1.25rem; font-weight:600; color:var(--text-dark);}
.header-nav {display:flex; align-items:center; gap:8px;}
.header-nav-link {font-family:'DM Sans', sans-serif; font-size:0.95rem; font-weight:500; color:var(--text-muted); text-decoration:none; padding:10px 18px; border-radius:12px; transition:all 0.25s ease; position:relative;}
.header-nav-link::after {content:''; position:absolute; bottom:6px; left:50%; transform:translateX(-50%); width:0; height:2px; background:linear-gradient(90deg, var(--primary-light), var(--primary)); border-radius:2px; transition:width 0.3s ease;}
.header-nav-link:hover {color:var(--text-dark); background:rgba(124, 92, 170, 0.06);}
.header-nav-link:hover::after {width:20px;}
.header-nav-link.active {color:var(--primary); background:linear-gradient(135deg, rgba(124, 92, 170, 0.1), rgba(167, 139, 206, 0.08));}
.header-nav-link.active::after {width:20px;}
.header-login-btn {font-family:'DM Sans', sans-serif; font-size:0.9rem; font-weight:600; color:white; background:linear-gradient(135deg, var(--primary), var(--primary-dark)); padding:10px 22px; border-radius:12px; text-decoration:none; margin-left:8px; transition:all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); box-shadow:0 4px 15px rgba(124, 92, 170, 0.25);}
.header-login-btn:hover {transform:translateY(-2px); box-shadow:0 8px 25px rgba(124, 92, 170, 0.35);}
.header-menu-btn {display:none; background:none; border:none; cursor:pointer; padding:8px; border-radius:10px; transition:background 0.2s ease;}
.header-menu-btn:hover {background:rgba(124, 92, 170, 0.08);}
.header-menu-btn svg {width:26px; height:26px; color:var(--text-dark);}
.mobile-menu-overlay {display:none; position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0, 0, 0, 0.4); backdrop-filter:blur(4px); z-index:998; opacity:0; transition:opacity 0.3s ease;}
.mobile-menu-overlay.active {display:block; opacity:1;}
.mobile-menu {position:fixed; top:0; right:-300px; width:280px; height:100vh; background:white; z-index:999; padding:24px; box-shadow:-10px 0 40px rgba(0, 0, 0, 0.15); transition:right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); overflow-y:auto;}
.mobile-menu.active {right:0;}
.mobile-menu-header {display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; padding-bottom:20px; border-bottom:1px solid #f0edf5;}
.mobile-menu-logo {display:flex; align-items:center; gap:10px;}
.mobile-menu-logo img {width:36px; height:36px; border-radius:10px;}
.mobile-menu-logo span {font-family:'Playfair Display', serif; font-size:1.1rem; font-weight:600; color:var(--text-dark);}
.mobile-menu-close {background:none; border:none; cursor:pointer; padding:8px; border-radius:10px; transition:background 0.2s ease;}
.mobile-menu-close:hover {background:rgba(124, 92, 170, 0.08);}
.mobile-menu-close svg {width:24px; height:24px; color:var(--text-muted);}
.mobile-menu-nav {display:flex; flex-direction:column; gap:8px;}
.mobile-menu-link {font-family:'DM Sans', sans-serif; font-size:1.05rem; font-weight:500; color:var(--text-dark); text-decoration:none; padding:14px 16px; border-radius:12px; transition:all 0.2s ease; display:flex; align-items:center; gap:12px;}
.mobile-menu-link:hover {background:rgba(124, 92, 170, 0.08); color:var(--primary);}
.mobile-menu-link .icon {font-size:20px;}
.mobile-menu-login {margin-top:24px; padding-top:24px; border-top:1px solid #f0edf5;}
.mobile-menu-login-btn {display:block; font-family:'DM Sans', sans-serif; font-size:1rem; font-weight:600; color:white; background:linear-gradient(135deg, var(--primary), var(--primary-dark)); padding:14px 24px; border-radius:12px; text-decoration:none; text-align:center; box-shadow:0 4px 15px rgba(124, 92, 170, 0.25); transition:all 0.3s ease;}
.mobile-menu-login-btn:hover {transform:translateY(-2px); box-shadow:0 8px 25px rgba(124, 92, 170, 0.35);}
@media (max-width: 768px) {
.header {padding:10px 16px;}
.header-nav {display:none;}
.header-login-btn {display:none;}
.header-menu-btn {display:flex; align-items:center; justify-content:center;}
.header-logo-text {font-size:1.1rem;}
.header-logo img {width:38px; height:38px;}
}
.hero {text-align:center; padding:80px 20px; background:#E2E8F0; background:linear-gradient(135deg, rgba(255,203,239,.8), rgba(205, 225, 255, .8), rgba(204, 255, 240, .8), rgba(255, 244, 204, .8));}
.hero h2 {color:#0f0f0f; font-size:3em; margin-top:10px;}
.hero p {color:#4A5568; font-size:1.1em; margin:10px 0;}
.download-buttons {margin-top:30px;}
.download-buttons a {display:inline-block; margin:10px; border-radius:10px;}
.download-buttons a img {max-width:100%; height:auto; display:block;}
.features {display:flex; justify-content:center; gap:30px; padding:60px 20px;}
.feature-card {background:#fff; padding:20px; border-radius:10px; width:250px; text-align:center;}
@media (max-width: 768px) {
.features {flex-direction:column; align-items:center;}
.feature-card {width:80%; margin:10px 0;}
}
footer {text-align:center; padding:20px 0px; background:transparent;}
.team_box {display:flex; justify-content:center; gap:20px; background:#f9f9f9; border-radius:20px; box-shadow:0 0 10px rgba(0,0,0,.1);}
.avatar {width:100px; height:100px; border-radius:50%; background-size:cover; background-position:center;}
.avatar_lrg {width:140px; height:140px; border-radius:50%; background-size:cover; background-position:center;}
.team_box table td {padding:20px; vertical-align:top;}
.team_box table td h2 {margin-top:0;}
@media (max-width: 768px) {
.avatar_lrg {width:120px; height:120px;}
.team_box {width:100% !important;}
.team_box table td {text-align:center;}
.team_box table td:first-child {display:none;}
.team_box table td h2 {margin-top:20px;}
.mobile_show {display:table !important; margin:0 auto;}
}
:root {--animate-delay:.5s;}
.container {width:83%; max-width:1024px;}
@media (max-width: 768px) {
.container {width:95%;}
.heros {height:100vh;}
}
.text_red {color:#ff0000 !important;}
button.submit {background-color:#00547eff; color:white; font-weight:700;}
.animate__animated.animate__faster {animation-duration:0.35s;}


.modern-footer {position:relative; z-index:1; padding:60px 20px 40px; background:linear-gradient(180deg, transparent 0%, rgba(124, 92, 170, 0.03) 100%);}
.modern-footer::before {content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:80%; max-width:600px; height:1px; background:linear-gradient(90deg, transparent, rgba(124, 92, 170, 0.2), transparent);}
.footer-container {max-width:800px; margin:0 auto; text-align:center;}
.footer-brand {margin-bottom:28px;}
.footer-logo {width:50px; height:50px; border-radius:14px; margin-bottom:12px; opacity:0.9; transition:all 0.3s ease;}
.footer-logo:hover {opacity:1; transform:scale(1.05);}
.footer-brand-name {font-family:'Playfair Display', serif; font-size:1.25rem; color:#2d2a33; margin:0;}
.footer-social {display:flex; justify-content:center; gap:12px; margin-bottom:32px;}
.footer-social-link {width:44px; height:44px; background:white; border-radius:12px; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 12px rgba(124, 92, 170, 0.1); transition:all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); text-decoration:none;}
.footer-social-link:hover {transform:translateY(-4px); box-shadow:0 8px 25px rgba(124, 92, 170, 0.18);}
.footer-social-link img {width:22px; height:22px; opacity:0.85; transition:opacity 0.2s ease;}
.footer-social-link:hover img {opacity:1;}
.footer-nav {display:flex; justify-content:center; flex-wrap:wrap; gap:8px 24px; margin-bottom:28px;}
.footer-nav a {font-family:'DM Sans', sans-serif; font-size:0.9rem; font-weight:500; color:#6b6774; text-decoration:none; padding:6px 12px; border-radius:8px; transition:all 0.2s ease;}
.footer-nav a:hover {color:#7c5caa; background:rgba(124, 92, 170, 0.08);}
.footer-disclaimer {font-family:'DM Sans', sans-serif; font-size:0.85rem; color:#8a8494; line-height:1.7; max-width:550px; margin:0 auto 24px;}
.footer-divider {width:60px; height:3px; background:linear-gradient(90deg, #a78bce, #7c5caa); border-radius:2px; margin:0 auto 24px; opacity:0.6;}
.footer-copyright {font-family:'DM Sans', sans-serif; font-size:0.8rem; color:#a8a3b0;}
.footer-copyright strong {color:#6b6774; font-weight:600;}
.footer-apps {display:flex; justify-content:center; gap:12px; margin-bottom:32px;}
.footer-app-btn {display:flex; align-items:center; gap:8px; padding:10px 16px; background:#2d2a33; border-radius:10px; text-decoration:none; color:white; font-family:'DM Sans', sans-serif; font-size:0.75rem; transition:all 0.3s ease;}
.footer-app-btn:hover {transform:translateY(-2px); box-shadow:0 6px 20px rgba(45, 42, 51, 0.25);}
.footer-app-btn svg {width:18px; height:18px;}
.footer-app-btn span {display:flex; flex-direction:column; align-items:flex-start; line-height:1.2;}
.footer-app-btn .small {font-size:9px; opacity:0.7;}
.footer-app-btn .big {font-size:12px; font-weight:600;}

@media (max-width: 600px) {
.modern-footer {padding:50px 16px 30px;}
.footer-nav {flex-direction:column; gap:4px;}
.footer-apps {flex-direction:column; align-items:center;}
.footer-app-btn {width:160px; justify-content:center;}
}

.cookie-banner {position:fixed; bottom:0; left:0; right:0; z-index:9999; padding:0 20px 20px; pointer-events:none; opacity:0; transform:translateY(100%); transition:all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);}
.cookie-banner.show {opacity:1; transform:translateY(0); pointer-events:auto;}
.cookie-content {max-width:900px; margin:0 auto; background:white; border-radius:20px; padding:24px 28px; display:flex; align-items:center; gap:20px; box-shadow:0 10px 50px rgba(124, 92, 170, 0.2), 0 0 0 1px rgba(124, 92, 170, 0.05);}
.cookie-icon {font-size:36px; flex-shrink:0;}
.cookie-text {flex:1; font-family:'DM Sans', sans-serif;}
.cookie-text p {margin:0; color:#6b6774; font-size:0.9rem; line-height:1.5;}
.cookie-text p:first-child {color:#2d2a33; font-size:1rem; margin-bottom:4px;}
.cookie-text a {color:#7c5caa; text-decoration:none; font-weight:500;}
.cookie-text a:hover {text-decoration:underline;}
.cookie-actions {display:flex; gap:10px; flex-shrink:0;}
.cookie-btn {font-family:'DM Sans', sans-serif; font-size:0.9rem; font-weight:600; padding:12px 24px; border-radius:12px; border:none; cursor:pointer; transition:all 0.3s ease;}
.cookie-btn-accept {background:linear-gradient(135deg, #7c5caa, #5a3d82); color:white; box-shadow:0 4px 15px rgba(124, 92, 170, 0.3);}
.cookie-btn-accept:hover {transform:translateY(-2px); box-shadow:0 8px 25px rgba(124, 92, 170, 0.4);}
.cookie-btn-decline {background:#f5f3f7; color:#6b6774;}
.cookie-btn-decline:hover {background:#ebe8ef; color:#2d2a33;}

@media (max-width: 700px) {
.cookie-banner {padding:0 12px 12px;}
.cookie-content {flex-direction:column; text-align:center; padding:24px 20px; gap:16px;}
.cookie-icon {font-size:32px;}
.cookie-actions {width:100%; flex-direction:column;}
.cookie-btn {width:100%;}
}



/* ===== TESTIMONIALS PAGE STYLES ===== */
.testimonials-page {
    min-height: 100vh;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.testimonials-page::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(245, 184, 212, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(142, 200, 232, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(167, 139, 206, 0.15) 0%, transparent 50%);
    animation: gradientMove 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(1%, -2%) rotate(0.5deg); }
}

/* Floating shapes */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f5b8d4, #f5e6ff);
    top: 10%;
    left: 5%;
}

.shape-2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd666, #ffecb3);
    top: 60%;
    right: 8%;
    animation-delay: -3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7dd3a8, #c8e6c9);
    bottom: 15%;
    left: 10%;
    animation-delay: -5s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8ec8e8, #bbdefb);
    top: 30%;
    right: 15%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* Container */
.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), #eddeff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    box-shadow: 0 15px 50px rgba(124, 92, 170, 0.2);
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

.testimonials-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.testimonials-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Stats bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* Testimonial card */
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(124, 92, 170, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.4s; }
.testimonial-card:nth-child(2) { animation-delay: 0.5s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }
.testimonial-card:nth-child(4) { animation-delay: 0.7s; }
.testimonial-card:nth-child(5) { animation-delay: 0.8s; }
.testimonial-card:nth-child(6) { animation-delay: 0.9s; }

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(124, 92, 170, 0.15);
}

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

/* Quote icon */
.quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 48px;
    opacity: 0.1;
    color: var(--primary);
    display:none;
}

/* Card header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.testimonial-avatar.purple { background: linear-gradient(135deg, #a78bce, #7c5caa); }
.testimonial-avatar.pink { background: linear-gradient(135deg, #f5b8d4, #e091b8); }
.testimonial-avatar.blue { background: linear-gradient(135deg, #8ec8e8, #5ba3c8); }
.testimonial-avatar.green { background: linear-gradient(135deg, #7dd3a8, #4db88a); }
.testimonial-avatar.yellow { background: linear-gradient(135deg, #ffd666, #f5b847); }
.testimonial-avatar.coral { background: linear-gradient(135deg, #f5a08c, #e07b6a); }

.testimonial-info h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    color: #ffd666;
    font-size: 18px;
}

.star.empty {
    color: #e0e0e0;
}

/* Quote text */
.testimonial-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    position: relative;
}

/* Tag */
.testimonial-tag {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(124, 92, 170, 0.1), rgba(167, 139, 206, 0.08));
    border-radius: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

/* Featured testimonial */
.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #7c5caa, #5a3d82);
    color: white;
}

.testimonial-card.featured::before {
    display: none;
}

.testimonial-card.featured .quote-icon {
    color: white;
    opacity: 0.15;
}

.testimonial-card.featured .testimonial-info h3 {
    color: white;
}

.testimonial-card.featured .testimonial-role {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card.featured .testimonial-quote {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.testimonial-card.featured .testimonial-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* CTA Section */
.testimonials-cta {
    text-align: center;
    margin-top: 80px;
    padding: 50px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 15px 60px rgba(124, 92, 170, 0.1);
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.testimonials-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.testimonials-cta p {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 30px rgba(124, 92, 170, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 92, 170, 0.4);
}

.cta-btn-secondary {
    background: var(--bg-warm);
    color: var(--text-dark);
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    background: #f5f0fa;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    .stats-bar {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .testimonials-container {
        padding: 40px 16px 80px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-item {
        flex: 1 1 100px;
    }
    
    .testimonials-cta {
        padding: 35px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .shape {
        opacity: 0.25;
    }
}





/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-warm);
    padding: 100px 20px 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(245, 184, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(142, 200, 232, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(167, 139, 206, 0.2) 0%, transparent 50%);
    animation: gradientMove 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(1%, -2%) rotate(0.5deg); }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f5b8d4, #f5e6ff);
    top: 15%;
    left: 8%;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8ec8e8, #bbdefb);
    top: 60%;
    right: 5%;
    animation-delay: -3s;
}

.hero-shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7dd3a8, #c8e6c9);
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
}

.hero-shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffd666, #ffecb3);
    top: 25%;
    right: 15%;
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(124, 92, 170, 0.1), rgba(167, 139, 206, 0.08));
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 30px rgba(124, 92, 170, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 92, 170, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(124, 92, 170, 0.1);
}

.hero-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 92, 170, 0.15);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(124, 92, 170, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #7c5caa 0%, #5a3d82 50%, #4a3268 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 20px;
}

.phone-content {
    padding: 60px 0px 20px;
    text-align: center;
    color: white;
}

.phone-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.phone-logo img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.phone-app-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.phone-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.phone-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    text-align: left;
}

.phone-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

/* Floating badges around phone */
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 10px 40px rgba(124, 92, 170, 0.15);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: -2s;
}

.floating-badge-3 {
    bottom: 10%;
    right: -10px;
    animation-delay: -4s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.floating-badge .badge-icon.purple { background: linear-gradient(135deg, #f5e6ff, #eddeff); }
.floating-badge .badge-icon.green { background: linear-gradient(135deg, #d4edda, #c3e6cb); }
.floating-badge .badge-icon.blue { background: linear-gradient(135deg, #d1ecf1, #bee5eb); }

.floating-badge .badge-text {
    color: var(--text-dark);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: white;
    position: relative;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(124, 92, 170, 0.1), rgba(167, 139, 206, 0.08));
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-warm);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(124, 92, 170, 0.12);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-icon.purple { background: linear-gradient(135deg, #f5e6ff, #eddeff); }
.feature-icon.pink { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
.feature-icon.blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.feature-icon.green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.feature-icon.yellow { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.feature-icon.coral { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }

.feature-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* How It Works Section */
.how-section {
    padding: 100px 20px;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 50%, rgba(245, 184, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(167, 139, 206, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.how-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.how-step::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
}

.how-step:last-child::after {
    display: none;
}

.step-number {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(124, 92, 170, 0.15);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    z-index: -1;
    opacity: 0.3;
}

.how-step h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.how-step p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Testimonials Preview Section */
.testimonials-section {
    padding: 100px 20px;
    background: white;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-warm);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(124, 92, 170, 0.1);
}

.testimonial-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -5px;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    display:none;
    
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.testimonial-avatar.purple { background: linear-gradient(135deg, #a78bce, #7c5caa); }
.testimonial-avatar.pink { background: linear-gradient(135deg, #f5b8d4, #e091b8); }
.testimonial-avatar.blue { background: linear-gradient(135deg, #8ec8e8, #5ba3c8); }

.testimonial-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-info span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars .star {
    color: #ffd666;
    font-size: 14px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-cta a {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.testimonials-cta a:hover {
    gap: 12px;
}

/* Final CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 40px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-white {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* App Store Badges in CTA */
.app-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.2);
}

.app-badge svg {
    width: 24px;
    height: 24px;
}

.app-badge-text {
    text-align: left;
}

.app-badge-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.app-badge-text span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 490px;
    }
    
    .floating-badge-1 { right: 0; }
    .floating-badge-2 { left: 0; }
    .floating-badge-3 { right: 10px; }
    
    .features-grid,
    .how-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .how-step::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 80px 16px 60px;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 220px;
        height: 450px;
    }
    
    .floating-badge {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .hero-shape {
        opacity: 0.25;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
}

#particle-container { display: none; }
body { background: transparent !important; }

/* Scrolling Tags in Phone - FIXED */
.scroll-tags {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.scroll {
    display: flex;
    width: max-content;
    animation: scroll var(--time) linear infinite;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
    margin-bottom: 10px;
}

.scroll div {
    display: flex;
    flex-shrink: 0;
}

/* Single animation on parent - moves by 50% (one copy) */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll div span {
    display: inline-flex;
    align-items: center;
    margin: 4px 6px;
    padding: 6px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 20px;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

/* Pastel color variations */
.scroll:nth-child(1) div span:nth-child(odd) { background: rgba(245, 184, 212, 0.83); color: #000000; }
.scroll:nth-child(1) div span:nth-child(even) { background: rgba(255, 214, 102, 0.874); color: #000000; }

.scroll:nth-child(2) div span:nth-child(odd) { background: rgba(142, 200, 232, 0.83); color:#000000; }
.scroll:nth-child(2) div span:nth-child(even) { background: rgba(125, 211, 168, 0.83); color: #000000; }

.scroll:nth-child(3) div span:nth-child(odd) { background: rgba(255, 255, 255, 0.82); color: #000000; }
.scroll:nth-child(3) div span:nth-child(even) { background: rgba(167, 139, 206, 0.83); color: #000000; }

.scroll:nth-child(4) div span:nth-child(odd) { background: rgba(245, 230, 255, 0.85); color: #000000; }
.scroll:nth-child(4) div span:nth-child(even) { background: rgba(255, 204, 188, 0.83); color: #000000;}

.scroll div span:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.35) !important;
}