*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1C2B35;
  --cyan: #2a9bdd;
  --cyan-l: #a2c9e8;
  --cyan-d: #0476c6;
  --bg: #F4F8FB;
  --bg2: #EAF2F7;
  --border: #D6E7EF;
  --text: #1C2B35;
  --muted: #5A7080;
  --light: #8AAABB;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 80px;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  height: 80px;
}

nav ul {
	margin-bottom: 0 !important;
}

nav .logo {
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-decoration: none;
  margin-top: 5px;
  padding: 0 !important;
  line-height: 0.5 !important;
}

.logo span {
  color: var(--cyan);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  z-index: 101;
}

.hamburger {
  display: block;
  position: relative;
  width: 27px;
  height: 2px;
  background: var(--navy);
  transition: background 0.2s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--navy);
  left: 0;
  transition: transform 0.2s ease-in-out;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.menu-toggle.active .hamburger {
  background: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  /*margin-bottom: 0 !important;*/
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.btn-nav {
  background: var(--cyan) !important;
  color: #fff !important;
  padding: 11px 27px;
  border-radius: 9px;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: background 0.15s !important;
}

.btn-nav:hover {
  background: var(--cyan-d) !important;
}

.hero {
  text-align: center;
  background: #fff;
}

.hero-top {
  position: relative;
  overflow: hidden;
  padding: 132px 80px 110px;
}

.hero-bg {
  position: absolute;
  inset: -88px 0 0;
  background-image: url('/assets/img/youvalyou_herobild_people.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0.80) 80%,
    rgba(255,255,255,1) 100%
  );
  z-index: 1;
}

.hero-top > *:not(.hero-bg):not(.hero-bg-overlay) {
  position: relative;
  z-index: 2;
}

.hero-bottom {
  padding: 0 80px 110px;
  background: #fff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #E4F3F9;
  color: var(--cyan-d);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero h1 {
  font-size: 71px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  max-width: 858px;
  margin: 0 auto 88px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--cyan);
}

.hero p {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  max-width: 572px;
  margin: 0 auto 53px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn-primary {
  background: var(--cyan);
  color: #fff;
  padding: 22px 20px;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--cyan-d);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  padding: 12px 32px; /* Reduced vertical padding to fit subtext */
  border-radius: 9px;
  border: 1.5px solid var(--border);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--cyan-l);
  transform: translateY(-1px);
}

.btn-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.btn-subtext {
  font-size: 13px;
  font-weight: 400;
  color: var(--cyan);
  margin-top: 2px;
}

.hero-demo {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 53px 62px;
  max-width: 770px;
  margin: 0 auto;
  text-align: left;
}

.demo-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 7px;
}

.demo-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 40px;
}

.vrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.vname {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  width: 143px;
  flex-shrink: 0;
}

.btrack {
  flex: 1;
  height: 11px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.bfill {
  height: 100%;
  border-radius: 100px;
}

.ba { background: var(--cyan); }
.bb { background: #5BC0DE; }
.bc { background: var(--cyan-d); }

.vpct {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  width: 40px;
  text-align: right;
}

.demo-footer {
  margin-top: 31px;
  font-size: 15px;
  color: var(--light);
  font-weight: 500;
}

.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 31px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fff;
}

.proof-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light);
  margin-right: 9px;
  white-space: nowrap;
}

.proof-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
}

.proof-item {
  font-size: 16px;
  font-weight: 600;
  color: #B0C8D4;
  letter-spacing: -0.3px;
}

.features {
  padding: 110px 80px;
  background: #fff;
}

.section-kicker {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: 47px;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.1;
}

.section-sub {
  font-size: 19px;
  color: var(--muted);
  text-align: center;
  max-width: 572px;
  margin: 0 auto 80px;
  line-height: 1.7;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px 40px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feat-card:hover {
  box-shadow: 0 9px 36px rgba(63,168,200,0.10);
  transform: translateY(-3px);
}

.feat-icon {
  width: 53px;
  height: 53px;
  background: #E4F3F9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}

.feat-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.feat-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.how {
  padding: 110px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 990px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(16.6% + 27px);
  right: calc(16.6% + 27px);
  height: 1px;
  background: var(--border);
}

.step {
  text-align: center;
  padding: 0 31px;
}

.step-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  margin: 0 auto 27px;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 11px;
}

.step p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  font-style: italic;
  color: var(--cyan);
  background: var(--bg);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.tooltip-wrapper:hover .info-icon {
  background: var(--cyan-d);
  color: #ffffff;
  border-color: var(--cyan-d);
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 240px;
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 8px;
  position: absolute;
  bottom: 125%;
  left: 0;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(4px);
  pointer-events: none;
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--navy) transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.pricing {
  padding: 110px 80px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1210px;
  margin: 0 auto;
}

.plan {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 40px 31px;
  position: relative;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  box-shadow: 0 7px 27px rgba(28,43,53,0.2);
}

.plan.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.plan.featured:hover {
  box-shadow: 0 7px 27px rgba(28,43,53,0.55);
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 14px;
}

.featured .plan-tier {
  color: #4A6272;
}

.plan-price {
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 5px;
}

.plan-price.custom-price {
  font-size: 29px;
  padding-top: 9px;
  letter-spacing: -0.5px;
}

.featured .plan-price {
  color: #EDF3F7;
}

.plan-price sup {
  font-size: 20px;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}

.plan-cadence {
  font-size: 15px;
  color: var(--light);
  margin-bottom: 31px;
}

.featured .plan-cadence {
  color: #4A6272;
}

.divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 27px;
}

