@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --red:        #C0392B;
  --red-dark:   #96281B;
  --red-light:  #E74C3C;
  --white:      #FFFFFF;
  --off-white:  #FAF8F8;
  --light-gray: #F2EDED;
  --text-dark:  #1C1C1C;
  --text-mid:   #444444;
  --shadow:     0 6px 32px rgba(192,57,43,0.13);
}
*, *::before, *::after { cursor: none !important; }

#chat-widget input,
#chat-widget button,
#chat-widget * {
  cursor: auto !important;
  pointer-events: auto !important;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; max-width: 100vw; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--text-dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); border-top: 3px solid var(--red); z-index: 99; box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform 0.28s ease, opacity 0.28s ease; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; padding: 12px 0 20px; }
.mobile-menu ul li a { display: block; padding: 16px 6%; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; color: var(--text-dark); border-bottom: 1px solid var(--light-gray); transition: color 0.2s, background 0.2s; }
.mobile-menu ul li:last-child a { margin: 16px 6% 0; display: block; background: var(--red); color: white; border-radius: 4px; border-bottom: none; text-align: center; padding: 14px; }
.mobile-menu ul li a:hover { color: var(--red); background: var(--off-white); }
.mobile-menu ul li:last-child a:hover { background: var(--red-dark); color: white; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 80px; background: var(--white); border-bottom: 3px solid var(--red); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 100%; }
.nav-logo img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 10px 24px; border-radius: 4px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--red-dark); color: var(--white) !important; }

/* HERO */
#hero { min-height: 100vh; display: flex; align-items: center; background: var(--red); padding: 120px 6% 80px; position: relative; overflow: hidden; }
.hero-bg-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 80px); pointer-events: none; }
.hero-content { max-width: 680px; position: relative; z-index: 2; animation: fadeUp 0.9s ease both; }

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  display: block;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-content h1 span { display: block; font-style: italic; }

.hero-content > p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px;
  max-width: 540px;
}

.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

.btn-primary { display: inline-block; padding: 16px 38px; background: var(--white); color: var(--red); font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.btn-outline { display: inline-block; padding: 16px 38px; border: 2px solid rgba(255,255,255,0.7); color: var(--white); font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: background 0.2s, border-color 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.hero-stats { position: absolute; right: 6%; bottom: 10%; display: flex; flex-direction: column; gap: 28px; z-index: 2; }
.stat-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(6px); border-radius: 10px; padding: 22px 30px; text-align: center; color: var(--white); animation: fadeUp 1.1s ease both; }
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; line-height: 1; display: block; margin-bottom: 8px; }
.stat-card .label { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.75; display: block; }

/* ABOUT */
#about { padding: 120px 6%; background: var(--off-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; overflow: hidden; }

.about-text .section-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-bottom: 18px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--text-dark);
  display: block;
}

.about-text p { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 20px; display: block; }
.about-highlights { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.highlight-item { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 0.97rem; color: var(--text-dark); }
.highlight-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* SERVICES */
#services { padding: 120px 6%; background: var(--white); }

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

.section-header .section-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--text-dark);
  margin-bottom: 18px;
  display: block;
  line-height: 1.2;
}

.section-header p { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; line-height: 1.8; display: block; }

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

.service-card { background: var(--off-white); border-radius: 12px; padding: 40px 34px; border-top: 4px solid var(--red); transition: transform 0.25s, box-shadow 0.25s; position: relative; transform-style: preserve-3d; will-change: transform; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 60%); transform: translateX(-100%) skewX(-15deg); transition: none; pointer-events: none; border-radius: inherit; }
.service-card.shimmer-go::after { transform: translateX(200%) skewX(-15deg); transition: transform 0.55s ease; }

.service-icon { width: 54px; height: 54px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; flex-shrink: 0; }
.service-icon svg { width: 28px; height: 28px; fill: white; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--text-dark);
  display: block;
}

.service-card p { font-size: 0.97rem; line-height: 1.8; color: var(--text-mid); display: block; }

/* INDUSTRIES */
#industries { padding: 120px 6%; background: var(--red); position: relative; overflow: hidden; }
#industries::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 100px); }
#industries .section-header .section-tag { color: rgba(255,255,255,0.8); }
#industries .section-header h2 { color: white; }
#industries .section-header p { color: rgba(255,255,255,0.85); }

.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }

.industry-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 40px 28px; color: white; text-align: center; transition: background 0.25s, transform 0.25s; }
.industry-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }

.industry-card .emoji { font-size: 2.8rem; margin-bottom: 18px; display: block; }

.industry-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}

