/* Appzur — shared design system for industry/vertical pages */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --accent: #22d3ee; --accent-2: #06b6d4; --purple: #a78bfa; --green: #25D366; --bg: #0a0a0a; --surface: #111; --border: rgba(255,255,255,0.08); --muted: rgba(255,255,255,0.55); }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: #fff; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

header { position: sticky; top: 0; z-index: 100; padding: 16px 0; background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: #fff; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { padding: 10px 22px; border-radius: 999px; background: var(--accent); color: #000 !important; font-weight: 700; font-size: 14px; transition: background 0.2s, transform 0.2s; }
.nav-cta:hover { filter: brightness(0.92); transform: translateY(-1px); }

.hero { padding: 80px 0 60px; position: relative; overflow: hidden; background: radial-gradient(circle at 18% 8%, rgba(167,139,250,0.16), transparent 42%), radial-gradient(circle at 82% 65%, rgba(34,211,238,0.16), transparent 42%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-content { animation: fadeUp 0.8s ease-out; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.3); color: var(--accent); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-badge::before { content: "●"; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(34px, 4.8vw, 58px); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero h1 .grad { background: linear-gradient(135deg, var(--accent), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: clamp(15px, 1.5vw, 18px); color: var(--muted); margin-bottom: 30px; max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.btn-primary { padding: 16px 30px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #000; font-weight: 700; font-size: 15px; cursor: pointer; border: none; font-family: inherit; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 30px rgba(34,211,238,0.3); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(34,211,238,0.45); }
.btn-secondary { padding: 16px 26px; border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-weight: 600; font-size: 15px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-family: inherit; transition: background 0.2s, border-color 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.btn-wa { background: var(--green); color: #fff; border: none; } .btn-wa:hover { background: #1da851; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat .v { font-size: 26px; font-weight: 800; color: var(--accent); }
.hero-stat .l { font-size: 13px; color: var(--muted); }

/* ===== PREMIUM HERO VISUAL — glossy phone + floating glass cards ===== */
.chat-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 640px; perspective: 1700px; }
.chat-stage::before { content: ""; position: absolute; width: 540px; height: 540px; background: radial-gradient(circle, rgba(34,211,238,0.22), rgba(167,139,250,0.10) 45%, transparent 65%); filter: blur(55px); z-index: 0; animation: glowPulse 7s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: 0.65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.phone { position: relative; z-index: 3; width: 288px; height: 590px; border-radius: 48px; padding: 13px; background: linear-gradient(150deg, #41414a 0%, #18181c 46%, #0b0b0e 100%); box-shadow: 0 50px 110px rgba(0,0,0,0.72), 0 0 0 1px rgba(255,255,255,0.07), inset 0 2px 3px rgba(255,255,255,0.22), inset 0 -3px 8px rgba(0,0,0,0.7); transform: rotateY(-10deg) rotateX(3deg); animation: floatPhone 7s ease-in-out infinite; }
@keyframes floatPhone { 0%,100% { transform: rotateY(-10deg) rotateX(3deg) translateY(0); } 50% { transform: rotateY(-10deg) rotateX(3deg) translateY(-18px); } }
.phone-inner { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #0b141a; }
.phone-inner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,0.13), transparent 36%); pointer-events: none; z-index: 6; }
.phone-notch { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 86px; height: 24px; background: #000; border-radius: 0 0 16px 16px; z-index: 8; }

.wa-header { background: linear-gradient(180deg, #233138, #1f2c33); padding: 26px 16px 12px; display: flex; align-items: center; gap: 12px; }
.wa-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.wa-name { font-size: 14px; font-weight: 700; color: #fff; }
.wa-status { font-size: 11px; color: #25D366; }
.wa-body { padding: 16px 12px; height: calc(100% - 78px); overflow: hidden; background-color: #0b141a; background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.wa-bubble { max-width: 82%; padding: 9px 13px; border-radius: 12px; font-size: 13px; line-height: 1.45; box-shadow: 0 1px 2px rgba(0,0,0,0.25); animation: bubbleIn 0.5s ease-out backwards; }
.wa-in { align-self: flex-start; background: #1f2c33; color: #e9edef; border-top-left-radius: 3px; }
.wa-out { align-self: flex-end; background: #056452; color: #e9edef; border-top-right-radius: 3px; }
.wa-bubble .t { display: block; font-size: 9px; color: rgba(233,237,239,0.5); text-align: right; margin-top: 3px; }
.wa-bubble:nth-child(1) { animation-delay: 0.3s; } .wa-bubble:nth-child(2) { animation-delay: 0.9s; } .wa-bubble:nth-child(3) { animation-delay: 1.6s; } .wa-bubble:nth-child(4) { animation-delay: 2.3s; } .wa-bubble:nth-child(5) { animation-delay: 3.0s; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wa-hl, .wa-rate { font-weight: 700; color: #6ee7ff; }

/* floating glassmorphism cards */
.float-card { position: absolute; z-index: 5; background: rgba(18,20,28,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.13); border-radius: 15px; padding: 12px 15px; box-shadow: 0 18px 44px rgba(0,0,0,0.45); display: flex; align-items: center; gap: 11px; animation: floatCard 5.5s ease-in-out infinite; }
.float-card .fc-ic { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .fc-ic svg { width: 19px; height: 19px; stroke-width: 2.2; }
.float-card .fc-t { font-size: 12.5px; font-weight: 700; color: #fff; white-space: nowrap; line-height: 1.2; }
.float-card .fc-s { font-size: 10px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.fc-a { top: 6%; left: -8%; animation-delay: 0s; }
.fc-b { top: 40%; right: -12%; animation-delay: 1.4s; }
.fc-c { bottom: 7%; left: -4%; animation-delay: 2.6s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
.fc-ic.ic-green { background: rgba(37,211,102,0.16); color: #25D366; }
.fc-ic.ic-accent { background: rgba(34,211,238,0.16); color: var(--accent); }
.fc-ic.ic-purple { background: rgba(167,139,250,0.16); color: var(--purple); }
.fc-ic svg { stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 1100px) { .fc-a { left: -2%; } .fc-b { right: -4%; } .fc-c { left: 0; } }
@media (max-width: 600px) { .float-card { display: none; } }

.sec { padding: 88px 0; border-top: 1px solid var(--border); }
.sec-eyebrow { color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; text-align: center; }
.sec-title { text-align: center; font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.sec-sub { text-align: center; color: var(--muted); font-size: clamp(15px, 1.4vw, 17px); max-width: 720px; margin: 0 auto 52px; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: transform 0.3s, border-color 0.3s; }
.feat:hover { transform: translateY(-4px); border-color: rgba(34,211,238,0.4); }
.feat .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(34,211,238,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat .ic svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feat p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.workflow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.workflow-step { background: var(--surface); padding: 24px; border-radius: 12px; border: 1px solid var(--border); }
.workflow-step .step-num { display: inline-block; width: 32px; height: 32px; line-height: 32px; text-align: center; background: rgba(34,211,238,0.14); color: var(--accent); border-radius: 50%; font-weight: 700; margin-bottom: 12px; }
.workflow-step h4 { color: #fff; font-size: 17px; margin-bottom: 8px; } .workflow-step p { color: var(--muted); font-size: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.two-col .col { background: var(--surface); padding: 28px; border-radius: 12px; border: 1px solid var(--border); }
.two-col h3 { color: var(--accent); font-size: 19px; margin-bottom: 14px; }
.two-col ul { list-style: none; padding: 0; }
.two-col ul li { padding: 8px 0; padding-left: 22px; position: relative; color: rgba(255,255,255,0.75); font-size: 14.5px; }
.two-col ul li::before { content: "→"; color: var(--accent); position: absolute; left: 0; }
.vertical-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.vertical-tag { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; }
.vertical-tag h4 { color: var(--accent); font-size: 16px; margin-bottom: 6px; } .vertical-tag p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 26px; margin-bottom: 14px; transition: border-color 0.2s; }
.faq-item:hover { border-color: rgba(34,211,238,0.3); }
.faq-item h3 { color: #fff; font-size: 17px; margin-bottom: 10px; } .faq-item p { color: rgba(255,255,255,0.68); font-size: 14.5px; line-height: 1.7; }

.pricing-wrap { max-width: 440px; margin: 0 auto; }
.price-card { background: linear-gradient(180deg, rgba(34,211,238,0.06), transparent 60%), var(--surface); border: 2px solid var(--accent); border-radius: 20px; padding: 40px 32px; text-align: center; }
.price-card .price { font-size: 48px; font-weight: 800; color: var(--accent); line-height: 1; }
.price-card .price span { font-size: 16px; color: var(--muted); }
.price-card .note { color: var(--muted); margin: 12px 0 24px; font-size: 13px; }
.features-list { list-style: none; text-align: left; margin: 0 0 26px; }
.features-list li { padding: 9px 0; padding-left: 26px; position: relative; color: rgba(255,255,255,0.78); font-size: 14.5px; }
.features-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.price-card .btn-primary { width: 100%; justify-content: center; }

.final-cta { margin: 80px auto 60px; max-width: 1100px; background: radial-gradient(circle at 20% 0%, rgba(167,139,250,0.2), transparent 50%), radial-gradient(circle at 80% 100%, rgba(34,211,238,0.18), transparent 50%), linear-gradient(135deg, #0f1729, #1a0f29); border: 1px solid rgba(34,211,238,0.2); border-radius: 24px; padding: 60px 40px; text-align: center; }
.final-cta h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.final-cta .grad2 { background: linear-gradient(135deg, var(--accent), var(--purple)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-cta .sub { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.final-cta .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== QUICK LINKS (sitewide internal-link mesh) ===== */
.quick-links { padding: 56px 0 36px; border-top: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.quick-links h2 { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase; }
.ql-row { margin-bottom: 18px; line-height: 2; font-size: 13px; color: rgba(255,255,255,0.35); }
.ql-row .ql-cat { display: inline-block; min-width: 132px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-right: 10px; vertical-align: top; }
.ql-row a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; padding: 0 2px; }
.ql-row a:hover { color: var(--accent); }
@media (max-width: 700px) {
  .ql-row .ql-cat { display: block; min-width: 0; margin-bottom: 4px; }
  .ql-row { line-height: 1.9; }
}

footer { padding: 40px 0; border-top: 1px solid var(--border); text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; }
footer a { color: var(--accent); }

.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 100; width: 56px; height: 56px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,0.5); transition: transform 0.2s; }
.float-wa:hover { transform: scale(1.06); } .float-wa svg { width: 28px; height: 28px; fill: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .feat-grid { grid-template-columns: repeat(2, 1fr); } .two-col { grid-template-columns: 1fr; } .nav-links { display: none; } .phone { transform: none !important; } @keyframes floatPhone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } .sec { padding: 60px 0; } .final-cta { padding: 40px 24px; } .phone { width: 270px; height: 548px; } .chat-stage { min-height: 500px; } }
