:root {
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --accent: #ff5a36;
  --accent-dark: #df3f1f;
  --navy: #122238;
  --green: #1f9d70;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.landing-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 231, 236, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.public-nav a {
  color: #344054;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.public-nav a:hover {
  color: var(--accent-dark);
}

.public-nav .header-login {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.hero {
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 90, 54, 0.16), transparent 27%),
    linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}

.hero-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 60px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 620px;
  margin: 25px 0 0;
  color: #475467;
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: #d0d5dd;
  background: #fff;
  color: var(--ink);
}

.button-light {
  background: #fff;
  color: var(--navy);
}

.hero-points {
  display: flex;
  margin-top: 26px;
  gap: 18px;
  flex-wrap: wrap;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.hero-points span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
}

.product-preview {
  overflow: hidden;
  border: 1px solid #dfe3e9;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(16, 24, 40, 0.16);
  transform: rotate(1deg);
}

.preview-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.preview-status {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: #dcfae6;
  color: #067647;
  font-size: 11px;
  font-weight: 800;
}

.preview-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 390px;
}

.preview-team {
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  background: #f9fafb;
}

.preview-label {
  margin-bottom: 14px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-person {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 10px 8px;
  border-radius: 9px;
  background: #fff;
  color: #344054;
  font-size: 11px;
}

.team-person i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.team-person b {
  color: #667085;
  font-size: 10px;
}

.person-blue {
  background: #6172f3;
}

.person-orange {
  background: #f79009;
}

.person-green {
  background: #12b76a;
}

.preview-calendar {
  min-width: 0;
  padding: 18px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 10px;
  color: #667085;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.calendar-grid {
  position: relative;
  min-height: 310px;
  border: 1px solid #eaecf0;
  border-radius: 12px;
  background:
    linear-gradient(to right, transparent calc(20% - 1px), #eaecf0 calc(20% - 1px), #eaecf0 20%, transparent 20%) 0 0 / 20% 100%,
    repeating-linear-gradient(to bottom, #fff 0, #fff 49px, #f0f2f5 50px);
}

.mock-slot {
  position: absolute;
  width: calc(20% - 8px);
  padding: 7px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
}

.mock-slot.blue {
  background: #e0e7ff;
  color: #3538cd;
}

.mock-slot.orange {
  background: #fef0c7;
  color: #b54708;
}

.mock-slot.green {
  background: #d1fadf;
  color: #027a48;
}

.slot-a {
  top: 24px;
  left: 4px;
}

.slot-b {
  top: 76px;
  left: calc(20% + 4px);
}

.slot-c {
  top: 176px;
  left: calc(40% + 4px);
}

.slot-d {
  top: 144px;
  left: calc(60% + 4px);
}

.slot-e {
  top: 226px;
  left: calc(80% + 4px);
}

.slot-f {
  top: 42px;
  left: calc(40% + 4px);
}

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0 0 18px;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  flex-wrap: wrap;
  color: #475467;
  font-weight: 800;
}

.section {
  padding: 100px 0;
}

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

.section-heading h2,
.showcase-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.showcase-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.feature-card:hover {
  border-color: #f9b4a5;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
}

.feature-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 38px 0 10px;
  font-size: 21px;
}

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

.section-dark {
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.showcase-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
}

.showcase-copy {
  max-width: 630px;
}

.showcase-copy > p {
  color: #b8c2d0;
}

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

.showcase-copy li,
.price-card li {
  position: relative;
  margin: 13px 0;
  padding-left: 27px;
}

.showcase-copy li::before,
.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}

.phone-preview {
  width: min(340px, 100%);
  margin: 0 auto;
  padding: 12px;
  border: 7px solid #314158;
  border-radius: 38px;
  background: #0c1727;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.phone-speaker {
  width: 78px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 99px;
  background: #46566c;
}

.phone-content {
  min-height: 520px;
  padding: 24px 18px;
  border-radius: 25px;
  background: #fff;
  color: var(--ink);
}

.phone-date {
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.phone-content h3 {
  margin: 8px 0 20px;
  font-size: 23px;
}

.phone-slot {
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 10px;
  background: #f2f4f7;
  font-size: 13px;
  font-weight: 800;
}

.attendance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.attendance-row b {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
}

.attendance-row .present {
  background: #dcfae6;
  color: #067647;
}

.attendance-row .absent {
  background: #fee4e2;
  color: #b42318;
}

.phone-content button {
  width: 100%;
  min-height: 45px;
  margin-top: 28px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  flex-direction: column;
  background: #fff;
}

.price-card.is-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 22px 55px rgba(255, 90, 54, 0.14);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 7px 11px;
  border-radius: 0 0 9px 9px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
}

.price {
  min-height: 63px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price small {
  display: block;
  color: #98a2b3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card > p {
  min-height: 52px;
  margin: 18px 0 4px;
  color: var(--muted);
}

.price-card ul {
  margin-bottom: 26px;
  color: #475467;
  font-size: 14px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 22px 0 0;
  color: #98a2b3;
  font-size: 12px;
  text-align: center;
}

.final-cta {
  padding: 72px 0;
  background: var(--accent);
  color: #fff;
}

.final-cta .eyebrow {
  color: #ffe2da;
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.landing-footer {
  background: #0e1828;
  color: #fff;
}

.footer-inner {
  min-height: 110px;
}

.footer-inner p {
  margin: 0;
  color: #98a2b3;
  font-size: 13px;
}

.footer-inner a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    max-width: 700px;
    transform: none;
  }

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

  .price-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .landing-container {
    width: min(100% - 28px, 1180px);
  }

  .landing-header {
    position: static;
  }

  .header-inner {
    min-height: 68px;
  }

  .public-nav > a:not(.header-login) {
    display: none;
  }

  .hero {
    padding: 62px 0 54px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-team {
    display: none;
  }

  .preview-calendar {
    padding: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card:last-child {
    grid-column: auto;
  }

  .final-cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding: 28px 0;
  }
}
