/* assets/css/main.css — Promptua — Complete stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #F8FAFC; --white: #ffffff; --dark-navy: #0F172A; --muted: #64748B;
  --border: #E2E8F0; --primary: #3066FF; --primary-dark: #2554D7;
  --primary-glow: rgba(48,102,255,0.25); --accent: #00D1B2;
  --error: #EF4444; --success: #10B981;
  --radius: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.05);
  --shadow-lg: 0 25px 50px -12px rgba(48,102,255,0.15);
  --font-head: 'Poppins', sans-serif; --font-body: 'Inter', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg); color: var(--dark-navy);
  line-height: 1.6; overflow-x: hidden;
  background-image: radial-gradient(ellipse 80% 50% at 0% 0%,rgba(48,102,255,0.07) 0%,transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 100%,rgba(0,209,178,0.06) 0%,transparent 60%);
  background-attachment: fixed; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input,textarea,select { font-family: var(--font-body); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--dark-navy); }
h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem,2vw,1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

.text-gradient { background: linear-gradient(135deg,var(--primary) 0%,#7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px,8vw,100px) 0; }
.section-alt { background: #F1F5F9; }
.section-heading { text-align: center; margin-bottom: 16px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { max-width: 560px; margin: 0 auto; }
.muted { color: var(--muted); } .text-center { text-align: center; }
.small-note { font-size: 0.85rem; color: var(--muted); }
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(400px,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100;
  background: rgba(248,250,252,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition); }
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: rgba(248,250,252,0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-text { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--primary); letter-spacing: -0.5px; }
.brand-dot { color: var(--accent); }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a { position: relative; padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  color: var(--dark-navy); text-decoration: none; border-radius: 8px;
  transition: color var(--transition); }
.desktop-nav a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--primary); border-radius: 2px; width: 0; transition: width var(--transition); }
.desktop-nav a:hover { color: var(--primary); text-decoration: none; }
.desktop-nav a:hover::after,.desktop-nav a.active::after { width: calc(100% - 28px); }
.desktop-nav a.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; justify-content: center;
  width: 40px; height: 40px; padding: 8px; border: 1px solid var(--border);
  border-radius: 8px; gap: 5px; transition: background var(--transition); }
.hamburger:hover { background: var(--bg); }
.hamburger span { display: block; height: 2px; background: var(--dark-navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.6); z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px,85vw);
  background: var(--white); z-index: 201; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
  padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-panel.open { transform: translateX(0); }
.mobile-menu-close { align-self: flex-end; font-size: 1.5rem; color: var(--muted); padding: 4px; line-height: 1; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.mobile-nav a { display: block; padding: 14px 16px; font-size: 1rem; font-weight: 500;
  color: var(--dark-navy); border-radius: 10px; text-decoration: none; transition: background var(--transition), color var(--transition); }
.mobile-nav a:hover { background: var(--bg); color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
  border: 2px solid transparent; text-decoration: none; transition: all var(--transition);
  white-space: nowrap; cursor: pointer; }
.btn.primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px var(--primary-glow); }
.btn.primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow); text-decoration: none; color: var(--white); }
.btn.outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn.outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--dark-navy); border-color: var(--border); }
.btn.ghost:hover { background: var(--bg); }
.btn.accent { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(0,209,178,0.3); }
.btn.accent:hover { background: #00b89c; transform: translateY(-2px); color: var(--white); text-decoration: none; }
.btn.sm { padding: 9px 20px; font-size: 0.875rem; }
.btn.lg { padding: 16px 36px; font-size: 1rem; }
.btn.full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; pointer-events: none; }
@keyframes pulse-glow { 0%,100%{box-shadow:0 4px 20px var(--primary-glow);}50%{box-shadow:0 4px 40px rgba(48,102,255,0.5);} }
.btn.pulse { animation: pulse-glow 2s ease-in-out infinite; }

/* CARDS */
.card-modern { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 28px; transition: transform var(--transition), box-shadow var(--transition); }
.card-modern:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.demo-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition); }
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero { position: relative; padding: clamp(80px,12vw,130px) 0 clamp(60px,8vw,100px); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(48,102,255,0.12) 0%,transparent 70%);
  filter: blur(60px); pointer-events: none; animation: blob-drift 8s ease-in-out infinite alternate; }
