:root {
  --dark: #002f33;
  --dark-2: #01434a;
  --cyan: #3ee6f2;
  --cyan-2: #08afc6;
  --light: #f4fbfc;
  --white: #ffffff;
  --text: #111111;
  --muted: #5d6a70;
  --border: rgba(8, 175, 198, 0.32);
  --shadow: 0 25px 70px rgba(0, 47, 51, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #002f33, #003c42);
  color: var(--white);
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(62, 230, 242, 0.22);
}

.brand {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.brand span {
  color: var(--cyan);
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--cyan-2);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: var(--cyan);
}

.nav-cta {
  border: 1px solid rgba(62, 230, 242, 0.55);
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 2rem;
}

.hero {
  min-height: 78vh;
  background:
    radial-gradient(circle at center, rgba(8, 175, 198, 0.3), transparent 40%),
    linear-gradient(135deg, #002f33, #00464d);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 5%;
  text-align: center;
}

.hero-inner {
  max-width: 1050px;
}

.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1;
  margin: 18px 0;
  letter-spacing: -0.06em;
}

.hero h1 span,
.page-hero h1 span,
.section-heading h2 span {
  color: var(--cyan);
}

.hero-text {
  max-width: 850px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #001b1e;
}

.btn-secondary {
  border-color: rgba(62, 230, 242, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 90px 6%;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.section-heading h2,
.cta-section h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
  margin: 10px 0;
  letter-spacing: -0.05em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.12rem;
}

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

.card,
.service-card,
.process-card,
.profile-card,
.empty-state,
.contact-form,
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.card-number,
.service-card span {
  display: inline-block;
  color: rgba(8, 175, 198, 0.2);
  font-size: 3rem;
  font-weight: 900;
}

.card h3,
.service-card h2,
.process-card h3 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.ecosystem {
  padding: 95px 6%;
  background:
    radial-gradient(circle at center, rgba(62, 230, 242, 0.18), transparent 45%),
    linear-gradient(135deg, #002f33, #003f45);
  color: var(--white);
}

.light p {
  color: rgba(255, 255, 255, 0.75);
}

.ecosystem-map {
  max-width: 980px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: center;
}

.eco-item {
  min-height: 130px;
  border-radius: 999px;
  border: 1px solid rgba(62, 230, 242, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.05);
}

.eco-item.center {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #001b1e;
  transform: scale(1.08);
}

.cta-section {
  padding: 110px 6%;
  text-align: center;
  background: var(--white);
}

.cta-section p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
}

.page-hero {
  padding: 95px 6%;
  background:
    radial-gradient(circle at center, rgba(8, 175, 198, 0.2), transparent 45%),
    linear-gradient(135deg, #002f33, #00464d);
  color: var(--white);
  text-align: center;
}

.page-hero p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.service-list {
  display: grid;
  gap: 28px;
}

.service-card {
  max-width: 1100px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.process-card span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.profile-card ul {
  margin: 0;
  padding-left: 20px;
}

.contact-form label {
  font-weight: 900;
  display: block;
  margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 22px;
}

.auth-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 60px 5%;
}

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

.site-footer {
  padding: 40px 6%;
  background: #00282c;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  color: var(--white);
}

.avatar-intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 20, 22, 0.92);
  display: grid;
  place-items: center;
  padding: 24px;
}

.avatar-box {
  position: relative;
  width: min(980px, 100%);
  min-height: 560px;
  background:
    radial-gradient(circle at center, rgba(62, 230, 242, 0.18), transparent 45%),
    linear-gradient(135deg, #002f33, #00464d);
  border: 1px solid rgba(62, 230, 242, 0.36);
  border-radius: 30px;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 46px;
  background: linear-gradient(to top, rgba(0, 20, 22, 0.88), transparent 70%);
}

.avatar-content h1 {
  max-width: 700px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 12px 0;
}

.avatar-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.skip-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  border: 1px solid rgba(62, 230, 242, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #002f33;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 5%;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .grid-3,
  .process-grid,
  .split,
  .ecosystem-map {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section {
    padding: 65px 5%;
  }

  .avatar-box,
  .avatar-content {
    min-height: 520px;
  }
}
/* ================================
   ABOUT PAGE PREMIUM DESIGN
================================ */

.about-hero {
  min-height: 78vh;
  padding: 120px 6% 150px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(to bottom, rgba(0, 47, 51, 0) 70%, var(--light) 100%),
    radial-gradient(circle at center, rgba(62, 230, 242, 0.18), transparent 42%),
    linear-gradient(135deg, #002f33, #00454c);
}

.about-hero-inner {
  max-width: 1050px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(62, 230, 242, 0.45);
  border-radius: 999px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
}

.light-pill {
  background: rgba(62, 230, 242, 0.08);
  color: var(--cyan-2);
}

.about-hero h1 {
  margin: 28px 0 16px;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.about-hero h1 span {
  color: var(--cyan);
}

.title-line,
.section-line,
.mini-line {
  width: 76px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
}

.title-line {
  margin: 28px auto;
}

.section-line {
  margin: 18px 0 34px;
}

.about-hero-kicker {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
  font-size: 0.9rem;
}

.about-hero-text {
  max-width: 850px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.section-white {
  background: var(--white);
}

.about-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px 6%;
}

.about-story h2,
.about-expertise h2,
.about-values h2,
.about-founder-note h2 {
  max-width: 950px;
  margin: 20px 0 0;
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.about-expertise h2 span {
  display: block;
  color: var(--cyan-2);
}

.story-copy {
  max-width: 1180px;
}

.story-copy p,
.large-copy {
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  color: #3c474b;
  line-height: 1.85;
}

.story-timeline {
  margin-top: 78px;
  display: grid;
  gap: 45px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 74px;
  width: 2px;
  height: calc(100% + 5px);
  background: rgba(8, 175, 198, 0.22);
}

.timeline-number {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #00272b;
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(8, 175, 198, 0.25);
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.timeline-item p {
  margin: 0;
  color: #4d5a60;
  font-size: 1.08rem;
}

.timeline-item .eyebrow {
  margin-bottom: 6px;
  color: var(--cyan-2);
}

.about-quote {
  padding: 115px 6%;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(62, 230, 242, 0.18), transparent 45%),
    linear-gradient(135deg, #002f33, #00454c);
}

.quote-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.about-quote h2 {
  margin: 30px auto;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.about-quote h2 span {
  color: var(--cyan);
}

.quote-mark {
  width: 76px;
  height: 6px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
}

.quote-mark.bottom {
  margin-top: 34px;
}

.about-expertise {
  background: var(--light);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.expertise-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(8, 175, 198, 0.35);
  background: rgba(62, 230, 242, 0.08);
  color: var(--cyan-2);
  font-weight: 900;
}

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

.value-card {
  min-height: 310px;
  padding: 42px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--cyan-2);
  background: rgba(62, 230, 242, 0.09);
  font-size: 1.7rem;
  font-weight: 900;
}

.mini-line {
  width: 54px;
  height: 4px;
  margin: 28px 0 24px;
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.value-card p {
  margin: 0;
  color: #4c5a60;
  font-size: 1.05rem;
}

.about-founder-note {
  padding: 110px 6%;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(62, 230, 242, 0.16), transparent 40%),
    linear-gradient(135deg, #002f33, #003d43);
  text-align: center;
}

.founder-note-inner {
  max-width: 900px;
  margin: 0 auto;
}

.founder-note-inner h2 {
  margin-left: auto;
  margin-right: auto;
}

.founder-note-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 34px;
}

@media (max-width: 850px) {
  .about-hero {
    min-height: auto;
    padding: 90px 5% 115px;
  }

  .about-container {
    padding: 70px 5%;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
  }

  .timeline-item:not(:last-child)::after {
    left: 23px;
    top: 58px;
  }

  .value-card {
    min-height: auto;
    padding: 30px;
  }

  .about-quote {
    padding: 80px 5%;
  }
}
.contact-note {
  margin-top: 32px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-note h3 {
  margin-top: 0;
}

.contact-note ul {
  margin-bottom: 0;
  padding-left: 22px;
}

.contact-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  font: inherit;
  background: white;
}

.flash-wrap {
  padding: 18px 6%;
  background: var(--white);
}

.flash {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
}

.flash.success {
  background: rgba(62, 230, 242, 0.14);
  color: #00606a;
  border: 1px solid rgba(8, 175, 198, 0.35);
}

.flash.danger,
.flash.warning {
  background: #fff1f1;
  color: #9b111e;
  border: 1px solid #f3b7b7;
}
/* ================================
   ADMIN DASHBOARD
================================ */

.admin-hero {
  padding: 90px 6%;
  background:
    radial-gradient(circle at center, rgba(62, 230, 242, 0.16), transparent 45%),
    linear-gradient(135deg, #002f33, #00454c);
  color: white;
}

.admin-hero h1 {
  margin: 12px 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.admin-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
}

.admin-section {
  padding: 70px 6%;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-bottom: 34px;
}

.admin-topbar h2 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.admin-topbar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-btn-light {
  color: var(--dark);
}

.inquiry-list {
  display: grid;
  gap: 24px;
}

.inquiry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.inquiry-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(8, 175, 198, 0.18);
  padding-bottom: 18px;
}

.inquiry-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.inquiry-meta {
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.inquiry-date {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(62, 230, 242, 0.1);
  color: var(--cyan-2);
  font-size: 0.85rem;
  font-weight: 900;
}

.inquiry-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.inquiry-details span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid rgba(8, 175, 198, 0.18);
  color: #36484d;
  font-size: 0.92rem;
}

.inquiry-message {
  margin: 24px 0;
  color: #354348;
  font-size: 1.05rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

.inquiry-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 750px) {
  .admin-topbar,
  .inquiry-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .inquiry-actions {
    justify-content: flex-start;
  }
}
/* ================================
   AUTH PAGES
================================ */

.auth-form {
  margin-top: 26px;
}

.auth-form label {
  display: block;
  margin-top: 16px;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  font: inherit;
}

.full-btn {
  width: 100%;
  margin-top: 24px;
}

.small-auth {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.small-auth a {
  color: var(--cyan-2);
  font-weight: 900;
}

.muted {
  color: var(--muted);
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-actions form {
  margin: 0;
}

.btn-danger {
  background: #b42318;
  color: white;
  border-color: #b42318;
}

.btn-danger:hover {
  background: #8f1c13;
  border-color: #8f1c13;
}

@media (max-width: 750px) {
  .admin-actions {
    width: 100%;
  }

  .admin-actions .btn,
  .admin-actions form,
  .admin-actions button {
    width: 100%;
  }
}
.inquiry-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.inquiry-actions form {
  margin: 0;
}

@media (max-width: 750px) {
  .inquiry-actions {
    justify-content: flex-start;
  }

  .inquiry-actions .btn,
  .inquiry-actions form,
  .inquiry-actions button {
    width: 100%;
  }
}
/* ================================
   COMPLETION SEQUENCE FORM
================================ */

.form-hero {
  padding-bottom: 110px;
}

.form-page-section {
  background: var(--light);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.form-side-panel,
.sequence-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.form-side-panel {
  position: sticky;
  top: 120px;
}

.form-side-panel h2 {
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.phase-mini-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.phase-mini-list span {
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(62, 230, 242, 0.08);
  border: 1px solid rgba(8, 175, 198, 0.2);
  color: var(--cyan-2);
  font-weight: 900;
}

.form-block {
  padding: 26px 0;
  border-bottom: 1px solid rgba(8, 175, 198, 0.16);
}

.form-block:first-child {
  padding-top: 0;
}

.form-block h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.form-help {
  margin-top: -8px;
  color: var(--muted);
}

.sequence-form label {
  display: block;
  margin-top: 16px;
  font-weight: 900;
}

.sequence-form input,
.sequence-form select,
.sequence-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  font: inherit;
  background: white;
}

.sequence-form textarea {
  min-height: 130px;
  resize: vertical;
}

.tool-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.tool-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(8, 175, 198, 0.2);
  background: var(--light);
  cursor: pointer;
}

.tool-check input {
  width: auto;
  margin: 0;
}

.tool-check span {
  font-weight: 800;
  color: #304247;
}

.sequence-submit {
  width: 100%;
  margin-top: 28px;
}

.admin-section-alt {
  background: #f7feff;
  border-top: 1px solid rgba(8, 175, 198, 0.16);
}

.submission-tools {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: var(--light);
  border: 1px solid rgba(8, 175, 198, 0.18);
}

.submission-tools p {
  margin: 8px 0 0;
  color: #435257;
  line-height: 1.7;
}

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

  .form-side-panel {
    position: static;
  }

  .tool-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   INITIAL INQUIRY FORM UPGRADE
================================ */

.inquiry-form-shell {
  max-width: 1120px;
  margin: -90px auto 0;
  position: relative;
  z-index: 2;
}

.public-inquiry-form {
  background: #ffffff;
  border: 1px solid rgba(8, 175, 198, 0.18);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 56, 64, 0.13);
  padding: clamp(24px, 4vw, 54px);
}

.form-progress-note {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(62, 230, 242, 0.14), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(8, 175, 198, 0.18);
  margin-bottom: 32px;
}

.form-progress-note span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #003f43;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.form-progress-note h2 {
  margin: 0 0 4px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.form-progress-note p {
  margin: 0;
  color: var(--muted);
}

.public-inquiry-form .form-block {
  padding: 34px 0;
  border-bottom: 1px solid rgba(8, 175, 198, 0.18);
}

.public-inquiry-form .form-block:first-of-type {
  padding-top: 12px;
}

.public-inquiry-form .form-block h3 {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
  color: #10292d;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label,
.public-inquiry-form label {
  font-weight: 900;
  color: #1d3337;
  margin-bottom: 8px;
}

.public-inquiry-form input[type="text"],
.public-inquiry-form input[type="email"],
.public-inquiry-form input[type="tel"],
.public-inquiry-form input[type="url"],
.public-inquiry-form select,
.public-inquiry-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(8, 175, 198, 0.26);
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafdff;
  color: #10292d;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.public-inquiry-form textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.6;
}

.public-inquiry-form input:focus,
.public-inquiry-form select:focus,
.public-inquiry-form textarea:focus {
  outline: none;
  border-color: #08afc6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 175, 198, 0.13);
}

.public-inquiry-form .form-help {
  max-width: 780px;
  color: #50656a;
  line-height: 1.7;
  margin-bottom: 20px;
}

.public-inquiry-form .tool-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.public-inquiry-form .tool-check {
  min-height: 58px;
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(8, 175, 198, 0.24);
  background: #f8feff;
  color: #243b40;
  font-weight: 800;
  cursor: pointer;
}

.public-inquiry-form .tool-check:hover {
  background: #eefcff;
  border-color: rgba(8, 175, 198, 0.45);
}

.public-inquiry-form .tool-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.public-inquiry-form .tool-check span {
  line-height: 1.35;
}

.form-disclaimer {
  margin-top: 30px;
  padding: 22px;
  border-radius: 22px;
  background: #f6fbfc;
  border: 1px solid rgba(8, 175, 198, 0.18);
}

.form-disclaimer p {
  margin: 0;
  color: #50656a;
  line-height: 1.7;
  font-size: 0.95rem;
}

.public-inquiry-form .sequence-submit {
  min-height: 58px;
  margin-top: 26px;
  width: 100%;
  font-size: 1rem;
  justify-content: center;
}

@media (max-width: 850px) {
  .inquiry-form-shell {
    margin-top: -60px;
  }

  .form-grid.two,
  .public-inquiry-form .tool-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-progress-note {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .public-inquiry-form {
    border-radius: 24px;
    padding: 22px;
  }

  .form-progress-note {
    flex-direction: column;
  }
}
.admin-section-light {
  background: #f7feff;
  border-top: 1px solid rgba(8, 175, 198, 0.16);
}

.admin-section .admin-topbar {
  align-items: flex-start;
}

.admin-section .admin-actions {
  justify-content: flex-end;
}

.admin-section .inquiry-card {
  border-radius: 26px;
}

.admin-section .empty-state {
  border-radius: 26px;
}

@media (max-width: 850px) {
  .admin-section .admin-topbar {
    gap: 18px;
  }

  .admin-section .admin-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
/* ================================
   ASSISTANT PORTAL
================================ */

.assistant-login-page {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  background:
    radial-gradient(circle at top, rgba(62, 230, 242, 0.18), transparent 45%),
    var(--light);
}

.assistant-login-card {
  width: min(100%, 560px);
  background: #ffffff;
  border: 1px solid rgba(8, 175, 198, 0.2);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 56, 64, 0.13);
  padding: clamp(28px, 5vw, 52px);
}

.assistant-login-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.assistant-login-card p {
  color: var(--muted);
  line-height: 1.7;
}

.assistant-password-form {
  margin-top: 28px;
}

.assistant-password-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.assistant-password-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(8, 175, 198, 0.28);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  margin-bottom: 18px;
}

.assistant-hero {
  min-height: 280px;
  padding: 90px 6vw 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  background:
    radial-gradient(circle at 50% 10%, rgba(62, 230, 242, 0.18), transparent 36%),
    linear-gradient(135deg, #003f43, #002f32);
  color: white;
}

.assistant-hero h1 {
  margin: 8px 0 12px;
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.assistant-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.assistant-logout {
  white-space: nowrap;
}

.assistant-section {
  padding: 70px 6vw;
  background: var(--light);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.phase-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #10292d;
  background: white;
  border: 1px solid rgba(8, 175, 198, 0.2);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 56, 64, 0.08);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 56, 64, 0.14);
}

.phase-count {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(62, 230, 242, 0.13);
  color: var(--cyan-2);
  font-weight: 900;
  font-size: 0.8rem;
}

.phase-card h2 {
  margin: 22px 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.phase-card p {
  color: var(--muted);
  line-height: 1.65;
}

.tool-pill-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-pill-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1fcfe;
  border: 1px solid rgba(8, 175, 198, 0.18);
  color: #31565c;
  font-size: 0.82rem;
  font-weight: 800;
}

.phase-detail-card {
  background: #ffffff;
  border: 1px solid rgba(8, 175, 198, 0.2);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 56, 64, 0.08);
  padding: clamp(26px, 4vw, 46px);
}

.phase-detail-card h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.06em;
}

.phase-detail-card > p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.tool-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.tool-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: #f8feff;
  border: 1px solid rgba(8, 175, 198, 0.18);
}

.tool-row p {
  margin: 5px 0 0;
  color: var(--muted);
}

@media (max-width: 1050px) {
  .phase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .phase-grid {
    grid-template-columns: 1fr;
  }

  .tool-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.assistant-tool-form-card {
  background: #ffffff;
  border: 1px solid rgba(8, 175, 198, 0.2);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 56, 64, 0.08);
  padding: clamp(26px, 4vw, 46px);
}

.assistant-tool-form textarea {
  width: 100%;
  min-height: 220px;
  border: 1px solid rgba(8, 175, 198, 0.26);
  border-radius: 18px;
  padding: 18px;
  font: inherit;
  line-height: 1.6;
  background: #fafdff;
}

.assistant-tool-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(8, 175, 198, 0.26);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: #fafdff;
}

.assistant-tool-form label {
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.assistant-tool-form textarea:focus,
.assistant-tool-form input:focus {
  outline: none;
  border-color: #08afc6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(8, 175, 198, 0.13);
}
/* ================================
   FIX ASSISTANT TOOL FORM CHECKBOXES
================================ */

.assistant-tool-form .tool-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.assistant-tool-form .tool-check {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(8, 175, 198, 0.24);
  background: #f8feff;
  color: #243b40;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  box-sizing: border-box;
  overflow: hidden;
}

.assistant-tool-form .tool-check input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 18px;
  box-shadow: none !important;
}

.assistant-tool-form .tool-check span {
  display: block;
  flex: 1;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.assistant-tool-form .tool-check:hover {
  background: #eefcff;
  border-color: rgba(8, 175, 198, 0.45);
}

@media (max-width: 850px) {
  .assistant-tool-form .tool-checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capacity-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(8, 175, 198, 0.2);
  background: #f8feff;
}

.capacity-card h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: #10292d;
}

.capacity-card textarea {
  min-height: 120px;
}

@media (max-width: 1000px) {
  .form-grid.three {
    grid-template-columns: 1fr;
  }
}