/* Palette: Evolution Gradient (Orange -> Purple), White, Soft Grey */
:root {
    --grad-start: #FF9966;
    --grad-end: #FF5E62;
    --grad-full: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%);
    --white: #FFFFFF;
    --grey-light: #F9FAFB;
    --text: #2D3748;
    --text-light: #718096;
    --glass: rgba(255, 255, 255, 0.7);
    
    --font-main: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--grey-light);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Animated Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: move 20s infinite alternate;
}
.b1 { width: 600px; height: 600px; background: #FF9966; top: -200px; left: -200px; }
.b2 { width: 500px; height: 500px; background: #FF5E62; bottom: -100px; right: -100px; animation-delay: -10s; }

@keyframes move { from { transform: translate(0, 0) scale(1); } to { transform: translate(50px, 50px) scale(1.1); } }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.evo-header { padding: 20px 0; background: rgba(255,255,255,0.8); backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.gradient-text { background: var(--grad-full); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.evo-nav a { margin-left: 30px; font-weight: 500; color: var(--text-light); }
.evo-nav a:hover, .evo-nav a.active { color: #FF5E62; }

.btn-gradient { background: var(--grad-full); color: var(--white); padding: 12px 30px; border-radius: 50px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; display: inline-block; box-shadow: 0 10px 20px rgba(255, 94, 98, 0.3); }
.btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 94, 98, 0.4); }
.btn-gradient.small { padding: 8px 20px; font-size: 0.9rem; margin-left: 30px; }

.btn-glass { background: rgba(255,255,255,0.5); border: 1px solid var(--white); color: var(--text); padding: 12px 30px; border-radius: 50px; font-weight: 600; backdrop-filter: blur(5px); }
.btn-glass:hover { background: var(--white); }

.mobile-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.mobile-burger span { width: 25px; height: 3px; background: var(--text); border-radius: 2px; }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.3s; }
.mobile-menu.active { opacity: 1; pointer-events: all; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; }
.mobile-menu a { font-size: 2rem; margin: 15px 0; font-weight: 700; color: var(--text); }

@media (max-width: 900px) {
    .evo-nav, .btn-gradient.small { display: none; }
    .mobile-burger { display: flex; }
}

/* Hero */
.hero-evo { min-height: 80vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }

.pill { background: rgba(255, 94, 98, 0.1); color: #FF5E62; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; display: inline-block; margin-bottom: 20px; }
.hero-text h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 25px; color: var(--text); }
.hero-text p { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; max-width: 500px; }

.btn-row { display: flex; gap: 20px; }

.hero-visual { position: relative; height: 400px; }
.glass-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.8); padding: 30px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); position: absolute; }
.glass-card .icon { font-size: 2.5rem; margin-bottom: 10px; }
.glass-card h3 { font-size: 1.2rem; margin-bottom: 5px; }
.glass-card.main { top: 20%; left: 10%; width: 250px; }
.glass-card.float { bottom: 10%; right: 10%; width: 200px; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Services */
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.evo-card { background: var(--white); padding: 40px; border-radius: 20px; transition: 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.evo-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(255, 94, 98, 0.15); }
.card-icon { font-size: 3rem; margin-bottom: 20px; background: var(--grad-full); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.evo-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.evo-card p { color: var(--text-light); }

/* Quote */
.quote-wrap { text-align: center; padding: 80px 0; background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.8)); margin-top: 50px; border-radius: 20px; }
.quote-wrap blockquote { font-size: 2rem; font-weight: 300; font-style: italic; color: var(--text); max-width: 800px; margin: 0 auto 20px; }
.quote-wrap cite { color: #FF5E62; font-weight: 600; }

/* Method */
.method-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gradient-line { width: 80px; height: 6px; background: var(--grad-full); margin-bottom: 30px; border-radius: 3px; }
.steps { margin-top: 40px; display: grid; gap: 30px; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.num { font-size: 2rem; font-weight: 700; color: #FF9966; opacity: 0.5; line-height: 1; }
.method-visual { display: flex; justify-content: center; }
.circle-graph { position: relative; width: 300px; height: 300px; }
.circle { position: absolute; border-radius: 50%; border: 2px solid rgba(255, 94, 98, 0.3); }
.c1 { width: 100%; height: 100%; animation: pulse 4s infinite; }
.c2 { width: 70%; height: 70%; top: 15%; left: 15%; border-color: #FF5E62; }
.c3 { width: 40%; height: 40%; top: 30%; left: 30%; background: var(--grad-full); box-shadow: 0 0 30px rgba(255, 94, 98, 0.5); }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* Services List */
.services-list { max-width: 800px; margin: 0 auto; display: grid; gap: 30px; }
.service-row { background: var(--white); padding: 30px; border-radius: 16px; display: flex; align-items: center; gap: 30px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.service-row:hover { transform: scale(1.02); }
.s-icon { font-size: 2.5rem; }
.s-content h3 { font-size: 1.2rem; margin-bottom: 5px; }
.s-content p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.btn-text { margin-left: auto; font-weight: 600; color: #FF5E62; white-space: nowrap; }

/* Contact */
.contact-glass { max-width: 900px; margin: 0 auto; background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); padding: 60px; border-radius: 30px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
.c-left h2 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
.c-mail { margin-top: 30px; font-weight: 600; color: #FF5E62; }

.soft-form .input-grp { margin-bottom: 20px; }
.soft-form label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.soft-form input, .soft-form select, .soft-form textarea { width: 100%; padding: 12px; border: 1px solid #eee; border-radius: 10px; background: var(--white); font-family: var(--font-main); transition: 0.3s; }
.soft-form input:focus, .soft-form select:focus, .soft-form textarea:focus { border-color: #FF9966; box-shadow: 0 0 0 4px rgba(255, 153, 102, 0.1); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-box { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 20px; }

/* Footer */
.evo-footer { margin-top: 100px; padding: 60px 0 20px; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-weight: 700; font-size: 1.2rem; }
.f-links a { margin-left: 30px; color: var(--text-light); }
.f-links a:hover { color: #FF5E62; }
.copyright { text-align: center; font-size: 0.8rem; color: #ccc; }

@media (max-width: 900px) {
    .hero-grid, .method-split, .contact-glass { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 3rem; }
    .btn-row { justify-content: center; }
    .grid-3 { grid-template-columns: 1fr; }
    .hero-visual { height: 300px; }
    .glass-card.main { left: 50%; transform: translateX(-50%); }
    .glass-card.float { right: 50%; transform: translateX(50%); }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .service-row { flex-direction: column; text-align: center; }
    .btn-text { margin-left: 0; }
}