.industry-card p { font-size: 0.93rem; opacity: 0.85; line-height: 1.7; display: block; }

/* PRICING */
#pricing { padding: 120px 6%; background: var(--off-white); text-align: center; }

.pricing-card { display: inline-block; background: var(--white); border-radius: 16px; padding: 60px 70px; box-shadow: var(--shadow); max-width: 560px; width: 100%; }

.pricing-card .price { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: var(--red); line-height: 1; display: block; margin-bottom: 12px; }
.pricing-card .price sup { font-size: 2rem; vertical-align: super; }

.pricing-card .price-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 28px;
  display: block;
}

.pricing-card .price-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; display: block; }

.pricing-features { list-style: none; text-align: left; margin-bottom: 40px; display: flex; flex-direction: column; gap: 16px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 0.97rem; color: var(--text-dark); font-weight: 600; }
.pricing-features li::before { content: '✓'; color: var(--red); font-weight: 900; font-size: 1rem; flex-shrink: 0; }

.btn-red { display: inline-block; padding: 16px 44px; background: var(--red); color: white; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: background 0.2s, transform 0.2s; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

/* CONTACT */
#contact { padding: 120px 6%; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; max-width: 1100px; margin: 0 auto; }

.contact-info .section-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-bottom: 18px;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 22px;
  line-height: 1.2;
  display: block;
}

.contact-info > p { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 40px; display: block; }
.contact-methods { display: flex; flex-direction: column; gap: 26px; }
.contact-method { display: flex; align-items: center; gap: 18px; }
.contact-method .icon-box { width: 48px; height: 48px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method .icon-box svg { width: 22px; height: 22px; fill: white; }

.contact-method .method-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.contact-method .method-text a, .contact-method .method-text span { font-size: 1.05rem; color: var(--text-dark); text-decoration: none; font-weight: 600; display: block; }
.contact-method .method-text a:hover { color: var(--red); }

.contact-form { background: var(--off-white); border-radius: 14px; padding: 48px 42px; }

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 32px;
  display: block;
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 2px solid #E0D8D8; border-radius: 6px; font-family: 'Lato', sans-serif; font-size: 1rem; background: white; color: var(--text-dark); transition: border-color 0.2s; outline: none; -webkit-appearance: none; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* FOOTER */
footer { background: var(--text-dark); color: white; padding: 50px 6% 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo-img { height: 54px; width: auto; border-radius: 8px; padding: 6px 12px; background: var(--white); }
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* CURSOR */
*, *::before, *::after { cursor: none !important; }
#jb-cursor { position: fixed; top: 0; left: 0; width: 12px; height: 12px; background: var(--red); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s; mix-blend-mode: multiply; }
#jb-cursor-ring { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1.5px solid var(--red); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%, -50%); transition: width 0.35s cubic-bezier(.23,1,.32,1), height 0.35s cubic-bezier(.23,1,.32,1), border-color 0.2s, opacity 0.3s; opacity: 0.5; }
#jb-cursor.hover { width: 6px; height: 6px; }
#jb-cursor-ring.hover { width: 64px; height: 64px; opacity: 0.25; }
#jb-cursor.click { width: 18px; height: 18px; }

#hero-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.55; }

.char-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.char-inner { display: inline-block; transform: translateY(110%); transition: transform 0.55s cubic-bezier(.22,1,.36,1); }
.char-inner.in { transform: translateY(0); }

.btn-primary, .btn-outline, .btn-red, .nav-cta { position: relative; transition: transform 0.2s cubic-bezier(.23,1,.32,1), box-shadow 0.2s, background 0.2s, border-color 0.2s; }

.industry-card:hover .emoji { animation: emoji-bounce 0.5s cubic-bezier(.36,.07,.19,.97); }
@keyframes emoji-bounce { 0% { transform: scale(1) rotate(0deg); } 30% { transform: scale(1.4) rotate(-8deg); } 60% { transform: scale(0.9) rotate(5deg); } 100% { transform: scale(1) rotate(0deg); } }

.line-wipe { position: relative; display: inline; }
.line-wipe::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 3px; width: 0; background: var(--red); transition: width 0.7s cubic-bezier(.22,1,.36,1); }
.line-wipe.wiped::after { width: 100%; }

.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.08; pointer-events: none; animation: blob-drift 8s ease-in-out infinite alternate; }
@keyframes blob-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, -20px) scale(1.08); } }

#about { position: relative; overflow: hidden; }

#scroll-bar { position: fixed; top: 80px; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--red-light), var(--red-dark)); z-index: 101; transition: width 0.05s linear; }

