:root {
    --bg-main: #F5F5F5; --text-dark: #303841; --text-light: #fff;
    --primary: #292C7B; --primary-light: #C4E2F5; --accent: #BBD5DA;
    --yellow: #F9D03F; --pink: #E6A2A2; --red: #D32F2F; --teal: #3BACB6;
    --font-head: 'Playfair Display', serif; --font-ui: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-main); color: var(--text-dark); font-family: var(--font-ui); overflow-x: hidden; }

/* --- HEADER --- */
#masthead {
    position: fixed; top: 25px; left: 50%; transform: translateX(-50%);
    width: 92%; max-width: 1400px; z-index: 1000;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border-radius: 100px; padding: 15px 40px;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
#masthead.scrolled {
    top: 10px; padding: 8px 35px; width: 94%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.8);
    transform: translateX(-50%) translateY(5px);
    box-shadow: 0 15px 50px rgba(41,44,123,0.05);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; position: relative; }
.nav-group { display: flex; gap: 35px; align-items: center; flex: 1; }
.nav-group.right { justify-content: flex-end; }
.nav-group a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-group a:hover { color: var(--primary); }
.logo-wrapper { 
    position: absolute; left: 50%; transform: translateX(-50%); 
    display: flex; align-items: center; justify-content: center; 
    flex-shrink: 0; 
}
.site-logo { 
    height: 45px; 
    width: auto; 
    min-width: 100px; 
    display: block;
}
.cta-pill { background: var(--primary); color: #fff !important; padding: 10px 25px; border-radius: 40px; transition: 0.3s; }
.cta-pill:hover { transform: scale(1.05); background: #1f2260; }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }

/* --- SECTION 1: HERO --- */
#hero-welcome { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; background: #111; overflow: hidden; color: #fff; }
.mesh-gradient-bg { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 0% 50%, rgba(41,44,123,0.8) 0%, transparent 50%), radial-gradient(circle at 100% 50%, rgba(59, 172, 182, 0.8) 0%, transparent 50%); background-color: #0a0a0a; }
.arch-geometric-overlay { position: absolute; inset: 0; z-index: 2; background-image: repeating-linear-gradient(45deg, transparent, transparent 49px, rgba(255,255,255,0.03) 49px, rgba(255,255,255,0.03) 50px); }
.hero-center-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 0 20px; }
.welcome-title { font-family: var(--font-head); font-size: 6rem; font-weight: 400; letter-spacing: 2px; margin-bottom: 20px; }
.welcome-sub { font-size: 1.2rem; color: #ddd; margin-bottom: 40px; line-height: 1.8; max-width: 700px; margin-left: auto; margin-right: auto; }
.highlight-word { color: #F9D03F; font-weight: 700; position: relative; display: inline-block; min-width: 140px; text-align: center; }
.cursor-blink { color: #F9D03F; animation: blink 0.8s step-end infinite; margin-left: 2px; font-weight: bold; }
@keyframes blink { 50% { opacity: 0; } }
.hero-search { display: flex; background: rgba(255,255,255,0.1); padding: 10px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); max-width: 500px; margin: 0 auto 30px; }
.hero-search input { flex: 1; background: transparent; border: none; color: #fff; padding: 10px 20px; outline: none; }
.hero-search input::placeholder { color: #aaa; }
.hero-search button { background: #fff; color: #111; border: none; padding: 10px 25px; border-radius: 40px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.hero-search button:hover { background: var(--primary); color: #fff; }
.learn-more-btn { text-decoration: none; color: #fff; border-bottom: 1px solid #fff; padding-bottom: 2px; font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s; }

/* --- SEAMLESS GRADIENT JOINTS --- */
.section-pad { padding: 100px 10%; position: relative; z-index: 1; }
#numbers-section { background: #fff; }
#why-choose-ref { background: linear-gradient(to bottom, #fff 0%, #F8F6F0 100%); }
#process-timeline { background: linear-gradient(to bottom, #F8F6F0 0%, #FAFAFA 100%); }
#thriving-workplace { background: linear-gradient(to bottom, #FAFAFA 0%, #fff 100%); }
#how-app-works { background: linear-gradient(to bottom, #fff 0%, #FAFAFA 100%); }
#infinite-testimonials { background: #fff; }
#office-culture { background: #FAFAFA; }
#instagram-feed { background: #FAFAFA; }
#faq-section { background: linear-gradient(to bottom, #FAFAFA 0%, #fff 100%); }

/* --- SECTION 2: NUMBERS --- */
#numbers-section { padding: 120px 10%; position: relative; overflow: hidden; }
.section-top-text { text-align: center; margin-bottom: 60px; }
.pre-badge { background: #f0f0f0; color: #777; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
.section-top-text h2 { font-family: var(--font-head); font-size: 3rem; color: #303841; }
.numbers-grid-container { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; pointer-events: none; z-index: 0; }
.blob-blue { width: 300px; height: 300px; background: var(--primary); top: -20%; left: 10%; }
.blob-teal { width: 400px; height: 400px; background: var(--teal); bottom: 10%; right: 0%; }
.blob-yellow { width: 200px; height: 200px; background: var(--yellow); top: 50%; left: 30%; }
.blob-pink { width: 250px; height: 250px; background: var(--pink); bottom: -10%; left: 20%; }
.num-card { background: #fff; border-radius: 30px; padding: 40px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.03); position: relative; z-index: 2; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.num-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 60px rgba(41,44,123,0.08); }
.center-piece { transform: scale(1.05); border: 1px solid #eee; z-index: 3; }
.center-piece:hover { transform: scale(1.05) translateY(-8px); }
.num-blob { display: inline-block; padding: 15px 25px; border-radius: 60px 60px 60px 20px; color: #fff; font-family: var(--font-head); font-size: 2rem; font-weight: 700; margin-bottom: 20px; transition: 0.3s; }
.num-card:hover .num-blob { transform: scale(1.05); }
.teal-shape { background: #3BACB6; } .cyan-shape { background: #00C9A7; } .pink-shape { background: #E6A2A2; } .yellow-shape { background: #F9D03F; }
.num-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.num-card p { font-size: 0.9rem; color: #777; line-height: 1.5; }

/* --- SECTION 3: WHY CHOOSE --- */
#why-choose-ref { padding: 100px 10%; }
.ref-layout { display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.ref-text-side { width: 55%; text-align: left; padding: 20px 0; }
.ref-text-side h2 { font-family: var(--font-head); font-size: 4rem; font-weight: 700; line-height: 1.2; color: #303841; margin-bottom: 20px; }
.ref-desc { color: #666; font-size: 1.1rem; max-width: 500px; line-height: 1.6; margin-bottom: 30px; }
.ref-buttons { display: flex; gap: 20px; align-items: center; }
.ref-premium-btn { background: linear-gradient(135deg, #292C7B, #3BACB6); color: #fff; padding: 16px 40px; border-radius: 60px; text-decoration: none; font-weight: 700; font-size: 1.05rem; display: inline-block; box-shadow: 0 10px 30px rgba(41,44,123,0.25); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.ref-premium-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 40px rgba(41,44,123,0.35); }
.btn-secondary { background: transparent; color: #303841; border: 2px solid #ddd; padding: 15px 35px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; }
.btn-secondary:hover { background: #303841; color: #fff; border-color: #303841; }
.ref-visual-side { width: 40%; display: flex; justify-content: flex-end; }
.ref-image-wrapper { width: 100%; max-width: 600px; border-radius: 10px; overflow: hidden; }
.ref-image-wrapper img { width: 100%; height: auto; display: block; }

/* --- SECTION 4: PROCESS --- */
#process-timeline { 
    padding: 120px 10%; 
    background: linear-gradient(to bottom, #F8F6F0 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}
.process-container { display: flex; gap: 60px; align-items: center; position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.process-text-left { width: 35%; }
.pre-title { 
    color: #E65F51; font-weight: 700; text-transform: uppercase; 
    font-size: 0.8rem; letter-spacing: 2px; display: block; margin-bottom: 15px; 
    background: rgba(230, 95, 81, 0.1); padding: 6px 14px; border-radius: 20px; width: fit-content;
}
.process-text-left h2 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 25px; color: #303841; line-height: 1.2; }
.process-text-left p { color: #666; line-height: 1.7; margin-bottom: 30px; font-size: 1.05rem; }
.premium-btn { background: linear-gradient(135deg, #292C7B, #3BACB6); color: #fff; padding: 16px 40px; border-radius: 60px; border: none; font-weight: 700; font-size: 1.1rem; cursor: pointer; box-shadow: 0 15px 35px rgba(41,44,123,0.25); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.premium-btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 25px 50px rgba(41,44,123,0.3); }

.process-path-right { width: 65%; position: relative; height: 550px; }

/* Layering Fix: SVG (Line/Dots) is z-index 2, Cards are z-index 3, Numbers are z-index 0 */
.svg-curve { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; }
.wavy-line { animation: drawLine 2.5s ease-in-out forwards; }
@keyframes drawLine { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } }

.bg-num { 
    position: absolute; font-family: var(--font-head); font-size: 15rem; font-weight: 700; 
    color: #f0f0f0; z-index: 0; pointer-events: none; 
}
.num1 { top: 10%; left: 20%; } 
.num2 { top: 30%; left: 45%; } 
.num3 { top: 10%; right: 10%; }

.point-label { 
    position: absolute; z-index: 3; background: #fff; padding: 22px; 
    border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    max-width: 220px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
    border: 1px solid #f0f0f0;
    cursor: pointer;
}
.point-label:hover { 
    transform: translateY(-8px) scale(1.05) !important; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border-color: var(--primary);
}
.point-label h4 { font-size: 1.05rem; margin-bottom: 8px; color: #303841; font-family: var(--font-head); } 
.point-label p { font-size: 0.85rem; color: #777; line-height: 1.5; }

/* Restoring Original Exact Positions */
.p1 { top: 80%; left: 5%; } 
.p2 { top: 45%; left: 45%; } 
.p3 { top: 15%; right: 5%; }

.dot { animation: pulseDot 2s infinite; transform-origin: center; transform-box: fill-box; }
@keyframes pulseDot { 
    0% { r: 12px; opacity: 0.8; } 
    50% { r: 18px; opacity: 1; } 
    100% { r: 12px; opacity: 0.8; } 
}

/* Responsive */
@media (max-width: 1024px) {
    .process-container { flex-direction: column; }
    .process-text-left, .process-path-right { width: 100%; text-align: center; }
    .pre-title { margin-left: auto; margin-right: auto; }
    .process-path-right { height: 600px; margin-top: 40px; }
    .bg-num { font-size: 10rem; }
    .point-label { max-width: 180px; }
    .p1 { top: 80%; left: 10%; }
    .p2 { top: 50%; left: 40%; }
    .p3 { top: 20%; right: 10%; }
}
@media (max-width: 600px) {
    #process-timeline { padding: 80px 5%; }
    .process-text-left h2 { font-size: 2.2rem; }
    .process-path-right { height: 500px; }
    .bg-num { font-size: 6rem; }
    .point-label { max-width: 140px; padding: 15px; }
    .point-label h4 { font-size: 0.9rem; margin-bottom: 4px; }
    .point-label p { font-size: 0.75rem; }
    .p1 { top: 80%; left: 5%; }
    .p2 { top: 45%; left: 30%; }
    .p3 { top: 5%; right: 5%; }
    .premium-btn { width: 100%; padding: 14px 20px; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; }
}

/* --- SECTION 5: CULTURE --- */
#thriving-workplace { padding: 100px 10%; position: relative; overflow: hidden; }
#circle-bg-animations { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: hidden; }
.circle-line { position: absolute; border-radius: 50%; border: 1px solid var(--primary); opacity: 0.07; animation: expandCircle 8s infinite alternate ease-in-out; }
.c1 { width: 300px; height: 300px; top: -10%; left: 10%; } 
.c2 { width: 500px; height: 500px; top: 40%; right: -10%; animation-delay: 1s; }
.c3 { width: 200px; height: 200px; bottom: 0%; right: 30%; animation-delay: 2s; }
.c4 { width: 400px; height: 400px; top: 10%; right: 10%; animation-delay: 0.5s; }
@keyframes expandCircle { 0% { transform: scale(0.8); opacity: 0.07; } 100% { transform: scale(1.5); opacity: 0.02; } }
.culture-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 1; }
.culture-header h2 { font-family: var(--font-head); font-size: 3rem; color: #2C3947; }
.culture-wrapper { position: relative; min-height: 900px; display: flex; justify-content: center; align-items: center; overflow: hidden; z-index: 1; }
.bg-circle-gradient { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: linear-gradient(135deg, #EEEEEE 0%, #fff 100%); box-shadow: inset 0 0 50px rgba(0,0,0,0.02); z-index: 0; }
.culture-img { position: absolute; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 1; }
.culture-img img { width: 100%; height: 100%; object-fit: cover; }
.culture-img.img-1 { width: 350px; height: 250px; top: 20%; left: 20%; }
.culture-img.img-2 { width: 400px; height: 280px; bottom: 20%; right: 20%; }
.floating-text-card { position: absolute; z-index: 2; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 30px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); max-width: 350px; }
.floating-text-card h4 { font-size: 1.2rem; margin-bottom: 10px; } .floating-text-card p { font-size: 0.9rem; color: #555; }
.card-left { top: 50%; left: 5%; transform: translateY(-50%); }
.card-right { top: 50%; right: 5%; transform: translateY(-50%); }
.extra-content-block { position: absolute; z-index: 1; background: #fff; padding: 20px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); max-width: 250px; border: 1px solid #eee; }
.extra-content-block h4 { font-size: 1rem; margin-bottom: 5px; color: var(--primary); }
.extra-content-block p { font-size: 0.8rem; color: #666; }
.extra-left { top: 15%; right: 15%; }
.extra-right { bottom: 15%; left: 15%; }

/* --- SECTION 6: HOW IT WORKS --- */
#how-app-works { padding: 100px 10%; }
.app-layout { display: flex; justify-content: space-between; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; }
.app-text-side { width: 45%; display: flex; flex-direction: column; align-items: flex-start; }
.app-label { font-size: 0.9rem; font-weight: 700; letter-spacing: 3px; color: #292C7B; text-transform: uppercase; display: block; margin-bottom: 10px; }
.app-text-side h3 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.app-number-line { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; width: 100%; }
.big-num { font-family: var(--font-head); font-size: 6rem; font-weight: 700; color: #292C7B; line-height: 1; }
.app-line { flex: 1; height: 2px; background: #ddd; }
.app-desc { color: #666; font-size: 1.1rem; line-height: 1.6; max-width: 400px; text-align: left; }
.app-phone-side { width: 50%; display: flex; justify-content: flex-end; position: relative; }
.phone-glow-bg { position: absolute; top: -80px; left: -80px; right: -80px; bottom: -80px; background: linear-gradient(135deg, #dbeafe, #c4e2f5, #bae6fd, #292C7B); background-size: 400% 400%; animation: gradientMove 8s ease infinite; border-radius: 50%; filter: blur(70px); opacity: 0.4; z-index: -1; pointer-events: none; }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.phone-mockup { width: 320px; height: 600px; background: #fff; border-radius: 40px; box-shadow: 0 30px 80px rgba(0,0,0,0.1); border: 8px solid #eee; position: relative; padding: 10px; display: flex; flex-direction: column; }
.phone-screen { flex: 1; background: #F5F5F5; border-radius: 30px; overflow: hidden; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.phone-top-bar { width: 100%; display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 600; color: #333; margin-bottom: 20px; }
.phone-content { text-align: center; }
.search-label { font-size: 0.7rem; font-weight: 600; color: #292C7B; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.phone-content h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; }
.phone-line { height: 8px; background: #ddd; border-radius: 10px; margin: 10px auto; width: 80%; }
.phone-button { background: #292C7B; color: #fff; padding: 15px 30px; border-radius: 40px; margin-top: 20px; font-weight: 600; }

/* --- SECTION 7: INFINITE TESTIMONIALS --- */
#infinite-testimonials { padding: 100px 10%; overflow: hidden; position: relative; background: #fff; }
.testi-header { margin-bottom: 40px; text-align: center; }
.center-title { font-family: var(--font-head); font-size: 3rem; color: #303841; }

.testi-track-wrapper { position: relative; width: 100%; height: auto; padding: 40px 0; display: flex; flex-direction: column; gap: 40px; overflow: hidden; }
.testi-row { display: flex; gap: 30px; width: max-content; will-change: transform; padding: 0 20px; }
.row-left { animation: slideLeft 40s linear infinite; }
.row-right { animation: slideRight 40s linear infinite; }

.testi-row:hover { animation-play-state: paused; }

.testi-card { 
    width: 400px; min-height: 220px; background: #fff; padding: 30px; border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.03); border: 1px solid #eee; display: flex; flex-direction: column; justify-content: space-between;
    transition: transform 0.3s;
}
.testi-card:hover { transform: scale(1.02); border-color: var(--primary); box-shadow: 0 15px 50px rgba(41,44,123,0.06); }

.testi-card .quote { font-size: 1rem; font-weight: 400; color: #555; line-height: 1.6; margin-bottom: 15px; font-style: italic; }
.testi-card .author-info { border-top: 1px solid #eee; padding-top: 15px; }
.testi-card .author-info h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.testi-card .author-info span { display: block; font-size: 0.85rem; color: #888; }
.testi-card .author-info .location { color: #aaa; font-size: 0.75rem; margin-top: 2px; }

@keyframes slideLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes slideRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Edge Fades */
.testi-fade { position: absolute; top: 0; width: 200px; height: 100%; z-index: 10; pointer-events: none; }
.fade-left { left: 0; background: linear-gradient(90deg, #fff 0%, transparent 100%); }
.fade-right { right: 0; background: linear-gradient(270deg, #fff 0%, transparent 100%); }

/* --- SECTION 8: OFFICE CULTURE --- */
.culture-section-wrapper { position: relative; overflow-x: hidden; padding: 0; background: #FAFAFA; width: 100%; }
.culture-video-bg { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100%; z-index: 1; background: linear-gradient(135deg, #dbeafe, #ffffff, #e0f2fe, #bae6fd); background-size: 400% 400%; animation: gradientMove 10s ease infinite; opacity: 0.35; pointer-events: none; overflow: hidden; }
.culture-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, minmax(250px, 1fr)); gap: 0; max-width: 1400px; margin: 0 auto; background: transparent; }
.grid-cell { position: relative; border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9); background-clip: padding-box; overflow: hidden; background: transparent; min-height: 250px; }
.grid-cell.cell-empty { background: #f0f4f8; transition: background-color 0.4s ease; cursor: pointer; position: relative; }
.grid-cell.cell-empty .grid-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease-in-out; pointer-events: none; }
.grid-cell.cell-empty .grid-img.loaded { opacity: 1; }
.grid-cell.cell-empty .bg-info-div { position: absolute; inset: 0; width: 100%; height: 100%; padding: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.6s ease-in-out; z-index: 2; pointer-events: none; border-radius: 0; box-sizing: border-box; }
.grid-cell.cell-empty .bg-info-div.active { opacity: 1; }
.grid-cell.cell-empty .bg-info-div h4 { font-family: var(--font-head); font-size: 1.2rem; color: #292C7B; margin-bottom: 8px; }
.grid-cell.cell-empty .bg-info-div p { font-size: 0.85rem; color: #555; line-height: 1.4; max-width: 90%; margin: 0; }

.cell-hero { grid-column: 1 / 3; grid-row: 1 / 2; background: rgba(245, 245, 245, 0.95); backdrop-filter: blur(5px); padding: 40px; display: flex; align-items: center; z-index: 3; }
.cell-card-1 { grid-column: 3 / 4; grid-row: 2 / 3; background: #fff; padding: 30px; display: flex; align-items: center; }
.cell-card-2 { grid-column: 4 / 5; grid-row: 2 / 3; background: #fff; padding: 30px; display: flex; align-items: center; }
.cell-card-3 { grid-column: 3 / 4; grid-row: 3 / 4; background: #fff; padding: 30px; display: flex; align-items: center; }
.cell-card-4 { grid-column: 1 / 3; grid-row: 4 / 5; background: #fff; padding: 30px; display: flex; align-items: center; }

.grid-cell:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 2; }
.grid-cell:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 2; }
.grid-cell:nth-child(4) { grid-column: 1 / 2; grid-row: 2 / 3; }
.grid-cell:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
.grid-cell:nth-child(8) { grid-column: 1 / 2; grid-row: 3 / 4; }
.grid-cell:nth-child(9) { grid-column: 2 / 3; grid-row: 3 / 4; }
.grid-cell:nth-child(11) { grid-column: 4 / 5; grid-row: 3 / 4; }
.grid-cell:nth-child(13) { grid-column: 3 / 4; grid-row: 4 / 5; }
.grid-cell:nth-child(14) { grid-column: 4 / 5; grid-row: 4 / 5; }

.cell-content h2 { font-family: var(--font-head); font-size: 2.8rem; line-height: 1.1; color: #303841; margin-bottom: 15px; }
.cell-content h3 { font-family: var(--font-head); font-size: 1.5rem; color: #292C7B; margin-bottom: 10px; }
.cell-content p { font-size: 0.95rem; color: #666; line-height: 1.6; max-width: 90%; }
.cell-hero .cell-content p { font-size: 1.05rem; max-width: 80%; }

/* --- SECTION 9: INSTAGRAM FEED --- */
#instagram-feed { padding: 100px 10%; }
.insta-wrapper { max-width: 1100px; margin: 0 auto; text-align: center; }
.insta-header { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 40px; }
.insta-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: #303841; }
.insta-logo { color: var(--primary); }
.insta-safe-container { max-width: 900px; margin: 0 auto; padding: 15px; border: 1px solid #e0e0e0; border-radius: 24px; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.03); overflow: hidden; }
.insta-safe-container iframe { width: 100%; height: 500px; display: block; border: none; border-radius: 16px; }
.insta-btn { display: inline-block; margin-top: 30px; background: var(--primary); color: #fff; padding: 15px 40px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.insta-btn:hover { background: var(--teal); transform: translateY(-3px); }

/* --- SECTION 10: FAQ --- */
#faq-section { padding: 100px 10%; }
.faq-wrapper { max-width: 1100px; margin: 0 auto; text-align: center; }
.faq-top h2 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 10px; }
.faq-top p { color: #666; margin-bottom: 30px; }
.faq-search { display: flex; max-width: 500px; margin: 0 auto 30px; background: #f9f9f9; border-radius: 40px; padding: 5px; border: 1px solid #eee; }
.faq-search input { flex: 1; border: none; background: transparent; padding: 15px 20px; outline: none; }
.faq-search button { background: var(--primary); color: #fff; border: none; padding: 10px 25px; border-radius: 40px; cursor: pointer; font-weight: 600; }
.category-pills { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.category-pills button { border: none; padding: 12px 25px; border-radius: 40px; background: #f0f0f0; color: #777; cursor: pointer; transition: 0.3s; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.category-pills button:hover, .category-pills button.active { background: var(--primary); color: #fff; }
.faq-list-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; cursor: pointer; }
.faq-question { font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; }
.faq-toggle { font-size: 1.5rem; color: #999; transition: 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding-top: 0; color: #666; line-height: 1.6; }
.faq-item.active .faq-answer { max-height: 200px; padding-top: 20px; }

/* --- SECTION 11: CTA --- */
.full-screen-dark { min-height: 80vh; background: #1a1a1a; color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 100px 20px; }
.full-screen-dark h2 { font-family: var(--font-head); font-size: 5rem; margin-bottom: 40px; }
.btn-white { background: #fff; color: #1a1a1a; padding: 18px 50px; border-radius: 60px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-white:hover { background: var(--primary); color: #fff; }
.trial-note { color: #555; margin-top: 20px; }

/* --- FOOTER --- */
#site-footer { background: #1a1a1a; color: #fff; padding: 0; }
.footer-top-block { background: #D32F2F; padding: 60px 10%; display: flex; gap: 80px; border-radius: 0 0 60px 60px; color: #1a1a1a; }
.info-item { display: flex; flex-direction: column; gap: 10px; }
.info-item .label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; border: 1px solid rgba(0,0,0,0.2); padding: 4px 10px; border-radius: 20px; display: inline-block; width: fit-content; }
.info-item .value { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; padding: 60px 10%; border-bottom: 1px solid rgba(255,255,255,0.1); }
.f-col h4 { font-size: 0.8rem; color: #777; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.f-col a, .f-col p { color: #fff; text-decoration: none; font-size: 1rem; line-height: 1.6; display: block; transition: 0.3s; }
.f-col a:hover { color: #D32F2F; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; padding: 30px 10%; }
.footer-copy p { color: #555; font-size: 0.8rem; }
.footer-pill-nav { background: #fff; padding: 8px; border-radius: 100px; display: flex; gap: 10px; }
.pill-item { text-decoration: none; color: #1a1a1a; font-weight: 600; padding: 10px 25px; border-radius: 40px; font-size: 0.9rem; transition: 0.3s; }
.pill-item.active, .pill-item:hover { background: #1a1a1a; color: #fff; }

/* --- CHATBOT --- */
#chat-container { position: fixed; bottom: 30px; right: 30px; z-index: 1001; }
#chat-toggle { background: var(--primary); color: #fff; border: none; padding: 15px 25px; border-radius: 40px; font-weight: 700; cursor: pointer; box-shadow: 0 10px 30px rgba(41,44,123,0.3); display: flex; align-items: center; gap: 10px; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); border: 1px solid rgba(255,255,255,0.1); }
#chat-toggle:hover { transform: scale(1.05); }
.pulse-dot { width: 8px; height: 8px; background: #00ff99; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.2; } 100% { opacity: 1; } }
#chat-window { position: absolute; bottom: 85px; right: 0; width: 380px; max-height: 520px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); border: 1px solid rgba(255,255,255,0.8); border-radius: 24px; box-shadow: 0 25px 60px rgba(0,0,0,0.08); display: none; flex-direction: column; overflow: hidden; transform: translateY(30px) scale(0.95); opacity: 0; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
#chat-window.active { display: flex; transform: translateY(0) scale(1); opacity: 1; }
.chat-head { background: var(--primary); color: #fff; padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); }
.chat-head span { font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
#chat-close { cursor: pointer; font-size: 1.5rem; transition: 0.3s; line-height: 1; }
#chat-close:hover { transform: rotate(90deg); }
#chat-messages { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; background: rgba(255,255,255,0.2); }
#chat-messages .msg { padding: 14px 18px; border-radius: 18px; max-width: 85%; font-size: 0.9rem; line-height: 1.5; animation: msgSlide 0.3s forwards; opacity: 0; transform: translateY(10px); }
@keyframes msgSlide { to { opacity: 1; transform: translateY(0); } }
#chat-messages .msg.user { align-self: flex-end; background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }
#chat-messages .msg.bot { align-self: flex-start; background: #fff; color: #333; border: 1px solid #eee; border-bottom-left-radius: 4px; }
#chat-messages .typing-indicator { align-self: flex-start; display: flex; gap: 5px; padding: 14px 18px; background: #fff; border-radius: 18px; border: 1px solid #eee; }
#chat-messages .typing-indicator span { width: 8px; height: 8px; background: #999; border-radius: 50%; display: inline-block; animation: typingDot 1.4s infinite; }
#chat-messages .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
#chat-messages .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-10px); } }
.chat-input-row { display: flex; padding: 15px; border-top: 1px solid rgba(0,0,0,0.05); background: rgba(255,255,255,0.5); gap: 10px; }
#chat-input { flex: 1; border: none; outline: none; padding: 12px 15px; border-radius: 40px; font-size: 0.9rem; background: #fff; }
#chat-send { background: var(--primary); color: #fff; border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; justify-content: center; align-items: center; transition: 0.3s; }
#chat-send:hover { transform: scale(1.05); background: #1f2260; }

/* --- CURSOR TRACKER --- */
#cursor-tracker {
    position: fixed;
    width: 18px; height: 18px;
    left: -100px; top: -100px;
    border: 2px solid rgba(41, 44, 123, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, left 0s, top 0s;
    box-shadow: 0 0 20px rgba(41, 44, 123, 0.25), inset 0 0 20px rgba(41, 44, 123, 0.1);
    backdrop-filter: blur(4px);
    background: rgba(41, 44, 123, 0.05);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
#cursor-tracker.active {
    width: 40px; height: 40px;
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(41, 44, 123, 0.15);
    box-shadow: 0 0 50px rgba(41, 44, 123, 0.5);
    mix-blend-mode: normal;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    #masthead { width: 95%; top: 15px; padding: 10px 20px; border-radius: 30px; }
    #masthead.scrolled { padding: 8px 20px; width: 97%; }
    
    /* Logo Left Shift */
    .header-inner { justify-content: space-between; flex-wrap: wrap; }
    .logo-wrapper { position: static; transform: none; margin-right: auto; flex: 0 0 auto; }
    .nav-group { gap: 15px; font-size: 0.8rem; flex: 1; }
    .site-logo { height: 35px; min-width: 80px; }
    
    .welcome-title { font-size: 4.5rem; }
    .numbers-grid-container { grid-template-columns: repeat(2, 1fr); }
    .center-piece { transform: none; } .center-piece:hover { transform: translateY(-8px); }
    
    .ref-layout { flex-direction: column; text-align: center; gap: 40px; }
    .ref-text-side, .ref-visual-side { width: 100%; }
    .ref-buttons { justify-content: center; }
    
        /* Process Section Responsive */
    .process-container { flex-direction: column; }
    .process-text-left, .process-path-right { width: 100%; text-align: center; }
    .process-path-right { height: 600px; margin-top: 50px; }
    .bg-num { font-size: 10rem; }
    .point-label { max-width: 180px; }
    .p1 { top: 85%; left: 10%; } 
    .p2 { top: 50%; left: 45%; transform: translateX(-50%); } 
    .p3 { top: 15%; right: 10%; }
    .num1 { top: 85%; left: 10%; transform: translate(-30%, -60%); }
    .num2 { top: 50%; left: 45%; transform: translate(-50%, -80%); }
    .num3 { top: 15%; right: 10%; left: auto; transform: translate(30%, -60%); }
    
    .app-layout { flex-direction: column; align-items: center; text-align: center; gap: 40px; }
    .app-text-side { width: 100%; align-items: center; }
    .app-desc { text-align: center; max-width: 100%; }
    .app-number-line { justify-content: center; width: 100%; }
    .app-line { flex: 0 0 60px; }
    .app-phone-side { width: 100%; justify-content: center; }
    .phone-mockup { width: 260px; height: 480px; }
    .phone-glow-bg { filter: blur(50px); opacity: 0.3; }
    
    .testi-track-wrapper { padding: 20px 0; gap: 20px; }
    .testi-row { gap: 20px; }
    .testi-card { width: 340px; min-height: 180px; padding: 20px; }
    .testi-card .quote { font-size: 0.9rem; }
    .testi-fade { width: 100px; }
    
    /* Office Culture Grid (Scaled Down 4 columns) */
    .culture-grid { 
        grid-template-columns: repeat(4, minmax(160px, 1fr)); 
        grid-template-rows: repeat(4, minmax(160px, 1fr)); 
    }
    .grid-cell { border: none; border-bottom: 1px solid rgba(255,255,255,0.9); border-right: 1px solid rgba(255,255,255,0.9); min-height: auto; }
    .grid-cell.cell-empty { display: flex; } /* Keep empties visible on tablet */
    .cell-hero { grid-column: 1 / 3; grid-row: 1 / 2; }
    .cell-card-1 { grid-column: 3 / 4; grid-row: 2 / 3; }
    .cell-card-2 { grid-column: 4 / 5; grid-row: 2 / 3; }
    .cell-card-3 { grid-column: 3 / 4; grid-row: 3 / 4; }
    .cell-card-4 { grid-column: 1 / 3; grid-row: 4 / 5; }
    .cell-content h2 { font-size: 2rem; }
    .cell-content h3 { font-size: 1.2rem; }
    .cell-content p { font-size: 0.85rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-top-block { flex-direction: column; gap: 20px; border-radius: 0 0 40px 40px; }
    .footer-bottom-row { flex-direction: column; gap: 20px; align-items: center; }
}

/* Mobile */
@media (max-width: 600px) {
    /* Global Body Fix */
    html, body { overflow-x: hidden; width: 100%; }
    
        /* --- HEADER & MOBILE MENU (Logo Left Shift) --- */
    #masthead { width: 96%; top: 10px; padding: 8px 15px; border-radius: 20px; }
    #masthead.scrolled { padding: 6px 15px; width: 98%; }
    .mobile-toggle { display: block; z-index: 2; color: #303841; cursor: pointer; user-select: none; margin-left: auto; }
    .header-inner { flex-wrap: wrap; justify-content: space-between; position: relative; }
    .logo-wrapper { position: static; transform: none; margin-right: auto; flex: 0 0 auto; min-width: 0; }
    .site-logo { height: 28px; min-width: 40px; }
    
    /* --- FIX: SMOOTH DROPDOWN MENU --- */
    .nav-group.left, .nav-group.right {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-radius: 0 0 20px 20px;
        z-index: 10;
        
        /* Smooth Dropdown Animation */
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .nav-group.left.open, .nav-group.right.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-group a { font-size: 0.95rem; width: 100%; text-align: center; padding: 8px 0; }

    /* --- HERO --- */
    .welcome-title { font-size: 2.5rem; }
    .welcome-sub { font-size: 0.95rem; line-height: 1.6; }
    .hero-search { display: flex; flex-direction: column; gap: 10px; max-width: 100%; padding: 10px; background: transparent; border: none; backdrop-filter: none; margin: 0 auto 30px; }
    .hero-search input { width: 100%; border-radius: 60px; padding: 12px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 0.95rem; }
    .hero-search input::placeholder { color: #aaa; }
    .hero-search button { width: 100%; border-radius: 60px; padding: 12px 20px; font-size: 0.95rem; border: none; }

    /* --- NUMBERS --- */
    .numbers-grid-container { grid-template-columns: 1fr; gap: 15px; }
    .section-top-text h2 { font-size: 2rem; }
    .num-card { padding: 20px; }
    .num-blob { font-size: 1.5rem; padding: 10px 20px; }

    /* --- WHY CHOOSE --- */
    .ref-text-side h2 { font-size: 2.2rem; }
    .ref-image-wrapper { max-width: 100%; width: 100%; }
    .ref-image-wrapper img { width: 100%; height: auto; object-fit: cover; }
    .ref-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .ref-premium-btn, .btn-secondary { width: 100%; text-align: center; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; padding: 14px 20px; font-size: 1rem; border-radius: 60px; }

        /* --- PROCESS (Cards spaced out & Numbers Visible) --- */
    .process-text-left h2 { font-size: 2.2rem; }
    .process-path-right { height: 500px; position: relative; margin-top: 40px; }
    .bg-num { font-size: 6rem; display: block; } /* Numbers will no longer be hidden on mobile */
    .point-label { max-width: 140px; padding: 12px; position: absolute; background: rgba(255,255,255,0.95); border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .point-label h4 { font-size: 0.85rem; margin-bottom: 4px; }
    .point-label p { font-size: 0.7rem; color: #777; line-height: 1.4; }
    
    /* Align Cards */
    .p1 { top: auto; bottom: 5%; left: 5%; } 
    .p2 { top: 50%; left: 50%; transform: translate(-50%, -50%); } 
    .p3 { top: 5%; right: 5%; }
    
    /* Align Background Numbers behind cards */
    .num1 { top: auto; bottom: 5%; left: 5%; transform: translate(-30%, -50%); }
    .num2 { top: 50%; left: 50%; transform: translate(-50%, -80%); }
    .num3 { top: 5%; right: 5%; left: auto; transform: translate(30%, -50%); }
    
    .premium-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; font-size: 1rem; border-radius: 60px; }

    /* --- CULTURE (Spreading corners & Fixing Overlap) --- */
    .culture-wrapper { min-height: 700px; position: relative; width: 100%; }
    .bg-circle-gradient { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.4; z-index: 0; }
    .culture-img { position: absolute; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); z-index: 1; }
    .culture-img img { width: 100%; height: 100%; object-fit: cover; }
    .culture-img.img-1 { width: 120px; height: 120px; top: 10%; left: 10%; }
    .culture-img.img-2 { width: 120px; height: 120px; bottom: 10%; right: 10%; }
    
    /* Overlap Fix: Moved to far edges */
    .floating-text-card { position: absolute; max-width: 130px; padding: 10px; border-radius: 15px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); z-index: 1; }
    .floating-text-card h4 { font-size: 1rem; margin-bottom: 5px; }
    .floating-text-card p { font-size: 0.75rem; color: #555; }
    .card-left { top: 45%; left: 0; transform: translateY(-50%); }
    .card-right { top: 45%; right: 0; transform: translateY(-50%); }
    
    .extra-content-block { position: absolute; max-width: 110px; padding: 10px; border-radius: 12px; background: #fff; border: 1px solid #eee; z-index: 1; }
    .extra-content-block h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--primary); }
    .extra-content-block p { font-size: 0.7rem; color: #666; }
    .extra-left { top: 15%; right: 5%; }
    .extra-right { bottom: 15%; left: 5%; }
    .culture-header h2 { font-size: 2.2rem; }

    /* --- HOW IT WORKS --- */
    .app-text-side h3 { font-size: 2rem; line-height: 1.2; }
    .app-number-line { display: flex; align-items: center; justify-content: flex-start; gap: 15px; width: 100%; }
    .app-number-line .app-line { display: block; flex: 0 0 40px; height: 2px; background: #ddd; }
    .big-num { font-size: 4rem; color: #292C7B; }
    .phone-mockup { width: 200px; height: 380px; border-width: 6px; }
    .phone-content h4 { font-size: 1.2rem; }
    .phone-glow-bg { filter: blur(30px); opacity: 0.2; }

    /* --- TESTIMONIALS --- */
    .testi-track-wrapper { padding: 10px 0; gap: 15px; }
    .testi-row { gap: 15px; }
    .testi-card { width: 280px; min-height: 150px; padding: 15px; }
    .testi-card .quote { font-size: 0.85rem; }
    .testi-fade { width: 50px; }

    /* --- OFFICE CULTURE (Grid scaled to 2 columns) --- */
    .culture-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .grid-cell { border: none; border-bottom: 1px solid rgba(255,255,255,0.9); min-height: 150px; padding: 15px; box-sizing: border-box; }
    .grid-cell.cell-empty { display: none; }
    .cell-hero { grid-column: 1 / 3; padding: 20px; }
    .cell-card-1, .cell-card-2, .cell-card-3, .cell-card-4 { grid-column: 1 / 3; padding: 20px; background: #fff; }
    .cell-content h2 { font-size: 1.6rem; }
    .cell-content h3 { font-size: 1.1rem; }
    .cell-content p { max-width: 100%; font-size: 0.85rem; }

    /* --- INSTAGRAM --- */
    .insta-wrapper { display: flex; flex-direction: column; align-items: center; }
    .insta-safe-container { padding: 10px; border-radius: 20px; height: auto; display: flex; align-items: flex-start; justify-content: center; width: 100%; max-width: 100%; }
    .insta-safe-container iframe { height: 400px; max-height: 450px; border-radius: 12px; width: 100%; display: block; }
    .insta-btn { margin-top: 15px; padding: 12px 30px; font-size: 0.9rem; }
    .insta-header h2 { font-size: 2rem; }

    /* --- FAQ (Pills One Line, Search inside box) --- */
    .faq-top h2 { font-size: 2.2rem; }
    
    /* Search Bar Inside Fix */
    .faq-search { display: flex; flex-direction: row; width: 100%; padding: 4px; background: #f9f9f9; border-radius: 40px; border: 1px solid #eee; align-items: center; box-sizing: border-box; }
    .faq-search input { flex: 1; border: none; background: transparent; padding: 10px 15px; font-size: 0.85rem; outline: none; min-width: 0; }
    .faq-search button { padding: 10px 18px; font-size: 0.85rem; border-radius: 40px; background: var(--primary); color: #fff; flex-shrink: 0; margin: 0; width: auto; }
    
    /* Pills One Line Fix */
    .category-pills { display: flex; flex-wrap: wrap; justify-content: center; overflow-x: visible; gap: 5px; width: 100%; padding-bottom: 5px; }
    .category-pills button { font-size: 0.7rem; padding: 6px 12px; flex-shrink: 0; border-radius: 40px; }

    /* --- CTA BUTTON --- */
    .full-screen-dark h2 { font-size: 2.5rem; }
    .full-screen-dark { padding: 60px 15px; }
    .btn-white { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 30px; font-size: 1rem; line-height: normal; width: auto; min-width: 180px; border-radius: 60px; box-sizing: border-box; }

          /* --- FOOTER (Mobile) --- */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 25px; }
    #site-footer { width: 100%; overflow: hidden; }
    .footer-top-block { padding: 40px 15px; border-radius: 0 0 40px 40px; width: 100%; box-sizing: border-box; }
    .footer-top-block .info-item .value { font-size: 2.5rem; }
    .footer-bottom-row { flex-direction: column; gap: 20px; align-items: center; width: 100%; padding: 20px 10px; box-sizing: border-box; }
    .footer-copy { text-align: center; }
    
    /* --- REMOVED PILL NAV ON MOBILE (Fully Hidden) --- */
    .footer-pill-nav {
        display: none !important;
    }
    .pill-item {
        display: none !important;
    }

        /* --- CHATBOT (Mobile: Perfectly Centered & Animation Preserved) --- */
    #chat-container {
        left: 5vw !important;
        right: 5vw !important;
        width: 90vw !important;
        bottom: 20px !important;
    }
    
    #chat-window {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        bottom: 85px !important;
        max-height: calc(100vh - 150px) !important;
        height: auto !important;
        /* transform: none; hata diya hai taaki animation smooth chale */
        border-radius: 24px !important;
        overflow: hidden !important;
    }
}

/* --- ABOUT PAGE: ANIMATED BRAND GRADIENT --- */
.animated-brand-bg {
    /* Light + Dark Gradient */
    background: linear-gradient(135deg, #1f2833, #2C3947, #3b5062);
    background-size: 400% 400%;
    animation: brandGradient 15s ease-in-out infinite;
    color: #fff;
}
@keyframes brandGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- SECTION 1: ABOUT HERO --- */
#about-hero {
    padding: 120px 10% 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.about-hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 2;
}

/* Left side: Mega Text */
.hero-left { width: 50%; }
.mega-title {
    font-family: var(--font-ui);
    font-size: clamp(5rem, 12vw, 14rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    text-transform: lowercase;
    line-height: 0.85;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.location-tag { display: flex; align-items: center; gap: 15px; }
.tag-icon { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; }
.location-tag p { font-size: 1rem; color: #e0e0e0; letter-spacing: 1px; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

/* Right side: Premium Collage */
.hero-right-collage {
    width: 45%;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.collage-img-wrapper {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    animation: floatOrganic 6s infinite alternate ease-in-out;
    border: 2px solid rgba(255,255,255,0.1);
}
.collage-img-wrapper:hover { transform: scale(1.05) rotate(2deg); z-index: 5; border-color: var(--yellow); }
.collage-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.img-wrap-1 { width: 220px; height: 280px; top: 0; left: 10%; animation-delay: 0s; }
.img-wrap-2 { width: 280px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0.5s; z-index: 2; }
.img-wrap-3 { width: 200px; height: 200px; bottom: 0; right: 10%; animation-delay: 1s; }

@keyframes floatOrganic { 0% { transform: translateY(0px); } 100% { transform: translateY(-15px); } }

/* --- SECTION 2: INTRO --- */
#about-intro { padding: 80px 10% 100px; text-align: center; }
.intro-container { max-width: 800px; margin: 0 auto; }
#about-intro h2 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.intro-desc {
    font-size: 1.15rem;
    color: #e0e0e0;
    line-height: 1.8;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* --- SECTION 3: PROCESS TIMELINE --- */
#about-process { padding: 50px 10% 120px; text-align: center; }
.process-title h3 { font-family: var(--font-ui); font-size: 0.9rem; color: var(--yellow); letter-spacing: 2px; margin-bottom: 60px; }

.process-timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 800px;
}
.svg-timeline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.infinite-line { animation: drawInfinite 4s linear infinite; }
@keyframes drawInfinite { 0% { stroke-dashoffset: 1500; } 100% { stroke-dashoffset: 0; } }

/* Nodes (Slow & Smooth Hover) */
.node {
    position: absolute;
    z-index: 2;
    max-width: 320px;
    /* 0.8s SLOW TRANSITION FOR SMOOTH EFFECT */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 15px;
    border-radius: 20px;
    cursor: pointer;
}
.node-1 { top: 0; left: 5%; text-align: left; }
.node-2 { top: 28%; right: 5%; text-align: right; }
.node-3 { top: 55%; left: 5%; text-align: left; }
.node-4 { bottom: 0; right: 5%; text-align: right; }

/* LIQUID GLASS HOVER (Slower & Smoother) */
.node:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 30% 60% 20% 50% / 40% 20% 60% 30%;
    transform: scale(1.05) translateY(-5px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.node .dot-wrapper { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.node .dot { width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; display: inline-block; }
.node .num { font-family: var(--font-ui); font-size: 1.2rem; color: var(--yellow); font-weight: 700; }
.node-content h4 { font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin-bottom: 5px; text-transform: lowercase; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.node-content p { font-size: 0.95rem; color: #e0e0e0; line-height: 1.6; }

/* --- RESPONSIVE (Tablet & Mobile - No Overlap) --- */
@media (max-width: 1024px) {
    /* Stack properly, images below text */
    .about-hero-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    .hero-left { width: 100%; align-items: center; padding-bottom: 20px; }
    .mega-title { font-size: clamp(5rem, 15vw, 8rem); }
    
    .hero-right-collage { 
        width: 100%; 
        position: relative; 
        height: 350px; /* Increased height to safely contain images without overlap */
        margin-top: 0; 
    }
    .img-wrap-1 { width: 160px; height: 200px; top: 0; left: 15%; }
    .img-wrap-2 { width: 200px; height: 260px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .img-wrap-3 { width: 140px; height: 140px; bottom: 0; right: 15%; }
    
    /* Process Stack */
    .process-timeline-container { height: auto; display: flex; flex-direction: column; gap: 40px; padding: 20px 0; }
    .svg-timeline { display: none; }
    .node {
        position: relative; top: auto; left: auto; right: auto; bottom: auto;
        max-width: 100%; text-align: left !important; padding: 0;
        border: none; background: transparent; backdrop-filter: none; box-shadow: none;
        transition: none;
    }
    .node:hover { transform: none; border-radius: 0; border: none; backdrop-filter: none; transition: none; }
    .node .node-content { text-align: left !important; }
    .node-1, .node-2, .node-3, .node-4 { left: auto; right: auto; text-align: left; }
}

@media (max-width: 600px) {
    #about-hero { padding: 100px 10% 40px; min-height: auto; }
    .mega-title { font-size: 3.5rem; letter-spacing: -1px; }
    .location-tag p { font-size: 0.8rem; }
    
    .hero-right-collage { height: 250px; }
    .img-wrap-1 { width: 100px; height: 130px; top: 0; left: 10%; }
    .img-wrap-2 { width: 130px; height: 170px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .img-wrap-3 { width: 90px; height: 90px; bottom: 0; right: 10%; }
    
    #about-intro h2 { font-size: 1.8rem; }
    .intro-desc { font-size: 1rem; }
    #about-process { padding: 30px 10% 60px; }
    .node-content h4 { font-size: 1.2rem; }
}

/* --- SERVICES PAGE: HERO (Unchanged) --- */
#services-hero {
    background: #FF6B52;
    padding: 120px 10% 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}
.grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    background-image: linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 100px 100px;
}
.services-hero-container {
    position: relative; width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; z-index: 2;
}
.services-left { width: 50%; }
.services-title {
    font-family: var(--font-ui); font-size: clamp(4rem, 8vw, 8rem); font-weight: 800;
    color: #1A1A1A; letter-spacing: -2px; line-height: 0.9; margin-bottom: 20px;
}
.services-sub { font-size: 1.2rem; color: #4a4a4a; max-width: 450px; line-height: 1.6; }
.services-right { width: 45%; display: flex; justify-content: flex-end; align-items: center; }
.services-svg-logo { width: 100%; max-width: 400px; height: auto; }
.services-svg-logo .draw-path { stroke-dasharray: 3000; stroke-dashoffset: 3000; animation: drawSVG 4s forwards; }
@keyframes drawSVG { 0% { stroke-dashoffset: 3000; } 100% { stroke-dashoffset: 0; } }

/* --- SECTION 2: GEOMETRIC COLOR STRIP (Replaced Photo) --- */
#services-pattern-strip {
    width: 100%; height: 200px;
    background: #2C3947; /* Dark brand color */
    position: relative; overflow: hidden;
}
.pattern-overlay {
    position: absolute; inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 25px, transparent 25px, transparent 50px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 25px, transparent 25px, transparent 50px);
    background-size: 100px 100px;
}

/* --- SECTION 3: MODERN BENTO GRID --- */
#services-grid { background: #fafafa; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-family: var(--font-head); font-size: 3.5rem; color: #303841; margin-bottom: 10px; }
.services-header p { font-size: 1.1rem; color: #666; }

/* Grid Layout - 4 Columns with Spans */
.services-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Card Base (Ultra Slow Hover) */
.service-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    /* SLOW ANIMATIONS */
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    animation: floatSmooth 8s infinite alternate ease-in-out;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    position: relative;
    overflow: hidden;
}
/* Floating Delay per card */
.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.8s; }
.service-card:nth-child(4) { animation-delay: 1.2s; }
.service-card:nth-child(5) { animation-delay: 0.2s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 1.0s; }
.service-card:nth-child(8) { animation-delay: 0.1s; }
.service-card:nth-child(9) { animation-delay: 0.5s; }
.service-card:nth-child(10) { animation-delay: 0.9s; }
.service-card:nth-child(11) { animation-delay: 1.3s; }
.service-card:nth-child(12) { animation-delay: 0.3s; }

@keyframes floatSmooth {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-8px) scale(1.02); }
}

/* Spans for Bento Grid */
.service-card.card-wide { grid-column: span 2; }

/* Hover: Liquid Glass Blur Effect (Slow & Smooth) */
.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: rgba(41, 44, 123, 0.2);
    box-shadow: 0 25px 60px rgba(41, 44, 123, 0.08);
}

.card-icon {
    display: flex; justify-content: center; align-items: center;
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: #fff; border-radius: 16px;
    transition: 0.7s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.service-card:hover .card-icon { background: #292C7B; box-shadow: 0 10px 25px rgba(41,44,123,0.15); }
.service-card:hover .card-icon svg { stroke: #fff !important; }

.service-card h3 { font-family: var(--font-head); font-size: 1.4rem; color: #303841; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* --- RESPONSIVE (Services Page) --- */
@media (max-width: 1024px) {
    .services-hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .services-left, .services-right { width: 100%; }
    .services-left { align-items: center; }
    .services-sub { max-width: 100%; text-align: center; }
    .services-right { justify-content: center; }
    .services-svg-logo { max-width: 300px; }

    .services-cards-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .service-card.card-wide { grid-column: span 2; }
    #services-pattern-strip { height: 120px; }
}

@media (max-width: 600px) {
    #services-hero { padding: 100px 10% 40px; min-height: auto; }
    .services-title { font-size: 3rem; }
    .services-svg-logo { max-width: 180px; }
    
    .services-cards-container { grid-template-columns: 1fr; gap: 20px; }
    .service-card.card-wide { grid-column: span 1; }
    
    #services-pattern-strip { height: 80px; }
    .services-header h2 { font-size: 2.5rem; }
    #services-cta { min-height: 60vh; }
}

/* --- MAGAZINE NOISE OVERLAY (5% Opacity) --- */
.magazine-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04; /* Subtle 5% noise */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- METHODOLOGY PAGE: SECTION 1 (Geometric Flow) --- */
#methodo-hero { background: #F5F5F5; }
.editorial-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.methodo-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}
.methodo-text { width: 45%; }
.methodo-title {
    font-family: var(--font-ui);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 700;
    color: #303841;
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 30px;
}
.methodo-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 450px;
}
.methodo-graphic { width: 50%; display: flex; justify-content: center; align-items: center; }
.methodo-svg { width: 100%; max-width: 500px; height: auto; }
.methodo-path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawLine 3s ease-in-out forwards; }
@keyframes drawLine { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } }
.methodo-node { opacity: 0; animation: fadeInNode 0.5s forwards; }
.methodo-node:nth-child(2) { animation-delay: 0.5s; }
.methodo-node:nth-child(3) { animation-delay: 1s; }
.methodo-node:nth-child(4) { animation-delay: 1.5s; }
.methodo-node.main-node { animation-delay: 2s; }
@keyframes fadeInNode { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } }

/* --- METHODOLOGY PAGE: SECTION 2 (Process + Tunnel) --- */
.bg-soft-paper { background: #F9F9F6; } /* Magazine off-white paper */
#methodo-process { position: relative; overflow: hidden; }
.methodo-ticker-wrapper {
    width: 100%;
    background: #292C7B;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}
.methodo-ticker {
    display: inline-block;
    animation: tickerScroll 35s linear infinite;
}
.methodo-ticker span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 25px;
    letter-spacing: 1px;
    font-style: italic;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.methodo-process-layout {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 80px auto 0;
    align-items: center;
}
.methodo-steps { width: 45%; display: flex; flex-direction: column; gap: 50px; }
.step-item { border-bottom: 1px solid #ddd; padding-bottom: 30px; transition: 0.4s; cursor: default; }
.step-item:hover { border-color: #292C7B; transform: translateX(10px); }
.step-header { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }
.step-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    transition: 0.4s;
}
.step-item:hover .step-num { color: #292C7B; }
.step-title { font-family: var(--font-head); font-size: 1.5rem; color: #303841; font-weight: 600; }
.step-desc { font-size: 1rem; color: #666; line-height: 1.6; max-width: 450px; margin: 0; }

/* 3D CSS Perspective Tunnel */
.methodo-tunnel-wrapper {
    width: 50%;
    height: 500px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.tunnel-perspective {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: perspective(1000px) rotateX(20deg) rotateY(-15deg);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.tunnel-layer {
    width: 80%;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
    transform: scale(0.9) translateZ(0px);
}
.layer-1 { width: 85%; transform: scale(1.1) translateZ(100px); }
.layer-2 { width: 75%; transform: scale(1) translateZ(50px); }
.layer-3 { width: 65%; transform: scale(0.9) translateZ(0px); }
.layer-4 { width: 55%; transform: scale(0.8) translateZ(-50px); }
.layer-5 { width: 45%; transform: scale(0.7) translateZ(-100px); }
.layer-6 { width: 35%; transform: scale(0.6) translateZ(-150px); }

/* --- METHODOLOGY PAGE: SECTION 3 (Magazine Blueprint Layout) --- */
#methodo-philosophy { background: #F9F9F6; text-align: center; }
.philosophy-container { max-width: 900px; margin: 0 auto; padding: 40px 0; }
.philosophy-header-group { margin-bottom: 30px; }
.philosophy-badge {
    display: inline-block;
    background: #E65F51;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-bottom: 20px;
    font-family: var(--font-ui);
}
.philosophy-title {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 400;
    color: #303841;
    line-height: 1.1;
    letter-spacing: -2px;
}
.philosophy-desc {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}
.philosophy-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.blueprint-svg { width: 100%; max-width: 400px; height: auto; margin: 0 auto; display: block; }
.blueprint-draw { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawLine 3s forwards; }
.blueprint-draw:nth-child(2) { animation-delay: 0.5s; }
.blueprint-draw:nth-child(3) { animation-delay: 0.7s; }
.blueprint-draw:nth-child(4) { animation-delay: 0.9s; }
.blueprint-draw:nth-child(5) { animation-delay: 1.1s; }
.blueprint-draw:nth-child(6) { animation-delay: 1.3s; }
.blueprint-draw:nth-child(7) { animation-delay: 1.5s; }

/* Editorial Action Button */
.editorial-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #303841;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: 1px solid transparent;
}
.editorial-action:hover {
    background: #fff;
    color: #303841;
    border-color: #303841;
    transform: translateY(-2px);
}
.action-arrow { font-size: 1.2rem; transition: 0.3s; }
.editorial-action:hover .action-arrow { transform: translateX(5px); }

/* --- RESPONSIVE (Methodology Page) --- */
@media (max-width: 1024px) {
    .methodo-hero-container { flex-direction: column; text-align: center; }
    .methodo-text { width: 100%; align-items: center; }
    .methodo-desc { max-width: 100%; margin: 0 auto; }
    .methodo-graphic { width: 100%; }
    .methodo-process-layout { flex-direction: column; gap: 60px; }
    .methodo-steps, .methodo-tunnel-wrapper { width: 100%; }
    .methodo-tunnel-wrapper { height: 350px; }
    .tunnel-perspective { transform: perspective(1000px) rotateX(15deg) rotateY(0deg) scale(0.9); }
}

@media (max-width: 600px) {
    .methodo-title { font-size: 3rem; }
    .methodo-svg { max-width: 300px; }
    .methodo-ticker span { font-size: 0.8rem; }
    .step-title { font-size: 1.2rem; }
    .methodo-tunnel-wrapper { height: 280px; }
    .philosophy-title { font-size: 2.5rem; }
    .blueprint-svg { max-width: 250px; }
}

/* --- INSIGHTS PAGE: HERO (Animated Wireframe) --- */
.bg-soft-paper { background: #F9F9F6; }
#insights-hero { text-align: center; padding-bottom: 40px; position: relative; overflow: hidden; }
.hero-wireframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    animation: wireframeMove 20s linear infinite alternate;
}
@keyframes wireframeMove {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}
.insights-hero-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.insights-header-tag {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}
.insights-mega-title {
    font-family: var(--font-head);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 400;
    color: #303841;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 20px;
}
.insights-hero-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* --- SECTION 1.5: CATEGORY PILLS --- */
.pills-section { padding: 0 10% 60px; }
.pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.pill-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 10px 22px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.pill-item:hover, .pill-item.active {
    background: #292C7B;
    color: #fff;
    border-color: #292C7B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(41,44,123,0.15);
}

/* --- SECTION 2: FEATURED POSTS --- */
#featured-posts { padding-top: 20px; }
.featured-container {
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}
.featured-left { flex: 6; position: relative; }
.editor-choice-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #E65F51;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-ui);
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 0 20px rgba(230,95,81,0.3);
    animation: glowPulse 3s infinite;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(230,95,81,0.3); }
    50% { box-shadow: 0 0 30px rgba(230,95,81,0.6); }
    100% { box-shadow: 0 0 10px rgba(230,95,81,0.3); }
}
.featured-img-wrapper {
    width: 100%; border-radius: 20px; overflow: hidden; border: 1px solid #eee; position: relative;
}
.featured-img-wrapper img { width: 100%; height: 350px; object-fit: cover; display: block; transition: 0.5s; }
.featured-left:hover .featured-img-wrapper img { transform: scale(1.03); }
.img-overlay-grad {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(249,249,246,1), transparent);
    pointer-events: none;
}
.featured-text { margin-top: 20px; }
.featured-text .featured-category {
    display: inline-block; background: #F0F0F0; color: #555; padding: 4px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 600; margin-bottom: 15px;
}
.featured-text h2 { font-family: var(--font-head); font-size: 2.8rem; line-height: 1.1; color: #303841; margin-bottom: 15px; }
.featured-excerpt { font-size: 1.1rem; color: #666; line-height: 1.6; margin-bottom: 15px; }
.featured-meta { font-size: 0.9rem; color: #999; display: flex; gap: 10px; }
.featured-link { text-decoration: none; color: #292C7B; font-weight: 700; font-size: 1rem; transition: 0.3s; display: inline-block; }
.featured-link:hover { transform: translateX(10px); }

/* Right: Glass Sidebar */
.featured-right { flex: 4; padding: 30px; border-radius: 20px; position: relative; }
.glass-sidebar {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
}
.featured-right h4 { font-family: var(--font-head); font-size: 1.5rem; color: #303841; margin-bottom: 20px; border-bottom: 2px solid #292C7B; display: inline-block; padding-bottom: 5px; }
.featured-list { display: flex; flex-direction: column; }
.featured-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s; cursor: pointer;
}
.featured-item:last-child { border-bottom: none; }
.featured-item:hover { transform: translateX(5px); background: rgba(255,255,255,0.5); padding-left: 10px; border-radius: 10px; }
.f-item-img {
    width: 45px; height: 45px; border-radius: 10px;
    background-size: cover; background-position: center; flex-shrink: 0;
}
.f-item-text { flex: 1; }
.f-item-text h5 { font-size: 0.9rem; font-weight: 600; color: #303841; margin-bottom: 3px; transition: 0.3s; }
.featured-item:hover h5 { color: #292C7B; }
.f-item-text span { font-size: 0.7rem; color: #999; }
.f-item-icon { color: #ccc; font-size: 1.2rem; transition: 0.3s; }
.featured-item:hover .f-item-icon { color: #292C7B; transform: translateX(5px); }

/* --- SECTION 3: 3D TILT SKEW GRID --- */
#skew-grid { padding-top: 40px; }
.grid-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.grid-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: #303841; }
.grid-view-all { text-decoration: none; color: #292C7B; font-weight: 700; transition: 0.3s; }
.grid-view-all:hover { transform: translateX(10px); }

.skew-container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1300px; margin: 0 auto;
    perspective: 1000px;
}
.skew-card {
    position: relative; background: #fff; border-radius: 20px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); border: 1px solid #eee;
    transform-style: preserve-3d; transition: transform 0.1s ease-out, box-shadow 0.5s ease;
    overflow: hidden; cursor: pointer;
}
.skew-bg {
    position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
    transform: rotate(-5deg) scale(1.2); z-index: 0; border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.skew-card:hover .skew-bg { transform: rotate(0deg) scale(1); }
.card-img-layer {
    position: relative; z-index: 1; width: 100%; height: 200px; border-radius: 16px; overflow: hidden;
    transform: translateZ(20px);
}
.card-img-layer img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s; }
.skew-card:hover .card-img-layer img { transform: scale(1.05); }
.skew-content {
    position: relative; z-index: 1; margin-top: 20px;
    transform: translateZ(15px);
}
.card-tag { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 700; margin-bottom: 12px; }
.skew-content h3 { font-family: var(--font-head); font-size: 1.3rem; color: #303841; margin-bottom: 10px; line-height: 1.2; }
.skew-content p { font-size: 0.9rem; color: #666; line-height: 1.5; margin-bottom: 20px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.read-time { font-size: 0.75rem; color: #999; }
.read-btn { font-size: 0.85rem; font-weight: 700; color: #292C7B; transition: 0.3s; }
.skew-card:hover .read-btn { transform: translateX(5px); }

/* --- SECTION 4: NEWSLETTER --- */
#insight-newsletter { background: linear-gradient(135deg, #292C7B, #2C3947); padding: 100px 10%; text-align: center; }
.newsletter-wrapper { max-width: 600px; margin: 0 auto; color: #fff; }
.newsletter-wrapper h2 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 15px; }
.newsletter-wrapper p { font-size: 1.1rem; color: #ddd; line-height: 1.6; margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 10px; background: rgba(255,255,255,0.1); padding: 10px; border-radius: 60px; border: 1px solid rgba(255,255,255,0.2); }
.newsletter-form input { flex: 1; border: none; background: transparent; color: #fff; padding: 10px 20px; outline: none; }
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button { background: #fff; color: #292C7B; border: none; padding: 12px 30px; border-radius: 40px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.newsletter-form button:hover { background: #3BACB6; color: #fff; transform: scale(1.05); }
.newsletter-note { display: block; margin-top: 15px; font-size: 0.8rem; color: #888; }

/* --- RESPONSIVE (Insights Page) --- */
@media (max-width: 1024px) {
    .featured-container { flex-direction: column; gap: 40px; }
    .featured-left, .featured-right { flex: 1; width: 100%; }
    .featured-img-wrapper img { height: 250px; }
    .skew-container { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hero-wireframe { opacity: 0.1; }
}

@media (max-width: 600px) {
    .insights-mega-title { font-size: 3.5rem; }
    .featured-img-wrapper img { height: 180px; }
    .featured-text h2 { font-size: 1.8rem; }
    .featured-item { flex-wrap: wrap; }
    .f-item-img { width: 35px; height: 35px; }
    .skew-container { grid-template-columns: 1fr; gap: 30px; }
    .skew-card { padding: 15px; }
    .card-img-layer { height: 160px; }
    .grid-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .pills-section { padding: 0 5% 40px; }
    .newsletter-form { flex-direction: column; background: transparent; border: none; padding: 0; gap: 15px; }
    .newsletter-form input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 40px; padding: 15px 20px; width: 100%; }
    .newsletter-form button { width: 100%; padding: 15px; }
}

/* --- CONTACT PAGE: EDITORIAL HERO (New Drop Style) --- */
#contact-hero-editorial {
    background: #f2efe9; /* Premium warm beige */
    padding: 100px 10% 60px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-editorial-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: var(--font-ui);
    font-size: clamp(8rem, 20vw, 25rem);
    font-weight: 800;
    color: rgba(41, 44, 123, 0.06);
    letter-spacing: -5px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}
.hero-editorial-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.hero-editorial-title {
    font-family: var(--font-ui);
    font-size: clamp(5rem, 12vw, 14rem);
    font-weight: 800;
    color: #303841;
    letter-spacing: -3px;
    line-height: 0.9;
    margin: 0;
}
.hero-editorial-graphic {
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-editorial-svg {
    width: 100%;
    height: auto;
    max-width: 180px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.05));
    animation: floatHero 6s ease-in-out infinite;
}
@keyframes floatHero {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- CONTACT PAGE: PREMIUM SPLIT CARD --- */
#main-contact { background: #f2efe9; padding-top: 0; padding-bottom: 80px; }
.contact-card-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.03);
    border: 1px solid #eeeeee;
    overflow: hidden;
    transform: translateY(-40px); /* Lifted over editorial hero */
    position: relative;
    z-index: 2;
}

/* LEFT: Modern Form Panel */
.contact-form-panel { width: 60%; padding: 60px; background: #ffffff; }
.form-header { margin-bottom: 35px; }
.form-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: #303841; margin-bottom: 10px; }
.form-header p { font-size: 1rem; color: #666; line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #303841; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px;
    border: 1px solid #E5E7EB; border-radius: 12px;
    font-size: 0.95rem; font-family: inherit;
    transition: all 0.3s; background: #F9FAFB;
    color: #303841;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #292C7B; outline: none;
    box-shadow: 0 0 0 4px rgba(41,44,123,0.05); background: #fff;
}
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 4l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.form-check { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #555; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: #292C7B; cursor: pointer; }
.submit-btn { border: none; width: auto; padding: 16px 40px; border-radius: 60px; cursor: pointer; }

/* RIGHT: Brand Gradient Panel */
.contact-side-panel {
    width: 40%;
    background: linear-gradient(135deg, #292C7B 0%, #3BACB6 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.illustration-wrapper {
    width: 100%; max-width: 300px; margin-bottom: 30px;
}
.contact-3d-svg { width: 100%; height: auto; }

.panel-details { width: 100%; color: #fff; }
.panel-details h4 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; opacity: 0.9; }
.detail-item { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 15px; }
.detail-item svg { stroke: #F9D03F; flex-shrink: 0; width: 20px; height: 20px; }
.detail-item .d-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.detail-item .d-value { color: #fff; text-decoration: none; font-size: 0.95rem; transition: 0.3s; }
.detail-item a.d-value:hover { color: #F9D03F; }

.panel-socials { margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; text-align: center; }
.panel-socials span { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 15px; }
.social-icons-wrap { display: flex; justify-content: center; gap: 15px; }
.social-icons-wrap a { background: rgba(255,255,255,0.1); padding: 10px; border-radius: 50%; display: flex; transition: 0.3s; }
.social-icons-wrap a:hover { background: #F9D03F; transform: translateY(-3px); }
.social-icons-wrap a:hover svg { stroke: #292C7B; }

/* --- RESPONSIVE (Tablet) --- */
@media (max-width: 1024px) {
    #contact-hero-editorial { padding: 80px 10% 40px; }
    .hero-editorial-content { gap: 20px; }
    .contact-card-wrapper { flex-direction: column; transform: translateY(-20px); margin: 0 30px; border-radius: 30px; }
    .contact-form-panel, .contact-side-panel { width: 100%; padding: 50px; }
    .contact-side-panel { border-radius: 0 0 30px 30px; }
    .form-actions { flex-wrap: wrap; gap: 15px; }
}

/* --- RESPONSIVE (Mobile - FIXED WIDE GAP) --- */
@media (max-width: 600px) {
    #contact-hero-editorial { padding: 60px 5% 30px; min-height: auto; }
    .watermark-text { display: none; }
    .hero-editorial-title { font-size: clamp(3rem, 15vw, 5rem); }
    .hero-editorial-graphic { width: 100px; height: 100px; }
    
    .contact-card-wrapper { margin: 0 5px; transform: translateY(-15px); border-radius: 16px; }
    .contact-form-panel { padding: 25px 15px; border-radius: 16px 16px 0 0; }
    .contact-side-panel { padding: 25px 15px; border-radius: 0 0 16px 16px; }
    
    .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 0.9rem; box-sizing: border-box; }
    .form-group textarea { min-height: 80px; }
    .form-header h2 { font-size: 1.8rem; }
    .form-row { flex-direction: column; gap: 12px; }
    
    .form-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 15px; }
    .form-check { align-items: flex-start; text-align: left; }
    .submit-btn { width: 100%; text-align: center; padding: 16px 20px; }
    
    .panel-details h4 { font-size: 1.2rem; }
    .contact-3d-svg { max-width: 140px; }
    .panel-socials span { margin-bottom: 10px; }
    .social-icons-wrap { gap: 12px; }
    .social-icons-wrap a { padding: 8px; }
}

/* --- GET A QUOTE PAGE: VIDEO HERO --- */
#quote-hero {
    background: #0d0d0d;
    padding: 140px 10% 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.quote-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.quote-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background video */
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.4) 100%);
    z-index: 1;
}
.quote-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
}
.hero-text-main { width: 60%; }
.hero-pre-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F9D03F;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-mega-title {
    font-family: var(--font-ui);
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -3px;
    line-height: 0.9;
    margin: 0;
}
.hero-sub-content { width: 35%; color: #ccc; }
.hero-sub-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; }
.hero-cta { border: none; text-align: center; display: inline-block; }

/* --- GET A QUOTE PAGE: SPLIT FORM SECTION --- */
#quote-form-section { background: #f5f7fa; padding-top: 0; padding-bottom: 80px; }
.quote-form-container {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.03);
    border: 1px solid #eeeeee;
    overflow: hidden;
    transform: translateY(-60px); /* Lift effect over hero */
    position: relative;
    z-index: 2;
}

/* LEFT: Unique Info Panel */
.quote-info-panel {
    width: 35%;
    background: #2C3947;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.info-header h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 10px; color: #fff; }
.info-header p { font-size: 0.95rem; color: #ddd; line-height: 1.6; margin-bottom: 40px; }
.info-steps { display: flex; flex-direction: column; gap: 30px; margin-bottom: 40px; }
.info-step { display: flex; gap: 20px; align-items: flex-start; }
.info-step .step-num {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: #F9D03F;
    opacity: 0.6;
    line-height: 1;
}
.info-step .step-detail h4 { font-size: 1.1rem; margin-bottom: 5px; color: #fff; }
.info-step .step-detail p { font-size: 0.85rem; color: #ccc; line-height: 1.5; margin: 0; }
.info-cta { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.info-cta span { font-size: 0.85rem; color: #F9D03F; font-weight: 600; }

/* RIGHT: Quote Form Panel */
.quote-form-panel { width: 65%; padding: 60px; background: #ffffff; }
.form-header { margin-bottom: 30px; }
.form-header h3 { font-family: var(--font-head); font-size: 2rem; color: #303841; margin-bottom: 10px; }
.form-header p { font-size: 0.95rem; color: #666; line-height: 1.6; }

.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #303841; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px;
    border: 1px solid #E5E7EB; border-radius: 12px;
    font-size: 0.95rem; font-family: inherit;
    transition: all 0.3s; background: #F9FAFB;
    color: #303841;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #292C7B; outline: none;
    box-shadow: 0 0 0 4px rgba(41,44,123,0.05); background: #fff;
}
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M1 4l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-actions { margin-top: 10px; }
.quote-submit-btn { border: none; width: 100%; padding: 18px; border-radius: 60px; cursor: pointer; text-align: center; }

/* --- RESPONSIVE (Get a Quote) --- */
@media (max-width: 1024px) {
    #quote-hero { padding: 120px 10% 80px; }
    .hero-text-main, .hero-sub-content { width: 100%; }
    .hero-sub-content { margin-top: -20px; }
    .quote-form-container { flex-direction: column; transform: translateY(-40px); margin: 0 30px; border-radius: 30px; }
    .quote-info-panel, .quote-form-panel { width: 100%; padding: 50px; }
    .quote-info-panel { border-radius: 30px 30px 0 0; }
    .quote-form-panel { border-radius: 0 0 30px 30px; }
}

@media (max-width: 600px) {
    #quote-hero { padding: 100px 5% 60px; min-height: auto; }
    .hero-mega-title { font-size: clamp(3rem, 12vw, 5rem); }
    .hero-sub-content { margin-top: 0; }
    .quote-form-container { margin: 0 10px; transform: translateY(-30px); border-radius: 20px; flex-direction: column; }
    .quote-info-panel { padding: 30px 20px; border-radius: 20px 20px 0 0; }
    .quote-form-panel { padding: 30px 20px; border-radius: 0 0 20px 20px; }
    .form-row { flex-direction: column; gap: 15px; }
    .info-step .step-num { font-size: 2rem; }
    .quote-submit-btn { padding: 16px; }
}

/* --- FAQ SECTION (Updated for Categories) --- */
#faq-section { padding: 100px 10%; }
.faq-wrapper { max-width: 1100px; margin: 0 auto; text-align: center; } /* Center for Header */
.faq-top h2 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 10px; }
.faq-top p { color: #666; margin-bottom: 30px; }

/* Search Bar */
.faq-search { display: flex; max-width: 500px; margin: 0 auto 30px; background: #f9f9f9; border-radius: 40px; padding: 5px; border: 1px solid #eee; }
.faq-search input { flex: 1; border: none; background: transparent; padding: 15px 20px; outline: none; }
.faq-search button { background: var(--primary); color: #fff; border: none; padding: 10px 25px; border-radius: 40px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.faq-search button:hover { background: #1f2260; }

/* Category Pills */
.category-pills { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.category-pills button { border: none; padding: 12px 25px; border-radius: 40px; background: #f0f0f0; color: #777; cursor: pointer; transition: 0.3s; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.category-pills button:hover, .category-pills button.active { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* FAQ Groups (Hide/Show logic) */
.faq-group { display: none; }
.faq-group.active { display: block; }

/* FAQ Items (Left Aligned) */
.faq-list-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; cursor: pointer; }
.faq-question { font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.faq-toggle { font-size: 1.5rem; color: #999; transition: 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding-top: 0; color: #666; line-height: 1.6; text-align: left; }
.faq-item.active .faq-answer { max-height: 200px; padding-top: 20px; }

/* No results message */
#faq-no-results { display: none; text-align: center; padding: 40px 0; font-size: 1.1rem; color: #666; }

/* === NEW MOBILE FIX FOR PILLS (Single Line) === */
@media (max-width: 600px) {
    .category-pills {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 5px;
        width: 100%;
    }
    .category-pills button {
        font-size: 0.8rem;
        padding: 8px 16px;
        flex-shrink: 0;
    }
    .category-pills::-webkit-scrollbar { display: none; }
}

/* --- HIDE CURSOR TRACKER ON TABLETS & MOBILES --- */
@media (max-width: 1024px) {
    #cursor-tracker {
        display: none !important;
    }
}

/* --- HERO SEARCH OUTPUT BOX (Fixed Height & Scroll) --- */
.search-output-box {
    margin: 20px auto 0;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 25px;
    text-align: left;
    color: #fff;
    position: relative;
    z-index: 3;
    display: none;
    animation: fadeInUp 0.5s ease;
    
    /* FIX: Limits height and enables scrolling */
    max-height: 380px;
    overflow-y: auto;
}
/* Custom Scrollbar for the box */
.search-output-box::-webkit-scrollbar { width: 6px; }
.search-output-box::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.search-output-box::-webkit-scrollbar-thumb { background: #F9D03F; border-radius: 10px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.output-content h4 { font-size: 1.2rem; margin-bottom: 15px; color: #F9D03F; }

.estimate-grid { display: flex; gap: 15px; margin-bottom: 15px; }
.est-item { flex: 1; background: rgba(255,255,255,0.05); padding: 12px; border-radius: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.est-label { display: block; font-size: 0.7rem; color: #aaa; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.est-value { font-size: 1.5rem; font-weight: 700; color: #fff; }

.est-tips { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; margin-top: 15px; }
.est-tips ul { margin: 10px 0 0 20px; list-style: none; padding: 0; }
.est-tips ul li { color: #ddd; line-height: 1.5; position: relative; padding-left: 15px; margin-bottom: 5px; font-size: 0.9rem; }
.est-tips ul li::before { content: '•'; color: #F9D03F; position: absolute; left: 0; font-weight: bold; }

.quote-preview-btn {
    display: inline-block; margin-top: 20px; padding: 12px 28px;
    background: linear-gradient(135deg, #292C7B, #3BACB6);
    color: #fff; font-size: 0.9rem; font-weight: 700; text-decoration: none;
    border-radius: 60px; border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(41,44,123,0.25);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}
.quote-preview-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(41,44,123,0.35);
    background: linear-gradient(135deg, #3BACB6, #292C7B);
}

@media (max-width: 600px) {
    .search-output-box { 
        padding: 15px; max-width: 100%; 
        max-height: 300px; /* Smaller height on mobile */
    }
    .estimate-grid { flex-direction: column; gap: 10px; }
    .est-value { font-size: 1.2rem; }
    .quote-preview-btn { width: 100%; text-align: center; padding: 14px 20px; }
}

/* === MOBILE FIX FOR FAQ PILLS (No Top Cutting) === */
@media (max-width: 600px) {
    .category-pills {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding: 10px 0 15px 0 !important; /* Added Top Padding to prevent cutting */
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .category-pills::-webkit-scrollbar { display: none; }
    
    .category-pills button {
        font-size: 0.8rem;
        padding: 10px 16px; /* Increased padding for touch targets */
        flex-shrink: 0;
        margin-top: 5px; /* Extra safety margin to push down */
    }
}

/* --- PRIVACY POLICY PAGE: HERO --- */
#policy-hero { background: #F5F7FA; padding-bottom: 40px; }
.policy-hero-container { max-width: 900px; margin: 0 auto; text-align: center; }
.policy-badge { 
    display: inline-block; 
    background: #292C7B; 
    color: #fff; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 0.7rem; 
    font-weight: 700; 
    letter-spacing: 1px; 
    margin-bottom: 20px; 
}
.policy-title { 
    font-family: var(--font-head); 
    font-size: clamp(3.5rem, 6vw, 5.5rem); 
    color: #303841; 
    letter-spacing: -2px; 
    line-height: 1; 
    margin-bottom: 20px; 
}
.policy-divider { 
    width: 60px; 
    height: 3px; 
    background: #292C7B; 
    margin: 0 auto 20px; 
    border-radius: 10px; 
}
.policy-date { font-size: 0.9rem; color: #888; margin-bottom: 15px; }
.policy-sub { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* --- PRIVACY POLICY PAGE: TABLE OF CONTENTS --- */
#policy-toc { padding-top: 20px; padding-bottom: 60px; }
.policy-toc-container { max-width: 900px; margin: 0 auto; }
.policy-toc-container h3 { 
    font-family: var(--font-head); 
    font-size: 1.5rem; 
    color: #303841; 
    margin-bottom: 30px; 
    text-align: center; 
}
.toc-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
}
.toc-item { 
    background: #ffffff; 
    padding: 15px 20px; 
    border-radius: 12px; 
    text-decoration: none; 
    color: #303841; 
    font-weight: 500; 
    font-size: 0.9rem; 
    border: 1px solid #eee; 
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); 
    text-align: center; 
}
.toc-item:hover { 
    background: #292C7B; 
    color: #fff; 
    border-color: #292C7B; 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(41,44,123,0.1); 
}

/* --- PRIVACY POLICY PAGE: CONTENT --- */
#policy-content { background: #ffffff; padding-top: 40px; }
.policy-content-container { max-width: 900px; margin: 0 auto; }
.policy-section { margin-bottom: 40px; }
.policy-section h4 { 
    font-family: var(--font-head); 
    font-size: 1.5rem; 
    color: #303841; 
    margin-bottom: 15px; 
    border-left: 4px solid #292C7B; 
    padding-left: 15px; 
}
.policy-section p { 
    font-size: 1rem; 
    color: #555; 
    line-height: 1.8; 
    margin-bottom: 15px; 
}
.policy-section ul { 
    margin-left: 20px; 
    color: #555; 
    line-height: 1.8; 
}
.policy-section ul li { margin-bottom: 8px; }
.contact-details { margin-top: 20px; padding: 20px; background: #F5F7FA; border-radius: 12px; border: 1px solid #eee; }
.contact-details a { color: #292C7B; text-decoration: none; }

/* --- PRIVACY POLICY PAGE: CTA --- */
#policy-cta { min-height: 70vh; }

/* --- RESPONSIVE (Privacy Policy) --- */
@media (max-width: 1024px) {
    .toc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .toc-grid { grid-template-columns: 1fr; }
    .policy-title { font-size: 2.5rem; }
    .policy-section h4 { font-size: 1.2rem; }
}

/* --- SINGLE POST PAGE: HERO --- */
#single-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.single-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.single-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}
.single-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}
.single-category {
    display: inline-block;
    background: #292C7B;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.single-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}
.single-meta { font-size: 0.95rem; color: #ddd; display: flex; gap: 10px; justify-content: center; }

/* --- SINGLE POST PAGE: CONTENT --- */
#single-content { background: #fafafa; }
.single-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.single-back-btn {
    display: inline-block;
    color: #292C7B;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: 0.3s;
}
.single-back-btn:hover { transform: translateX(-5px); }
.single-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.single-body h1, .single-body h2, .single-body h3 { font-family: var(--font-head); color: #303841; margin-top: 30px; }
.single-body p { margin-bottom: 20px; }
.single-body ul, .single-body ol { margin-left: 20px; margin-bottom: 20px; }

/* --- SINGLE POST PAGE: FOOTER (Share) --- */
.single-footer {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.single-tags { display: flex; align-items: center; gap: 10px; }
.single-tags span:first-child { font-weight: 600; color: #303841; }
.tag-pill { background: #eee; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; color: #555; }
.single-share { display: flex; align-items: center; gap: 15px; }
.single-share span { font-size: 0.9rem; color: #666; }
.share-icons { display: flex; gap: 10px; }
.share-icons a { color: #666; transition: 0.3s; }
.share-icons a:hover { color: #292C7B; transform: scale(1.1); }

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
    #single-hero { height: 50vh; min-height: 300px; }
    .single-title { font-size: 2rem; }
    .single-body { padding: 20px; font-size: 1rem; }
    .single-footer { flex-direction: column; align-items: flex-start; }
}