.hero::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle,rgba(0,209,178,0.1) 0%,transparent 70%);
  filter: blur(60px); pointer-events: none; animation: blob-drift 10s ease-in-out infinite alternate-reverse; }
@keyframes blob-drift { from{transform:translate(0,0) scale(1);} to{transform:translate(30px,20px) scale(1.05);} }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 600px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  background: linear-gradient(135deg,rgba(48,102,255,0.08),rgba(0,209,178,0.08));
  border: 1px solid rgba(48,102,255,0.2); border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; }
.kicker::before { content: '●'; font-size: 0.6rem; color: var(--accent); animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0.3;} }
.hero-title { margin-bottom: 20px; letter-spacing: -1px; }
.lead { font-size: clamp(1rem,1.5vw,1.125rem); color: var(--muted); margin-bottom: 32px; line-height: 1.8; }
.ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-features { display: flex; flex-direction: column; gap: 12px; }
.hero-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: var(--dark-navy); }
.feat-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  background: rgba(48,102,255,0.08); border-radius: 8px; font-size: 1rem; flex-shrink: 0; }
.hero-visual { display: flex; align-items: center; justify-content: center; perspective: 1000px; transition: transform 0.1s ease; }
.hero-svg-wrapper { width: 100%; max-width: 480px; }

/* MARQUEE */
.marquee-section { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--white); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; font-size: 0.875rem; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.marquee-item::after { content: '·'; font-size: 1.2rem; color: var(--border); }
@keyframes marquee-scroll { from{transform:translateX(0);}to{transform:translateX(-50%);} }

/* SERVICES */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; gap: 12px; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(48,102,255,0.2); }
.service-icon { font-size: 2rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,rgba(48,102,255,0.08),rgba(0,209,178,0.06)); border-radius: 12px; }
.service-card p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.learn-more { font-size: 0.875rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-card:hover .learn-more { gap: 8px; }

/* HOW IT WORKS */
.how-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 0; margin-top: 48px; }
.how-step { position: relative; padding: 32px 24px; text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  background: var(--primary); color: var(--white); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  border-radius: 50%; margin: 0 auto 16px; box-shadow: 0 4px 16px var(--primary-glow); }
.how-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.how-step p { font-size: 0.875rem; }

/* TESTIMONIALS */
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-size: 5rem;
  font-family: Georgia,serif; color: rgba(48,102,255,0.08); line-height: 1; }
.testimonial-body { font-size: 0.95rem; color: var(--dark-navy); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.author-name { font-size: 0.875rem; font-weight: 600; color: var(--dark-navy); }
.author-role { font-size: 0.8rem; color: var(--muted); }
.stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 12px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; margin-top: 48px; }
.plan { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.featured { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary),var(--shadow-lg); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.plan-name { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); }
.plan-price { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; color: var(--dark-navy); line-height: 1; }
.plan-price span { font-size: 1rem; color: var(--muted); font-weight: 400; }
.plan-desc { font-size: 0.875rem; color: var(--muted); }
.plan-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--dark-navy); }
.plan-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.plan-features li.cross { color: var(--muted); }
.plan-features li.cross::before { content: '—'; color: var(--border); }
.payment-model-box { background: linear-gradient(135deg,rgba(48,102,255,0.05),rgba(0,209,178,0.05));
  border: 1px solid rgba(48,102,255,0.15); border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: center; gap: 20px; margin-bottom: 48px; }
.pmb-icon { font-size: 2rem; flex-shrink: 0; }
.pmb-content h3 { font-size: 1.05rem; margin-bottom: 6px; }
.pmb-content p { font-size: 0.9rem; }