/* CHAT WIDGET */
#chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; font-family: 'Lato', sans-serif; }

#chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #E74C3C, #96281B); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(192,57,43,0.55); transition: transform 0.2s, box-shadow 0.2s; position: relative; margin-left: auto; }
#chat-toggle:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(192,57,43,0.65); }

#chat-unread-dot { position: absolute; top: 6px; right: 6px; width: 11px; height: 11px; background: #fff; border-radius: 50%; border: 2px solid #C0392B; display: none; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

#chat-panel { position: absolute; bottom: 76px; right: 0; width: 340px; max-height: 520px; background: #fff; border-radius: 18px; box-shadow: 0 20px 80px rgba(0,0,0,0.35); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(16px) scale(0.97); pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; border: 1px solid rgba(0,0,0,0.08); }
#chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

#chat-header { background: linear-gradient(135deg, #C0392B, #96281B); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
#chat-header-left { display: flex; align-items: center; gap: 12px; }

#chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; border: 2px solid rgba(255,255,255,0.4); flex-shrink: 0; line-height: 1; }

#chat-name { color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px; display: block; margin-bottom: 3px; }
#chat-status { color: rgba(255,255,255,0.85); font-size: 0.75rem; display: flex; align-items: center; gap: 5px; }
#chat-status-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; flex-shrink: 0; }

#chat-close-btn { background: rgba(255,255,255,0.15); border: none; cursor: pointer; border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; flex-shrink: 0; }
#chat-close-btn:hover { background: rgba(255,255,255,0.28); }

#chat-messages { flex: 1; overflow-y: auto; padding: 16px 14px 10px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; background: #fff; }
#chat-messages::-webkit-scrollbar { width: 4px; }
#chat-messages::-webkit-scrollbar-thumb { background: #e0d8d8; border-radius: 4px; }

.chat-msg { display: flex; flex-direction: column; max-width: 82%; animation: msg-in 0.2s ease; }
@keyframes msg-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }

.chat-bubble { padding: 10px 14px; border-radius: 16px; font-size: 0.875rem; line-height: 1.55; word-break: break-word; }
.chat-msg.bot .chat-bubble { background: #f0ecec; color: #1C1C1C; border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: linear-gradient(135deg, #E74C3C, #C0392B); color: #fff; border-bottom-right-radius: 4px; }

.typing-bubble { background: #f0ecec; border-radius: 16px; border-bottom-left-radius: 4px; padding: 12px 16px; display: flex; gap: 5px; align-items: center; align-self: flex-start; animation: msg-in 0.2s ease; }
.typing-bubble span { width: 7px; height: 7px; background: #bbb; border-radius: 50%; animation: bounce 1.2s infinite; }
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-5px); } }

#chat-input-area { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-top: 2px solid #f0ebeb; background: #fff; flex-shrink: 0; }

#chat-input { flex: 1; border: 2px solid #ddd5d5; border-radius: 24px; padding: 10px 16px; font-size: 0.9rem; font-family: 'Lato', sans-serif; outline: none; transition: border-color 0.2s; background: #fff; color: #1C1C1C; -webkit-appearance: none; appearance: none; min-width: 0; display: block; }
#chat-input:focus { border-color: #C0392B; }
#chat-input::placeholder { color: #aaa; }

#chat-send { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #E74C3C, #C0392B); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 3px 10px rgba(192,57,43,0.4); }
#chat-send:hover { transform: scale(1.08); }
#chat-send:disabled { opacity: 0.5; }

/* TOUCH / MOBILE */
@media (pointer: coarse) { #jb-cursor, #jb-cursor-ring { display: none; } *, *::before, *::after { cursor: auto !important; } }

@media (max-width: 480px) {
  #chat-widget { bottom: 16px; right: 16px; }
  #chat-panel { width: calc(100vw - 32px); right: 0; bottom: 72px; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  #about, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { position: static; flex-direction: row; margin-top: 50px; }
  #hero { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) { .nav-links { display: none; } .hamburger { display: flex; } .mobile-menu { display: block; } }

@media (max-width: 600px) {
  #hero, #about, #services, #industries, #pricing, #contact, footer { padding-left: 5%; padding-right: 5%; }
  .services-grid, .industries-grid { grid-template-columns: 1fr; gap: 16px; }
  .industry-card, .service-card { width: 100%; box-sizing: border-box; }
  .hero-stats { flex-direction: column; gap: 14px; width: 100%; }
  .stat-card { width: 100%; }
  .pricing-card { padding: 36px 24px; width: 100%; box-sizing: border-box; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { gap: 16px; }
}