.featured .divider {
  background: #2E4455;
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.plan-feats li {
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.4;
}

.featured .plan-feats li {
  color: #7A9DAD;
}

.chk {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E4F3F9;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.chk svg {
  display: block;
}

.featured .chk {
  background: #2E4455;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: transparent;
  transition: all 0.15s;
  margin-top: auto;
}

.plan-cta:hover {
  border-color: var(--cyan);
  color: var(--cyan-d);
}

.featured .plan-cta {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}

.featured .plan-cta:hover {
  background: var(--cyan-d);
  border-color: var(--cyan-d);
}

.table-section {
  padding: 60px 80px 110px;
  background: #ffffff;
  border-top: none;
}

.table-container {
  max-width: 1210px;
  margin: 0 auto;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.matrix-table th {
  padding: 16px 20px;
  color: var(--navy);
}

.matrix-table th:first-child {
  font-size: 18px;
  width: 35%;
}

.matrix-table th:not(:first-child) {
  text-align: center;
  width: 16%;
}

.matrix-table th.featured-col-head {
  background: var(--bg);
  border-radius: 8px 8px 0 0;
}

.matrix-table tr.table-category-row {
  background: var(--bg2);
  font-weight: 700;
  color: var(--navy);
}

.matrix-table tr.table-category-row td {
  padding: 12px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.matrix-table tbody tr:not(.table-category-row) {
  border-bottom: 1px solid var(--border);
}

.matrix-table td {
  padding: 14px 20px;
}

.matrix-table td:first-child {
  font-weight: 500;
  color: var(--navy);
}

.matrix-table td:not(:first-child) {
  text-align: center;
  color: var(--muted);
}

.matrix-table td.cell-check {
  color: var(--cyan);
  font-weight: 600;
}

.matrix-table td.cell-dash {
  color: var(--light);
}

.matrix-table td.featured-col {
  background: var(--bg);
}

.cta-band {
  background: var(--navy);
  color: #ffffff;
  padding: 110px 80px;
  text-align: center;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-band p.cta-sub {
  font-size: 19px;
  color: #7A9DAD;
  margin: 0 auto 49px;
  max-width: 484px;
  line-height: 1.7;
}

.cta-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  margin-top: 30px;
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 30px;
}

.cta-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
}

.cta-info-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--cyan);
}

.cta-info-item a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cta-info-item a:hover {
  color: var(--cyan);
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.cta-action p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band p {
  font-size: 19px;
  color: #7A9DAD;
  margin: 0 auto 49px;
  max-width: 484px;
  line-height: 1.7;
}

.btn-white {
  background: #fff;
  color: var(--navy);
  padding: 18px 44px;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s;
}

.btn-white:hover {
  border-color: var(--cyan);
  color: var(--cyan-d);
  transform: translateY(-2px);
}

.vision-section {
  padding: 80px 20px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.vision-container {
  max-width: 800px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-content {
  line-height: 1.75;
  font-size: 17px;
  color: var(--muted);
}

.vision-lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
}

.vision-content p {
  margin-bottom: 20px;
}

.vision-content p:last-child {
  margin-bottom: 0;
}

.vision-content .highlight {
  color: var(--text);
}

section.border_bottom {
	border-bottom: 0em !important;
}

footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 40px 80px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer ul { 
	margin-bottom: 0em !important;
	padding: 0 !important;
}

footer .logo {
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-decoration: none;
  margin-top: 5px;
  padding: 0 !important;
  width: 0 !important;
}

.ftr-logo {
}

.ftr-logo span {
  color: var(--cyan);
}

.ftr-links {
  display: flex;
  gap: 31px;
  list-style: none;
 /*margin-bottom: 0 !important;*/
}

.ftr-links a {
  font-size: 15px;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.ftr-links a:hover {
  color: var(--navy);
}

.ftr-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--light);
  font-weight: 500;
}


@media (max-width: 1178px) {
  nav, .hero, .features, .how, .pricing, .cta-band, footer, .proof {
    padding-left: 36px;
    padding-right: 36px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .plans {
    grid-template-columns: 1fr 1fr;
  }
}



@media (max-width: 900px) {
  .table-section {
    padding: 40px 20px 60px;
  }

  .matrix-table th,
  .matrix-table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}



@media (max-width: 768px) {
  nav {
    padding: 0 22px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 22px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 40px;
  }

  .btn-nav {
    display: block;
    width: 100%;
  }

  .hero {
    padding: 80px 22px 66px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-demo {
    padding: 36px 27px;
  }

  .features, 
  .how, 
  .pricing, 
  .cta-band, 
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .feat-grid,
  .steps,
  .plans {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .step {
    padding: 0 0 44px;
  }

  .proof {
    flex-wrap: wrap;
    gap: 11px;
    padding: 22px;
  }

  .vision-section {
    padding: 60px 20px;
  }

  .vision-container {
    margin-bottom: 70px;
  }

  .vision-lead {
    font-size: 17px;
  }

  .cta-band h2 {
    font-size: 45px;
  }

  .cta-details-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }

  .cta-contact-info {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0;
    padding-bottom: 24px;
    align-items: center;
  }

  .cta-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .cta-action {
    align-items: center;
  }

  footer {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }
}