/* FAQ */
.faq-wrapper { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 20px 24px; font-weight: 600; font-size: 0.95rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; list-style: none; color: var(--dark-navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-item .faq-body { padding: 0 24px 20px; }
.faq-item .faq-body p { font-size: 0.9rem; }

/* CONTACT */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-form-col { padding: 48px; }
.contact-info-col { background: var(--dark-navy); padding: 48px; display: flex; flex-direction: column; gap: 24px; }
.contact-info-col h3 { color: var(--white); font-size: 1.4rem; }
.contact-info-col p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin: 0; }
.contact-info-item a { color: rgba(255,255,255,0.85); }
.contact-info-item a:hover { color: var(--white); }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark-navy); margin-bottom: 6px; }
.req { color: var(--error); margin-left: 3px; }
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],input[type="number"],textarea,select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; color: var(--dark-navy); background: var(--bg); transition: border-color var(--transition), box-shadow var(--transition); appearance: none; }
input:focus,textarea:focus,select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); background: var(--white); }
input.error,textarea.error,select.error { border-color: var(--error); }
.field-error { display: block; font-size: 0.8rem; color: var(--error); margin-top: 4px; }
textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alert { padding: 14px 18px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; margin-bottom: 20px; }
.alert.success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #065f46; }
.alert.error { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #991b1b; }
.alert.info { background: rgba(48,102,255,0.08); border: 1px solid rgba(48,102,255,0.2); color: #1e40af; }

/* BADGES */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; line-height: 1.5; }
.badge-pending_intake{background:#F1F5F9;color:#64748B}
.badge-advance_pending{background:#FEF9C3;color:#854D0E}
.badge-advance_paid{background:#EFF6FF;color:#1D4ED8}
.badge-in_progress{background:#F3E8FF;color:#7C3AED}
.badge-final_pending{background:#FFF7ED;color:#C2410C}
.badge-final_paid{background:#ECFDF5;color:#065F46}
.badge-delivered{background:#ECFDF5;color:#065F46}
.badge-failed{background:#FEF2F2;color:#991B1B}
.badge-refunded{background:#F1F5F9;color:#64748B}
.badge-primary{background:rgba(48,102,255,0.1);color:var(--primary)}

/* FOOTER */
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.875rem; margin: 12px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--muted); transition: all var(--transition); text-decoration: none; }
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; color: var(--dark-navy); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.footer-bottom a { color: var(--muted); font-size: 0.8rem; }

/* CUSTOMER PORTAL */
.login-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: clamp(32px,5vw,56px); width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); }
.dash-layout { display: flex; flex-direction: column; min-height: 100vh; background: var(--bg); }
.dash-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 24px;
  height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.dash-grid { display: grid; grid-template-columns: 300px 1fr 280px; gap: 24px; padding: 24px; max-width: 1400px; margin: 0 auto; width: 100%; }
.panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.panel-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.track-steps { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 20px; }
.track-steps::before { content: ''; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px; background: var(--border); }
.track-step { position: relative; padding: 8px 0 8px 20px; font-size: 0.875rem; }
.track-step::before { content: ''; position: absolute; left: -13px; top: 13px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--border); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--border); }
.track-step.completed::before { background: var(--success); box-shadow: 0 0 0 2px var(--success); }
.track-step.active::before { background: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.step-label { display: block; font-weight: 500; color: var(--dark-navy); }
.step-sub { display: block; font-size: 0.78rem; color: var(--muted); }
.track-step.completed .step-label { color: var(--success); font-weight: 600; }
.track-step.active .step-label { color: var(--primary); font-weight: 600; }
.chat-window { display: flex; flex-direction: column; height: 500px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.msg-bubble { max-width: 75%; padding: 10px 14px; border-radius: 14px; font-size: 0.875rem; line-height: 1.5; }
.msg-customer { background: var(--primary); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-admin { background: var(--white); color: var(--dark-navy); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-system { background: rgba(48,102,255,0.06); color: var(--muted); align-self: center; font-size: 0.78rem; border-radius: 50px; padding: 4px 14px; }
.msg-meta { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-top: 4px; display: block; }
.msg-admin .msg-meta { color: var(--muted); }
.chat-input-area { padding: 12px; border-top: 1px solid var(--border); background: var(--white); display: flex; gap: 8px; }
.chat-input-area input { flex: 1; border-radius: 50px; padding: 10px 16px; }
.timeline-feed { display: flex; flex-direction: column; gap: 16px; }
.timeline-item { display: flex; gap: 12px; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 6px; }
.timeline-content h5 { font-size: 0.875rem; font-weight: 600; margin-bottom: 2px; }
.timeline-content p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.timeline-content time { font-size: 0.75rem; color: var(--muted); }
.addon-card { border: 1px solid var(--border); border-radius: 10px; padding: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.addon-card h5 { font-size: 0.875rem; margin-bottom: 2px; }
.addon-card p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.addon-price { font-family: var(--font-head); font-weight: 700; color: var(--primary); white-space: nowrap; }

/* CHECKOUT */
.checkout-wrapper { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; padding: 48px 0; }
.checkout-sidebar { position: sticky; top: 80px; }
.order-summary-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-md); }
.split-visual { display: flex; gap: 8px; margin: 16px 0; }
.split-half { flex: 1; padding: 12px; border-radius: 8px; text-align: center; }
.split-half:first-child { background: rgba(48,102,255,0.08); }
.split-half:last-child { background: rgba(16,185,129,0.08); }
.split-half .amount { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--dark-navy); }
.split-half .label { font-size: 0.75rem; color: var(--muted); }
.progress-steps { display: flex; justify-content: space-between; margin-bottom: 40px; position: relative; }
.progress-steps::before { content: ''; position: absolute; top: 14px; left: 0; right: 0; height: 2px; background: var(--border); z-index: 0; }
.prog-step { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; }
.prog-num { width: 28px; height: 28px; border-radius: 50%; background: var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.prog-step.active .prog-num { background: var(--primary); color: var(--white); }
.prog-step.done .prog-num { background: var(--success); color: var(--white); }
.prog-label { font-size: 0.7rem; color: var(--muted); white-space: nowrap; }
.prog-step.active .prog-label { color: var(--primary); font-weight: 600; }

/* MISC */
.integration-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.integration-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--white);
  border: 1px solid var(--border); border-radius: 50px; font-size: 0.8rem; font-weight: 500; color: var(--dark-navy); box-shadow: var(--shadow-sm); }
.success-wrapper { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.success-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: clamp(40px,6vw,64px); max-width: 560px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); }
.success-icon { width: 72px; height: 72px; background: rgba(16,185,129,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 24px; }
.success-info-list { text-align: left; margin: 20px 0 28px; }
.success-info-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.success-info-list li:last-child { border-bottom: none; }
.success-info-list .key { color: var(--muted); } .success-info-list .value { font-weight: 600; }
.page-hero { padding: clamp(48px,8vw,90px) 0 clamp(32px,5vw,64px); text-align: center; }
.page-hero .kicker { margin: 0 auto 20px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 600px; margin: 0 auto 32px; }
.service-detail-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-detail-inner { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; }
.feature-list li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.service-meta-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); position: sticky; top: 84px; display: flex; flex-direction: column; gap: 16px; }
.meta-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.meta-row:last-of-type { border-bottom: none; }
.meta-row .meta-key { color: var(--muted); } .meta-row .meta-val { font-weight: 600; }
.legal-wrapper { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-wrapper h1 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 8px; }
.legal-wrapper .updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 40px; }
.legal-wrapper h2 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal-wrapper p,.legal-wrapper li { font-size: 0.95rem; color: var(--muted); margin-bottom: 12px; }
.legal-wrapper ul { list-style: disc; padding-left: 20px; }
.receipt-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); max-width: 640px; margin: 48px auto; }
.receipt-header { text-align: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.receipt-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--bg); font-size: 0.9rem; }
.receipt-row .rk { color: var(--muted); } .receipt-row .rv { font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .dash-grid { grid-template-columns: 260px 1fr; }
  .dash-grid > aside:last-child { display: none; }
}
@media (max-width: 900px) {
  .desktop-nav,.header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-info-col { display: none; }
  .checkout-wrapper { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; order: -1; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-meta-card { position: static; }
  .dash-grid { grid-template-columns: 1fr; padding: 16px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .grid-2,.grid-3,.grid-4,.pricing-grid,.form-row { grid-template-columns: 1fr; }
  .ctas { flex-direction: column; }
  .ctas .btn { width: 100%; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .payment-model-box { flex-direction: column; gap: 12px; }
  .chat-window { height: 380px; }
  .progress-steps .prog-label { display: none; }
}
