/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0c0e43;
  --slate: #355575;
  --dark: #102136;
  --lime: #88cb11;
  --white: #ffffff;
  --light: #f3f5f7;
  --light-blue: #f7fafd;
  --grey: #e7ebee;
  --text: #333333;
  --text-light: #666666;
  --red: #c62121;
  --amber: #f5a409;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
  --max-width: 1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section--dark .section-title { color: var(--white); }

/* ===== MATERIAL ICONS ===== */
.mi {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}
/* All icons lime green */
.role-card__icon .mi,
.step__icon .mi,
.trust-item__icon .mi,
.contact-card__icon .mi,
.qr-card .mi { color: var(--lime); font-size: 2rem; }
.feature__icon .mi { color: var(--lime); font-size: 1.5rem; }
.role-feature__icon .mi { color: var(--lime); font-size: 1.3rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}
.btn--lime {
  background: var(--lime);
  color: var(--navy);
}
.btn--lime:hover {
  background: #79b80f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--slate {
  background: var(--slate);
  color: var(--white);
}
.btn--slate:hover {
  background: #2a4560;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: #080a32;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn--sm { padding: 10px 24px; font-size: 0.9rem; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition);
}
.header--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  width: auto;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--lime); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 160px 0 0;
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-bottom: 80px;
}
.hero__content { flex: 1; position: relative; z-index: 1; }
.hero__visual { flex: 1; position: relative; z-index: 1; display: flex; justify-content: center; }

.hero__badge {
  display: inline-block;
  background: rgba(136,203,17,0.12);
  color: #5a8a0a;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--navy);
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero circular image */
.hero__image-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--grey);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.hero__image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navy curve at bottom of hero */
.hero__curve {
  position: relative;
  margin-top: -1px;
}
.hero__curve svg {
  display: block;
  width: 100%;
  height: auto;
}
.hero__navy-bar {
  background: var(--navy);
  height: 80px;
  margin-top: -1px;
}

/* ===== PROBLEM / SOLUTION ===== */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.problem-card, .solution-card {
  padding: 40px;
  border-radius: var(--radius);
}
.problem-card {
  background: #fff5f5;
  border-left: 4px solid var(--red);
}
.solution-card {
  background: #f0fdf4;
  border-left: 4px solid var(--lime);
}
.problem-card h3, .solution-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.problem-card h3 { color: var(--red); }
.solution-card h3 { color: var(--navy); }
.problem-card ul, .solution-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problem-card li, .solution-card li {
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
}
.problem-card li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.solution-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  text-align: center;
  position: relative;
}
.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== ROLE CARDS ===== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.role-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--lime);
}
.role-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.role-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.role-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.feature:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(136,203,17,0.3);
}
.feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(136,203,17,0.15);
  border-radius: 10px;
}
.feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.feature p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pricing-card--featured {
  border-color: var(--lime);
}
.pricing-card--featured .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 4px;
}
.pricing-card .price-period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pricing-card ul {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.pricing-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
}
.pricing-card li.na {
  color: #aaa;
}
.pricing-card li.na::before {
  content: '\2014';
  color: #ccc;
}

/* ===== TRUST BAR ===== */
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.trust-item h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== QR CODES ===== */
.qr-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.qr-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.qr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.qr-code {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
}
.qr-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.qr-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.footer {
  background: #d9d9d9;
  color: #444;
  padding: 60px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.7;
}
.footer h4 {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer__links a { color: #555; }
.footer__links a:hover { color: var(--navy); }
.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #141758 100%);
  padding: 160px 0 60px;
  color: var(--white);
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

/* ===== CONTENT PAGES ===== */
.content-section { padding: 60px 0; }
.content-section h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 32px 0 12px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p, .content-section li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.content-section ul {
  padding-left: 20px;
  list-style: disc;
}

/* ===== HOW IT WORKS PAGE ===== */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-step__marker {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--lime);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.timeline-step__content h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-step__content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== AGENT / TENANT PAGE HERO ===== */
.role-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #141758 100%);
  padding: 170px 0 80px;
  color: var(--white);
}
.role-hero .container {
  max-width: 720px;
  text-align: center;
}
.role-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.role-hero h1 span { color: var(--lime); }
.role-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.role-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}
.role-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.95rem;
}
.role-feature__icon { font-size: 1.3rem; }

/* ===== PRICING TABLE (full page) ===== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.pricing-table th, .pricing-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--grey);
  font-size: 0.95rem;
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}
.pricing-table th:first-child { text-align: left; border-radius: var(--radius) 0 0 0; }
.pricing-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.pricing-table td:first-child { text-align: left; font-weight: 500; }
.pricing-table tr:hover td { background: var(--light); }

/* ===== SUPPORT / CONTACT ===== */
.contact-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.contact-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 { color: var(--navy); margin-bottom: 8px; }
.contact-card p { color: var(--text-light); margin-bottom: 4px; }
.contact-card a { color: var(--lime); font-weight: 600; }
.contact-card a:hover { color: var(--lime); }

/* ===== MOBILE NAV ===== */
.nav--mobile {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-top: 1px solid var(--grey);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.nav--mobile.active { display: block; }
.nav--mobile a {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey);
}
.nav--mobile a:hover { color: var(--lime); }
.nav--mobile .btn {
  margin-top: 16px;
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__visual { margin-top: 40px; }
  .hero__image-circle { width: 340px; height: 340px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
  .problem-solution { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; align-items: center; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .role-features { grid-template-columns: 1fr; }

  .nav__links, .nav .btn { display: none; }
  .nav__toggle { display: block; }
  .hero__image-circle { width: 280px; height: 280px; }

  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; }
}
