:root {
  --text-main: #0a0a0a;
  --text-muted: #6e6e73;
  --accent: #007aff;
  --bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover {
  opacity: 0.9;
}

.btn.secondary {
  color: var(--accent);
}

/* Problem Section */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6%;
}

.problem {
  padding: 80px 0;
}

.problem h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: #f6f6f8;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
}

/* Solution Section - section 4 */

.solution {
  padding: 90px 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.solution-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.solution-list {
  list-style: none;
  padding: 0;
}

.solution-list li {
  margin: 12px 0;
  font-size: 1.05rem;
  color: #1b1b1f;
}

/* Mock UI style */
.solution-visual .mock {
  background: #f6f6f8;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.mock-header {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
}

.mock-title {
  font-weight: 700;
  margin-bottom: 14px;
}

.mock-step {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  color: #1b1b1f;
}

/* Cost Cut Section */
.cost-cut {
  padding: 90px 0;
}

.cost-cut h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.cost-card {
  background: #f6f6f8;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cost-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.cost-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.cost-card li {
  margin: 10px 0;
  color: var(--text-muted);
}

.cost-highlight {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow {
  font-size: 2.8rem;
  color: var(--accent);
}

/* Templates Section */
.templates {
  padding: 90px 0;
}

.templates h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.templates-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.template-card {
  background: #f6f6f8;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.template-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.template-card p {
  color: var(--text-muted);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 8% auto;
  padding: 30px;
  border-radius: 20px;
  width: 70%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.modal-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.modal-body p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.modal-cta {
  margin-top: 20px;
}

/* who Section */
.who {
  padding: 90px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.who-card {
  background: #f6f6f8;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.who-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.who-card ul {
  list-style: none;
  padding: 0;
}

.who-card li {
  margin: 10px 0;
  color: var(--text-muted);
}

/* Trust & Process */
.trust {
  padding: 90px 0;
}

.trust h2 {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: #f6f6f8;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
}

/* MINI ME section */
.mini {
  padding: 90px 0;
  text-align: center;
}

.mini-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.mini-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mini Me button */
.sticky-mini {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* Mini Me Chat Popup */
/* MINI ME POPUP */
.mini-chat {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 360px;
  height: 520px;

  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);

  display: none;
  flex-direction: column;

  z-index: 999999;
  overflow: hidden;
  box-sizing: border-box;
}

/* HEADER */
.mini-header {
  height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ffffff;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.mini-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-dot {
  width: 8px;
  height: 8px;
  background: #0a84ff;
  border-radius: 50%;
}

.mini-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* BODY */
.mini-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #fafafa;
}

/* FOOTER */
.mini-footer {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #eee;
  background: #ffffff;
}

.mini-footer input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.mini-footer button {
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  background: #0a84ff;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* MESSAGES */
.mini-message {
  max-width: 80%;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.mini-message.user {
  margin-left: auto;
  background: #0a84ff;
  color: white;
}

.mini-message.ai {
  margin-right: auto;
  background: #eaeaea;
  color: #000;
}

