:root {
  --primary: #2563EB;
  --primary-light: #60A5FA;
  --secondary: #0F172A;
  --background: #F8FAFC;
  --surface: #FFFFFF;
  --text: #111827;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top right, #DBEAFE 0%, transparent 35%),
    radial-gradient(circle at bottom left, #E0F2FE 0%, transparent 35%),
    #F8FAFC;
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
section { padding: 120px 8%; }

.section-title {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title span {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.section-title h2 {
  font-size: 48px;
  margin: 16px 0 20px;
}

.section-title p {
  color: var(--text-light);
  max-width: 760px;
  margin: auto;
  line-height: 1.9;
  font-size: 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.navbar {
  width: 90%;
  max-width: 1350px;
  margin: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  gap: 8px;
}

.primary-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.primary-btn.full { width: 100%; }

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 32px;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
  font-family: "Manrope", sans-serif;
  gap: 8px;
}

.secondary-btn:hover { background: rgba(37, 99, 235, 0.08); }

.animate-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.animate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.hero {
  position: relative;
  padding-top: 170px;
  padding-bottom: 90px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #3B82F6;
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(120px);
  top: -140px;
  right: -160px;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #60A5FA;
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(120px);
  bottom: -110px;
  left: -160px;
  z-index: -1;
  animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 70px;
  align-items: center;
  max-width: 1350px;
  margin: auto;
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
}

.hero-title span { font-size: 14px; }
.hero-title h2 { font-size: 52px; }

.hero-checks {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 14px;
}

.hero-checks i {
  color: var(--primary);
  margin-right: 6px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
}

.hero-card {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease;
}

.hero-card:hover { transform: translateY(-6px); }

.hero-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: #2563EB;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.12;
  top: -50px;
  right: -50px;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #F3F4F6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 10px;
  height: 10px;
  background: #D1D5DB;
  border-radius: 50%;
}

.browser-url { font-size: 12px; color: var(--text-light); }

.browser-body {
  position: relative;
  padding: 0;
}

.fake-site { padding: 24px; }

.fake-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fake-logo {
  width: 60px;
  height: 20px;
  background: #D1D5DB;
  border-radius: 4px;
}

.fake-links { display: flex; gap: 10px; }
.fake-links span {
  width: 40px;
  height: 10px;
  background: #E5E7EB;
  border-radius: 2px;
}

.fake-hero {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 24px;
}

.fake-hero-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fake-title {
  width: 70%;
  height: 16px;
  background: #D1D5DB;
  border-radius: 4px;
}

.fake-subtitle {
  width: 90%;
  height: 10px;
  background: #E5E7EB;
  border-radius: 4px;
}

.fake-btn {
  width: 120px;
  height: 32px;
  background: #2563EB;
  border-radius: 8px;
  margin-top: 8px;
}

.chatbot-popup {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.chatbot-popup:hover { transform: translateY(-4px); }

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #F3F4F6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.chatbot-avatar {
  width: 28px;
  height: 28px;
  background: #2563EB;
  border-radius: 8px;
}

.chatbot-name {
  font-size: 13px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

.chatbot-messages {
  padding: 12px;
  max-height: 180px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.msg {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.msg.bot {
  background: #EEF2FF;
  color: var(--text);
  align-self: flex-start;
}

.msg.user {
  background: #2563EB;
  color: #fff;
  align-self: flex-end;
}

.chatbot-input {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.chatbot-input input {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
}

.send-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.send-btn:hover {
  background: #1d4ed8;
  transform: translateX(2px);
}

.analytics-card {
  position: absolute;
  left: 16px;
  top: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px;
  width: 220px;
  transition: transform 0.3s ease;
}

.analytics-card:hover { transform: translateY(-4px); }

.analytics-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.analytics-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF2FF;
  border-radius: 8px;
  font-size: 14px;
  color: var(--primary);
}

.analytics-label { font-size: 11px; color: var(--text-light); }
.analytics-value {
  font-size: 14px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.notification-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 220px;
  transition: transform 0.3s ease;
}

.notification-badge:hover { transform: translateY(-4px); }

.badge-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-title {
  font-size: 12px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

.badge-sub {
  font-size: 11px;
  color: var(--text-light);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  text-align: center;
  padding: 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.stat:hover { transform: translateY(-6px); }

.stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

.card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.services-grid,
.process-grid,
.portfolio-grid,
.pricing-grid,
.testimonials-grid {
  max-width: 1350px;
  margin: auto;
}

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 900px) {
  .services-grid, .process-grid, .portfolio-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .services-grid, .process-grid, .portfolio-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.service-icon {
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--primary);
}

.service-card h3,
.process-step h3,
.portfolio-content h3,
.pricing-name,
.section-title h2,
.author-name,
.founder-content h2 {
  font-family: "Manrope", sans-serif;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p,
.process-step p,
.portfolio-content p,
.testimonial p,
.faq-answer,
.contact-form-wrapper p,
.pricing-note,
.pricing-note-block,
.footer-links a,
.contact-text a,
.contact-label {
  color: var(--text-light);
}

.process-step { position: relative; }

.step-number {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.portfolio-item { display: flex; flex-direction: column; }

.portfolio-thumb {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-thumb { transform: scale(1.02); }

.portfolio-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.portfolio-content p {
  font-size: 14px;
  margin-bottom: 14px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.portfolio-tags span {
  padding: 4px 10px;
  background: #EEF2FF;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.link-arrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: 0.2s;
}

.link-arrow:hover { gap: 10px; }

.featured {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
}

.pricing-name { font-size: 18px; font-weight: 700; }
.pricing-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  font-family: "Manrope", sans-serif;
}

.pricing-note { font-size: 13px; }

.pricing-features { margin: 8px 0 12px; font-size: 14px; }

.pricing-features li {
  margin-bottom: 8px;
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: center;
}

.pricing-features i {
  color: var(--primary);
  font-size: 12px;
}

.pricing-note-block {
  max-width: 800px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
}

.founder-image {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
}

.founder-image img {
  border-radius: 24px;
  transition: transform 0.3s ease;
}

.founder-image:hover img { transform: scale(1.02); }

.founder-quote {
  font-size: 16px;
  color: var(--text);
  margin: 18px 0 22px;
  line-height: 1.7;
}

.founder-socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  transition: 0.2s;
}

.social-link:hover {
  color: #1d4ed8;
  transform: translateY(-2px);
}

.testimonial {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #2563EB;
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  gap: 4px;
}

.testimonial p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  padding: 20px 22px;
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  font-size: 18px;
  color: var(--primary);
}

.contact-label {
  font-size: 13px;
}

.contact-text a {
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  font-family: "Manrope", sans-serif;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  gap: 8px;
}

.contact-form-wrapper {
  padding: 28px;
}

.contact-form-wrapper h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
}

.contact-form-wrapper p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-family: "Manrope", sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-size: 14px;
  background: #fff;
  transition: 0.2s;
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

#submitBtn {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
}

#submitBtn:disabled {
  opacity: 0.78;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

#formSuccessMessage {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #166534;
  border: 1px solid #86efac;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.12);
  animation: fadeInUp 0.25s ease;
}

#formSuccessMessage.error {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #991b1b;
  border-color: #fca5a5;
  box-shadow: 0 10px 25px rgba(153, 27, 27, 0.12);
}

.footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 50px 8%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 28px;
  max-width: 1350px;
  margin: auto;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
}

.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon-box {
  padding: 10px 14px;
  background: #F3F4F6;
  color: var(--text);
  border-radius: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.social-icon-box:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

.mini-chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: none;
  flex-direction: column;
}

.mini-chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #F3F4F6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mini-avatar {
  width: 28px;
  height: 28px;
  background: #2563EB;
  border-radius: 8px;
}

.mini-name {
  font-size: 13px;
  font-weight: 600;
  font-family: "Manrope", sans-serif;
}

.mini-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.mini-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mini-messages {
  padding: 12px;
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-messages .msg {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.mini-messages .msg.bot {
  background: #EEF2FF;
  color: var(--text);
  align-self: flex-start;
}

.mini-messages .msg.user {
  background: #2563EB;
  color: #fff;
  align-self: flex-end;
}

.mini-input {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.mini-input input {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
}

.mini-send {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.mini-send:hover {
  background: #1d4ed8;
  transform: translateX(2px);
}

.chatbot-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  font-family: "Manrope", sans-serif;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.chatbot-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.chatbot-toggle i { font-size: 16px; }

.portfolio-placeholder {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.portfolio-placeholder i { font-size: 48px; opacity: 0.9; }
.portfolio-placeholder div { font-size: 16px; opacity: 0.95; }

.portfolio-placeholder.medical { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.portfolio-placeholder.fashion { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.portfolio-placeholder.dental { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.portfolio-placeholder.realty { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.portfolio-placeholder.restaurant { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}