/* =========================================================
   01. RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f7;
  color: #111827;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   02. GLOBAL CONTAINER
========================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

/* =========================================================
   03. HEADER / NAVBAR
   keep this section for future header updates
========================================================= */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #dbdbdb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  align-items: center;
  gap: 16px;
}

.nav-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-badge {
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 0;
}

.site-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.nav-center a {
  color: rgba(0, 0, 0, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-center a:hover {
  color: #f33838;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.nav-text-link {
  color: #000000;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-text-link:hover,
.nav-text-link:active {
  color: #d34436;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.2s ease;
}

.white-button {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  box-shadow: 0 4px 10px rgba(189, 65, 65, 0.116);
}

.white-button:hover {
  background: #f3f4f6;
  color: #000000;
}

/* =========================================================
   04. GENERIC UI
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.1;
}

.page-shell {
  width: 100%;
  padding-top: 32px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.page-title {
  font-size: 2.3rem;
  font-weight: 900;
  margin: 0 0 8px 0;
}

.page-subtitle {
  margin: 0;
  color: #6b7280;
}

.accent-dot {
  color: #ef4444;
}

.muted {
  color: #6b7280;
}

.top-gap {
  margin-top: 18px;
}

.small-gap {
  margin: -2px 0 10px 0;
}

.card {
  background: #ffffff;
  border: 1px solid #e7e7eb;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.message-success {
  color: #15803d;
  font-weight: 700;
  margin: 0 0 18px 0;
}

.message-error {
  color: #dc2626;
  font-weight: 700;
  margin: 0 0 18px 0;
}

/* =========================================================
   05. BUTTONS
========================================================= */
.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover,
button:hover {
  background: #dc2626;
}

.btn-secondary {
  background: #0b0b0c;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #1c1c20;
}

.btn-danger {
  background: #b91c1c;
  color: #ffffff;
}

.btn-danger:hover {
  background: #991b1b;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   06. FORMS
========================================================= */
form {
  width: 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d9dbe1;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  font-size: 0.95rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #d9dbe1;
  border-radius: 14px;
  background: #ffffff;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================================================
   07. AUTH
========================================================= */
.auth-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 460px;
}

/* =========================================================
   08. HOMEPAGE - SHARED LAYOUT
========================================================= */
.landing {
  width: 100%;
}

.section-block {
  padding: 125px 0;
}

#industries,
#features,
#pricing,
#team {
  scroll-margin-top: 110px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-label {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 4rem;
  line-height: 0.95;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -2px;
  margin: 0 0 16px;
}

.section-heading p {
  color: #6b7280;
  margin: 0 auto;
  max-width: 650px;
  font-size: 1.18rem;
  line-height: 1.65;
}

/* =========================================================
   09. HOMEPAGE - HERO
========================================================= */
.hero {
  padding: 105px 20px 110px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff1f2;
  color: #ef4444;
  border: 1px solid #ffe4e6;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 5.2rem;
  line-height: 0.9;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 26px;
  color: #0f172a;
}

.hero .hero-accent {
  color: #ef4444;
}

.hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.24rem;
  line-height: 1.7;
}

.hero-actions-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  background: transparent;
  padding: 0;
  border-radius: 20px;
  box-shadow: none;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .btn,
.hero-actions .btn-secondary {
  min-height: 54px;
  min-width: 190px;
  border-radius: 14px;
  padding: 0 28px;
  font-size: 1rem;
  font-weight: 800;
}

.hero-actions .btn {
  background: #000000;
  color: #ffffff;
}

.hero-actions .btn:hover {
  background: #111111;
}

.hero-actions .btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.hero-actions .btn-secondary:hover {
  background: #f9fafb;
}

.hero-stats {
  margin: 52px auto 0;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
  max-width: 590px;
  display: flex;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
}

.hero-stat span {
  color: #6b7280;
  font-size: 0.92rem;
}

/* =========================================================
   10. HOMEPAGE - INDUSTRIES
========================================================= */
.industries-dark {
  background: #030712;
  color: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.industries-dark .section-heading h2,
.industries-dark .section-heading p {
  color: #fff;
}

.industries-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.industry-card {
  background: #0b1220;
  border: 1px solid #162031;
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 138px;
  color: #fff;
}

.industry-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.55;
}

.industry-card .tagline {
  margin-top: 10px;
  color: #ef4444;
  font-size: 0.84rem;
  font-weight: 700;
}

.industries-cta {
  text-align: center;
  margin-top: 38px;
}

.industries-cta .btn {
  min-width: 205px;
  min-height: 54px;
  border-radius: 14px;
  font-weight: 800;
}

/* =========================================================
   11. HOMEPAGE - FEATURES
========================================================= */
.features-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: start;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.step-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #0b0b0c;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 900;
}

.step-content p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-mini-card {
  background: #ffffff;
  border: 1px solid #ececf1;
  border-radius: 20px;
  padding: 24px 20px;
}

.feature-mini-card h4 {
  margin: 0 0 10px 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.feature-mini-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* =========================================================
   12. HOMEPAGE - ABOUT
========================================================= */
.about-red {
  background: #ef4444;
  color: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 42px;
  align-items: center;
}

.about-copy h2 {
  font-size: 4rem;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 24px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 620px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-box {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(6px);
}

.about-box h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 800;
}

.about-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* =========================================================
   13. HOMEPAGE - PRICING
   separate from founders by design
========================================================= */
#pricing {
  background: #fcfcfcbf;
  border-top: 1px solid #eeeeef;
  border-bottom: 1px solid #eeeeef;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 24px;
  padding-right: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  border-radius: 28px;
  padding: 34px;
  border: 1px solid #e6e7eb;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.price-card.dark {
  background: #020817;
  color: #fff;
  border-color: #10192d;
  box-shadow: 0 10px 26px rgba(2, 8, 23, 0.14);
}

.price-label {
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  font-weight: 800;
  color: #9ca3af;
  margin-bottom: 14px;
}

.price-card.dark .price-label {
  color: #ff6b6b;
}

.price-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.price-value strong {
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 900;
  color: #111827;
}

.price-card.dark .price-value strong {
  color: #ffffff;
}

.price-value span {
  font-size: 1.15rem;
  color: #9ca3af;
}

.price-card p {
  color: #5f6b7c;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.price-card.dark p,
.price-card.dark li,
.price-card.dark .price-value span {
  color: rgba(255, 255, 255, 0.84);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.price-card li {
  margin-bottom: 14px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.55;
}

.price-card li::marker {
  content: "";
}

.price-card .top-gap {
  margin-top: 0;
}

.price-card .btn,
.price-card .btn-secondary {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 800;
}

.price-card:not(.dark) .btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  box-shadow: inset 0 0 0 1px #ececec;
}

.price-card:not(.dark) .btn-secondary:hover {
  background: #f9fafb;
}

.price-card.dark .btn {
  background: #f64c46;
}

.price-card.dark .btn:hover {
  background: #eb433d;
}

/* pricing extra detail cards */
.pricing-extras {
  max-width: 980px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing-extra-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pricing-extra-icon {
  font-size: 1.45rem;
  line-height: 1;
  margin-top: 2px;
}

.pricing-extra-content h4 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-weight: 800;
  color: #111827;
}

.pricing-extra-content p {
  margin: 0;
  color: #414243;
  font-size: 0.96rem;
  line-height: 1.65;
}

/* =========================================================
   14. HOMEPAGE - FOUNDERS
   keep different background from pricing
========================================================= */
#team {
  background: transparent;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  justify-content: center;
  gap: 28px;
  margin: 38px auto 0;
}

.founder-card {
  background: #ffffff;
  border: 1px solid #ececf1;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.founder-image {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(1.03);
}

.founder-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #ef4444;
}

.founder-content {
  padding: 20px 20px 24px;
}

.founder-content h3 {
  margin: 0 0 6px 0;
  font-size: 1rem;
  font-weight: 900;
  color: #111827;
}

.role {
  display: block;
  margin-bottom: 12px;
  color: #ef4444;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.founder-content p {
  margin: 0;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.7;
}

.founders-cta {
  text-align: center;
  margin-top: 42px;
}

.founders-cta p {
  margin: 0;
  font-size: 0.95rem;
  color: #9ca3af;
}

.founders-cta a {
  color: #ef4444;
  font-weight: 700;
}

/* =========================================================
   15. HOMEPAGE - FINAL CTA
========================================================= */
.cta-dark {
  background: radial-gradient(circle at center, #111827 0%, #030712 70%);
  color: #ffffff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.cta-inner h2 {
  font-size: 4.2rem;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 18px 0;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.22rem;
  margin: 0 0 34px 0;
}

.cta-buttons-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cta-buttons-inner {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-main-btn {
  min-width: 255px;
  min-height: 62px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 800;
}

.cta-secondary-btn {
  min-width: 180px;
  min-height: 62px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 800;
}

/* =========================================================
   16. FOOTER
   keep this section for future footer updates
========================================================= */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #aeacac;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 24px;
  padding-right: 24px;
}

.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 200px 1fr 380px;
  align-items: center;
  gap: 16px;
}

.footer-left img {
  height: 28px;
  width: auto;
}

.footer-center {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-center a {
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-center a:hover {
  color: #c34242;
}

.footer-right {
  text-align: right;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* =========================================================
   17. PROFILE
========================================================= */
.profile-card {
  padding: 28px;
}

.profile-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.profile-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: #ffffff;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-logo.small {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1rem;
}

.profile-main {
  flex: 1;
}

.profile-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.profile-title-row h2 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 900;
}

.verified-badge {
  background: #fee2e2;
  color: #dc2626;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.pill {
  display: inline-block;
  background: #f3f4f6;
  color: #111111;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 10px 0 16px 0;
}

.profile-description {
  color: #6b7280;
  margin-bottom: 18px;
  max-width: 760px;
}

.services-block h3 {
  margin-bottom: 10px;
}

.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #f3f4f6;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ececf1;
  color: #6b7280;
}

.status {
  display: inline-block;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 800;
}

.status.connected {
  background: #dcfce7;
  color: #166534;
}

.status.pending {
  background: #fef3c7;
  color: #92400e;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fafafa;
  border: 1px solid #e7e7eb;
  border-radius: 12px;
  padding: 12px 14px;
}

/* =========================================================
   18. DASHBOARD
========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card h3 {
  margin: 0 0 10px 0;
  color: #6b7280;
  font-size: 1rem;
}

.stat-card p {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dashboard-profile-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quick-card {
  display: block;
  padding: 18px;
  border: 1px solid #e7e7eb;
  border-radius: 16px;
  background: #fafafa;
  transition: 0.2s ease;
}

.quick-card:hover {
  background: #f3f4f6;
  border-color: #d9dbe1;
}

.quick-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.quick-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.92rem;
}

.recent-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.recent-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e7e7eb;
  border-radius: 16px;
  background: #fff;
}

.recent-item:hover {
  background: #fafafa;
}

.recent-preview {
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-self: center;
}

/* =========================================================
   19. SEARCH / EXPLORE
========================================================= */
.search-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.search-results {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.result-card h3 {
  margin-bottom: 8px;
}

.result-card p {
  margin: 6px 0;
}

/* =========================================================
   20. NOTIFICATIONS
========================================================= */
.notification-list {
  display: grid;
  gap: 14px;
}

.notification-item {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.notification-item p {
  margin: 0 0 8px 0;
}

/* =========================================================
   21. MESSAGES
========================================================= */
.messages-shell {
  width: 100%;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
  padding-top: 32px;
}

.messages-sidebar,
.messages-main {
  min-height: 72vh;
}

.messages-sidebar-header {
  margin-bottom: 16px;
}

.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conversation-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  transition: 0.2s ease;
}

.conversation-item:hover,
.conversation-item.active {
  background: #fafafa;
  border-color: #d6d8de;
}

.conversation-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.conversation-meta {
  flex: 1;
  min-width: 0;
}

.conversation-top-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.conversation-preview {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.unread-pill {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 3px 8px;
}

.chat-header {
  border-bottom: 1px solid #ececf1;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.chat-header h2 {
  margin-bottom: 4px;
}

.chat-messages {
  min-height: 420px;
  max-height: 520px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 4px;
}

.message-row {
  display: flex;
}

.message-row.mine {
  justify-content: flex-end;
}

.message-row.theirs {
  justify-content: flex-start;
}

.message-bubble {
  max-width: 70%;
  border-radius: 18px;
  padding: 12px 14px;
}

.message-bubble.mine {
  background: #111111;
  color: #ffffff;
}

.message-bubble.theirs {
  background: #f3f4f6;
  color: #111111;
}

.message-bubble p {
  margin: 0 0 8px 0;
}

.message-bubble small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.chat-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empty-state {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* =========================================================
   22. ADMIN
========================================================= */
.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid #ececf1;
  vertical-align: middle;
}

.admin-table th {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 800;
}

/* =========================================================
   23. RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-layout,
  .about-layout,
  .pricing-grid,
  .pricing-extras,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    justify-content: center;
  }

  .footer-right {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    justify-content: center;
  }

  .nav-center {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-right {
    flex-wrap: wrap;
  }

  .form-grid,
  .service-grid,
  .quick-actions,
  .feature-mini-grid,
  .messages-shell,
  .search-form {
    grid-template-columns: 1fr;
  }

  .profile-top,
  .page-header {
    flex-direction: column;
  }

  .recent-item,
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .about-copy h2,
  .cta-inner h2 {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .cta-buttons-inner {
    min-width: auto;
    width: 100%;
    flex-direction: column;
    border-radius: 24px;
  }

  .cta-main-btn,
  .cta-secondary-btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 14px 32px;
  }

  .hero {
    padding: 80px 10px 60px;
  }

  .industry-grid,
  .pricing-grid,
  .pricing-extras,
  .founders-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 18px;
  }

  .site-logo {
    height: 30px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-actions .btn-secondary,
  .cta-main-btn,
  .cta-secondary-btn {
    width: 100%;
  }

  .hero-stats {
    gap: 26px;
  }
}
.plan-badge-row {
  margin-top: 12px;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.plan-pill.premium {
  background: #fff1f2;
  color: #dc2626;
  border: 1px solid #fecdd3;
}

.plan-pill.free {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.business-plan-line {
  margin-top: 10px;
  font-size: 0.98rem;
}

.text-premium {
  color: #dc2626;
  font-weight: 800;
}

.text-free {
  color: #4b5563;
  font-weight: 700;
}
/* =========================================================
   24. LEGAL PAGES
========================================================= */
.legal-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 20px 100px;
}

.legal-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.legal-label {
  display: inline-block;
  color: #ef4444;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.legal-hero h1 {
  margin: 0 0 16px;
  font-size: 3.6rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -2px;
  color: #0f172a;
}

.legal-hero p {
  margin: 0 auto;
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
}

.legal-card {
  background: #ffffff;
  border: 1px solid #e7e7eb;
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #eef0f3;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
}

.legal-section p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #5f6b7c;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 48px 14px 70px;
  }

  .legal-hero h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .legal-card {
    padding: 22px;
    border-radius: 20px;
  }

  .legal-section h2 {
    font-size: 1.15rem;
  }
}
/* =========================================================
   25. AI ASSISTANT WIDGET
========================================================= */
.assistant-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
}

