@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: #1b262a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.btn-primary {
  background: #10b4d6;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background: rgb(13.8713043478, 156.052173913, 185.5286956522);
}
.btn.btn-white {
  background: #ffffff;
  color: #10b4d6;
}
.btn.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}
.btn.btn-small {
  padding: 10px 20px;
}
.btn.btn-full {
  width: 100%;
  margin-top: 8px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #10b4d6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e2eaec;
  backdrop-filter: blur(14px);
}
.site-header .nav-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .brand-logo img {
  width: 180px;
  height: auto;
}
.site-header .desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .nav-links a {
  color: rgba(27, 38, 42, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-header .nav-links a:hover {
  color: #10b4d6;
}
.site-header .mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1b262a;
  cursor: pointer;
}
.site-header .mobile-toggle .icon-menu,
.site-header .mobile-toggle .icon-menu::before,
.site-header .mobile-toggle .icon-menu::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header .mobile-toggle .icon-menu {
  position: relative;
}
.site-header .mobile-toggle .icon-menu::before, .site-header .mobile-toggle .icon-menu::after {
  content: "";
  position: absolute;
  left: 0;
}
.site-header .mobile-toggle .icon-menu::before {
  top: -7px;
}
.site-header .mobile-toggle .icon-menu::after {
  top: 7px;
}
.site-header .mobile-toggle.is-open .icon-menu {
  transform: rotate(45deg);
}
.site-header .mobile-toggle.is-open .icon-menu::before {
  opacity: 0;
}
.site-header .mobile-toggle.is-open .icon-menu::after {
  top: 0;
  transform: rotate(-90deg);
}
.site-header .mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 24px 22px;
  background: #ffffff;
  border-top: 1px solid #e2eaec;
}
.site-header .mobile-menu a:not(.btn) {
  color: rgba(27, 38, 42, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section .hero-bg,
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-section .hero-bg {
  object-fit: cover;
  object-position: center;
}
.hero-section .hero-overlay {
  background: linear-gradient(105deg, rgba(16, 180, 214, 0.9) 0%, rgba(13, 179, 213, 0.82) 45%, rgba(16, 180, 214, 0.5) 100%);
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  /* width: 100%; */
  padding-top: 96px;
  padding-bottom: 64px;
}
.hero-section .hero-copy {
  max-width: 700px;
  margin: 0 0 24px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero-copy>div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-section h1 {
  
  color: #ffffff;
  /* font-size: clamp(40px, 5vw, 64px); */
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0;
}

.hero-section h2 {
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  margin: 0;
}

.hero-section p {
  max-width: 590px;
  /* margin: 0 0 32px; */
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.72;
}

.section-muted {
  background: #f1f5f6;
}

.pain-section,
.features-section,
.about-section,
.cta-section {
  padding: 96px 0;
}

.pain-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-intro {
  margin-bottom: 56px;
}
.section-intro.narrow {
  max-width: 672px;
}
.section-intro h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.section-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #5a7078;
  font-size: 18px;
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card,
.feature-card {
  background: #ffffff;
  border: 1px solid #e2eaec;
  border-radius: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.info-card:hover,
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(27, 38, 42, 0.08);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.info-card .icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #10b4d6;
  background: #c9f6ff;
  font-size: 20px;
}
.info-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.info-card p {
  margin: 0;
  color: #5a7078;
  font-size: 14px;
  line-height: 1.7;
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 64px;
}
.features-header .features-title {
  /* max-width: 360px; */
}
.features-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.features-header p {
  margin: 12px 0 0;
  color: #5a7078;
  line-height: 1.7;
}
.features-header .features-copy {
  /* max-width: 470px; */
  justify-self: end;
}
.features-header .features-copy .btn {
  margin-top: 24px;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
}
.feature-card .tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 180, 214, 0.3);
  border-radius: 999px;
  background: #c9f6ff8f;
  color: #10b4d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.feature-card .tag svg {
  width: 14px;
  height: 14px;
}
.feature-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}
.feature-card p {
  margin: 0;
  color: #5a7078;
  font-size: 14px;
  line-height: 1.75;
}
.feature-card blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #10b4d6;
  color: rgba(27, 38, 42, 0.72);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  height: 520px;
  overflow: hidden;
  border-radius: 28px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-content h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.about-content p:not(.eyebrow) {
  margin: 0;
  color: #5a7078;
  line-height: 1.75;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  /* padding-left: 30px; */
  color: rgba(27, 38, 42, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.benefit-list li img {
  fill: #10b4d6;
}

/* .benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10b4d6;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
} */

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #10b4d6 0%, #0db3d5 60%, #0e9fc0 100%);
}
.cta-section .circle {
  position: absolute;
  border-radius: 50%;
  background: #c9f6ff;
  opacity: 0.1;
  pointer-events: none;
}
.cta-section .circle-top {
  top: -96px;
  right: -96px;
  width: 384px;
  height: 384px;
}
.cta-section .circle-bottom {
  bottom: -64px;
  left: -64px;
  width: 256px;
  height: 256px;
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.cta-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.qr-card {
  width: 160px;
  height: 160px;
  display: inline-flex;
  padding: 12px;
  margin: 8px 0;
  border-radius: 14px;
  background: #ffffff;
}
.qr-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.contact-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.contact-links a svg {
  width: 24px;
  height: 24px;
}

.form-card {
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(27, 38, 42, 0.18);
}

.pardot-form-wrapper {
  width: 100%;
}
.pardot-form-wrapper iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  transition: height 0.2s ease;
}
.form-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
}
.form-card > p {
  margin: 0 0 24px;
  color: #5a7078;
  font-size: 14px;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label {
  color: #1b262a;
  font-size: 14px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e2eaec;
  border-radius: 10px;
  background: #f1f5f6;
  color: #1b262a;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #10b4d6;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(90, 112, 120, 0.75);
}
.contact-form textarea {
  min-height: 92px;
  resize: vertical;
}

.site-footer {
  padding: 16px 0;
  background: #1b262a;
}
.site-footer .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer .footer-logo img {
  width: 180px;
  height: auto;
}
.site-footer .footer-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-footer .footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
}
.site-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  transition: color 0.2s ease;
}
.site-footer .footer-links a:hover {
  color: #10b4d6;
}

@media (max-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 420px;
  }
  .features-header {
    grid-template-columns: 1fr;
  }
  .features-header .features-copy {
    justify-self: start;
    /* max-width: 640px; */
  }
  .pardot-form-wrapper iframe {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .container {
    width: min(100% - 32px, 1280px);
  }
  .site-header .desktop-nav {
    display: none;
  }
  .site-header .mobile-toggle {
    display: block;
  }
  .site-header .mobile-menu.is-open {
    display: flex;
  }
  .hero-section {
    min-height: 760px;
  }
  .hero-section h1 {
    font-size: 38px;
  }
  .hero-section p {
    font-size: 16px;
  }
  .pain-section,
  .features-section,
  .about-section,
  .cta-section {
    padding: 72px 0;
  }
  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .features-header {
    margin-bottom: 40px;
  }
  .feature-card,
  .form-card {
    padding: 24px;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-wrap,
  .site-footer .footer-meta {
    flex-direction: column;
    text-align: center;
  }
  .pardot-form-wrapper iframe {
    height: 800px;
  }
}

/*# sourceMappingURL=styles.css.map */