.assistant-toggle {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: #000000;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.assistant-panel {
  width: 340px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
  position: absolute;
  bottom: 74px;
  right: 0;
  overflow: hidden;
  display: none;
}

.assistant-panel.open {
  display: block;
}

.assistant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: #111827;
  color: #ffffff;
}

.assistant-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.assistant-header button {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}

.assistant-messages {
  height: 280px;
  overflow-y: auto;
  padding: 16px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.assistant-message {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.assistant-message.bot {
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  align-self: flex-start;
}

.assistant-message.user {
  background: #ef4444;
  color: #ffffff;
  align-self: flex-end;
}

.assistant-form {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #ececf1;
  background: #ffffff;
}

.assistant-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 0.92rem;
}

.assistant-form button {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: #111827;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 700px) {
  .assistant-widget {
    right: 14px;
    bottom: 14px;
  }

  .assistant-panel {
    width: 300px;
  }
}
/* =========================================================
   26. INDUSTRIES PAGE + BUSINESS CARDS
========================================================= */
.industry-select-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-select-card {
  background: #ffffff;
  border: 1px solid #e7e7eb;
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  transition: 0.2s ease;
}

.industry-select-card:hover,
.industry-select-card.active {
  border-color: #ef4444;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.industry-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.business-card {
  background: #ffffff;
  border: 1px solid #e7e7eb;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  transition: 0.2s ease;
}

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

.business-card-image {
  height: 220px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-card-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.business-card-content {
  padding: 18px;
}

.business-card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.business-card-title-row h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.business-card-description {
  margin-top: 10px;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================================
   27. PUBLIC BUSINESS PAGE
========================================================= */
.business-public-header {
  padding: 30px;
}

.business-public-top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.business-public-logo {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.business-public-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-public-main {
  flex: 1;
}

.business-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.business-gallery-item {
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
  height: 220px;
}

.business-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .industry-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid,
  .business-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .industry-select-grid,
  .business-grid,
  .business-gallery-grid {
    grid-template-columns: 1fr;
  }

  .business-public-top {
    flex-direction: column;
  }
}
/* =========================================================
   28. BUSINESS GALLERY
========================================================= */
.business-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.business-gallery-item {
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.business-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-gallery .business-gallery-item {
  height: 140px;
}

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

@media (max-width: 700px) {
  .business-gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   29. INDUSTRY SEARCH BAR
========================================================= */
.industry-search-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.industry-search-bar input[type="text"] {
  margin: 0;
}

@media (max-width: 700px) {
  .industry-search-bar {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   30. GALLERY IMAGE MODAL
========================================================= */
.business-gallery-item {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.business-gallery-item:hover {
  transform: scale(1.02);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.gallery-modal.open {
  display: flex;
}

.gallery-modal-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #111827;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}