/* Top-level reset (per request) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f9f7ea;
  --card: #ffffff;
  --text: #123a36;
  --muted: rgba(18, 58, 54, 0.68);
  --muted-2: rgba(18, 58, 54, 0.52);
  --grey: #8a8a8a;
  --line: rgba(18, 58, 54, 0.1);
  --shadowColor: #b79b001a;
  --shadow: 15px 15px 0 var(--shadowColor);
  --radius: 14px;
  --radius-lg: 18px;
  --container: 1330px;
  --narrow: 968px;
  --btn: #008498;
  --btn-hover: #006b7a;
  --primary: #008498;
  --primaryHover: #0f95a9;
  --primaryActive: #27a8bb;
  --primaryLight: #d2e9ed;
  --primaryLightest: #f7fbfc;
  --primaryTransparent: rgba(0, 132, 152, 0.15);
  --red: #d00;
  --secondary: #c8b227;
  --subtitle: #90bac7;
  --darkGreyTransparent: #444444f5;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    'Poppins',
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    'Apple Color Emoji',
    'Segoe UI Emoji';
  background: var(--bg);
  color: var(--text);
  line-height: 1.35;
  font-size: 15px;
}

.centered {
  text-align: center;
}

/* Helpers */
.container {
  width: min(var(--container), calc(100vw - 2rem), 100%);
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .container {
    width: min(var(--container), calc(100% - 160px));
  }
}

p a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

.section {
  padding: 60px 1rem 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.top-section {
  padding-top: 20px;
}

@media (max-width: 880px) {
  .section {
    padding: 40px 1rem 80px;
    min-height: unset;
  }
}

.hero:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.section:last-of-type {
  border-bottom: none;
}

.section-narrow {
  width: min(var(--narrow), 100%);
  margin: 0 auto;
}

.section-blog {
  width: min(760px, 100%);
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 4rem;
}

.section-title + .section-subtitle {
  margin-top: -3.5rem;
}

.section-title + .section-subtitle-small {
  margin-top: -3.5rem;
}

.section-subtitle {
  margin-top: 8px;
  font-size: 24px;
  color: var(--subtitle);
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-small {
  margin-top: 8px;
  font-size: 20px;
  color: var(--subtitle);
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.kicker {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.muted {
  color: black;
}

/* Top nav */
.site-header-container {
  padding: 24px 0 40px;
  min-height: 90px;
}

.site-header {
  position: relative;
  z-index: 100;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px var(--shadowColor);
  padding: 12px 32px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.sticky .container {
  width: auto;
  margin: 0;
}

.site-header.sticky .nav {
  gap: 24px;
}

.site-header.sticky .nav-link {
  padding: 8px 24px;
}

.site-header.sticky .btn-small {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.site-header.sticky .btn.secondary:hover {
  background: var(--primaryTransparent);
  border-color: var(--primaryTransparent);
  box-shadow: none;
}

@media (min-width: 881px) {
  .site-header-container {
    min-height: 112px;
  }

  .nav-link {
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .site-header-container {
    padding: 40px 0;
    min-height: 128px;
  }

  .site-header .container {
    width: calc(100% - 160px);
    max-width: none;
  }
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 132px;
  height: 26px;
  background-image: url('/assets/images/logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 15px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  padding: 0 24px;
  white-space: nowrap;
}

.nav-link span {
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  line-height: 1.8;
}

.nav-link:hover span,
.nav-link.active span {
  border-bottom-color: var(--primary);
}

.nav-dropdown .nav-link:hover span {
  border-bottom-color: transparent;
}

.nav-dropdown .nav-link {
  cursor: default;
}

/* Dropdown styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.nav-dropdown-link:hover {
  background: var(--primaryTransparent);
}

.nav-dropdown-arrow {
  display: none;
  font-size: 20px;
  line-height: 10px !important;
  height: 24px;
  width: 24px;
  background: url('/assets/images/carret.svg') no-repeat center;
  overflow: hidden;
  color: transparent;
  text-overflow: -10000px;
  vertical-align: middle;
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger-close {
  align-self: flex-end;
  margin-bottom: 16px;
}

.hamburger-close span {
  background: var(--primary);
}

.hamburger-close.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-close.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-close.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero */
.hero {
  min-height: calc(100vh - 150px);
  padding-top: 0;
  justify-content: center !important;
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.hero-container {
  position: relative;
  height: 100%;
}

@media (min-width: 1500px) {
  .hero-container {
    width: 80vw;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-top: 10px;
  font-size: max(28px, min(100px, 2.5vw));
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: var(--primary);
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
    line-height: 44px;
  }
}

#cycling-text {
  border-bottom: 2px solid var(--secondary);
  transition: opacity 0.3s ease;
}

.desktop {
  display: none;
}

.subhead {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--primary);
  font-size: 20px;
  max-width: 580px;
}

.hero-actions {
  margin-top: 14px;
}

.btn {
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 60px;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--btn);
  color: #fff;
  box-shadow: 15px 15px 0 var(--shadowColor);
}

.btn.primary:hover {
  background: var(--primaryHover);
  box-shadow: 18px 18px 0 var(--shadowColor);
}

.btn.primary:active {
  background: var(--primaryActive);
  box-shadow: 18px 18px 0 var(--shadowColor);
  transition: none;
}

.btn.no-shadow {
  box-shadow: none;
}

.btn.no-shadow:hover {
  box-shadow: none;
}

.btn.no-shadow:active {
  box-shadow: none;
}

.btn.secondary {
  border: 2px solid rgba(0, 132, 152, 0.15);
  background: transparent;
  color: var(--primary);
}

.btn.secondary:hover {
  border-color: white;
  background: white;
  box-shadow: 18px 18px 0 var(--shadowColor);
}

.btn.secondary:active {
  border-color: #f5f5f5;
  background: #f5f5f5;
  transition: none;
}

.btn.btn-small {
  height: 48px;
  font-size: 15px;
  padding: 0 24px;
}

.btn.full {
  width: 100%;
}

.card .btn {
  box-shadow: none;
}

.card .btn:hover {
  box-shadow: none;
}

.card .btn:active {
  box-shadow: none;
}

.small-label {
  margin-top: 3rem;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 1rem;
}

.hero-icons {
  display: flex;
  gap: 32px;
  align-items: center;
}

.icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.icon {
  display: block;
}

.icon-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  background: var(--darkGreyTransparent);
  color: white;
  font-size: 13px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.icon-wrapper:hover .icon-tooltip {
  opacity: 1;
}

/* Screenshot card */
.hero-shot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1193px;
  height: 899px;
  max-width: min(calc(50vw - 180px), 1193px);
  //max-height: max(550px, min(calc(100vh - 110px - 80px), 899px));
  max-height: min(100%, 66% + 190px);
  z-index: 1;
}

.shot-img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 22px;
  object-fit: cover;
  background: rgba(18, 58, 54, 0.07);
  box-shadow: -15px 25px 0 var(--shadowColor);
  background: url('/assets/images/desktop-screenshot.png') no-repeat left top;
  background-size: 1197px 899px;
}

/* Shared card styles */
.card {
  background: var(--card);
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 1rem 2rem;
  max-width: 470px;
}

.card-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-media img {
  max-width: 100%;
  margin: 40px 0;
  object-fit: contain;
  border-radius: 10px;
}

.card-text {
  margin-top: 10px;
  font-size: 20px;
  color: var(--primary);
  text-align: center;
  margin: 0 0 0.5rem;
}

/* Integrations 2x2 */
.cards-2x2 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}

.logo-row {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 6px 0;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 105px;
}

.logo-container {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-row img {
  object-fit: contain;
}

.logo-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Production section */
.mini-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

.mini-card img {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(18, 58, 54, 0.07);
  border: 1px solid rgba(18, 58, 54, 0.08);
}

.two-col {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.captions {
  margin-top: 8px;
}

.caption {
  font-size: 20px;
  text-align: center;
  color: var(--primary);
}

/* Purchasing */
.purchase-content {
  width: 100%;
  max-width: 792px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.purchase-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  width: 360px;
  max-width: 100%;
}

.purchase-card img {
  max-width: 100%;
}

.purchase-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.purchase-card-notification {
  padding: 0;
  overflow: hidden;
}

.purchase-card-notification img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}

.purchase-text {
  color: var(--primary);
}

.purchase-text h3 {
  font-size: 20px;
  font-weight: 500;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 20px;
  color: black;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 132, 152, 0.12);
  color: var(--btn);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}

/* Founder quote */
.quote {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  margin: 0 auto;
}

.quote-card {
  background: var(--card);
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  position: relative;
  text-align: center;
  padding: 2rem;
}

.quote-avatar {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(18, 58, 54, 0.07);
}

.quote-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  text-align: left;
  gap: 1rem;
  margin-bottom: -1rem;
  position: relative;
  z-index: 1;
}

.quote-meta {
}

.quote-name {
  font-size: 20px;
  font-weight: 500;
}

.quote-role {
}

.quote-text {
  font-size: 24px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem auto;
}

/* Pinterest-style masonry layout for reviews page */
.testimonials-masonry {
  columns: 2;
  column-gap: 4rem;
  margin: 4rem auto;
  max-width: 980px;
}

.testimonials-masonry .t-card {
  break-inside: avoid;
  margin-bottom: 2rem;
  width: 100%;
}

.t-card {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: unset;
}

.testimonials-masonry > .t-card {
  transform: unset !important;
}

.t-card--center {
  grid-column: 1 / -1;
  margin: 0 auto;
}

.industry-testimonial {
  margin: 8rem auto;
}

.t-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
}

.t-avatar {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  object-fit: cover;
}

.t-name {
  font-weight: 500;
}

.t-role {
  font-size: 13px;
}

.t-text {
  background: var(--card);
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  font-size: 20px;
  text-align: center;
}

/* Pricing */
.section-bottom {
  padding-bottom: 56px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 auto;
}

.pricing-plan-card {
  background: var(--card);
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-plan-card--featured {
  border: 2px solid var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: black;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary);
}

.price-period {
  font-size: 18px;
  color: var(--primary);
}

.pricing-description {
  color: black;
  font-size: 16px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--primary);
}

.pricing-card {
  margin: 1rem auto 0;
  max-width: 460px;
  width: 100%;
  background: var(--card);
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.pricing-card h2 {
  margin: 0.5rem 0 2rem;
  text-align: center;
}

.pricing-card .pricing-list {
  gap: 8px;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
  max-width: 320px;
  margin: 0 auto 3rem;
}

/* Billing Toggle */
.billing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.billing-label {
  font-size: 16px;
  color: var(--grey);
  font-weight: 400;
  transition: all 0.2s ease;
  line-height: 20px;
  cursor: pointer;
}

.billing-label.active {
  color: var(--text);
  font-weight: 500;
}

.billing-toggle {
  position: relative;
}

.billing-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

.billing-toggle-switch {
  display: block;
  width: 36px;
  height: 20px;
  background: var(--card);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--shadowColor);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.billing-toggle-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.billing-toggle-input:checked + .billing-toggle-switch::before {
  transform: translateX(16px);
}

/* Comparison Table */
.comparison-table-container {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  table-layout: fixed;
}

.comparison-table th {
  background: transparent;
  color: black;
  font-weight: 600;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 18px;
  width: 20%;
}

.comparison-table th:first-child {
  text-align: left;
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary);
}

.comparison-table th.feature-column {
  text-align: left;
  background: transparent;
  color: var(--primary);
  width: 20%;
}

.comparison-table th.featured-column {
  background: transparent;
  color: black;
  position: relative;
}

.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--text);
}

.comparison-table td.feature-name {
  text-align: left;
  font-weight: 500;
  color: black;
  background: transparent;
}

.comparison-table .featured-column + td {
  background: var(--primaryLightest);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .checkmark-circle,
.comparison-table .x {
  margin: 0 auto;
}

/* FAQ Accordions */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-header:hover {
  color: var(--primaryHover);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  flex: 1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2.5rem 0;
}

.faq-item.open .faq-content {
  max-height: 200px;
  padding: 0 2.5rem 1.5rem;
}

.faq-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive pricing grid */
@media (max-width: 1280px) {
  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .pricing-plan-card {
    max-width: 100%;
  }

  .comparison-table-container {
    margin: 0 -1rem;
    width: unset;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 13px;
  }

  .comparison-table th, .comparison-table .plan-name {
    font-size: 13px;
  }
}

/* Footer */
.site-footer {
  padding: 60px 0 26px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--primaryTransparent);
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 880px) {
  .site-footer {
    padding: 40px 0 26px;
    margin-top: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-column h3 {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-social {
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-column:first-child {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-card {
  padding: 3rem;
  max-width: unset;
}

.contact-form-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--card);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.contact-section p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--primaryHover);
  text-decoration: underline;
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-social a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-social a:hover {
  color: var(--primaryHover);
  text-decoration: underline;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .contact-info {
    gap: 2rem;
  }
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 18px 18px 0 var(--shadowColor);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 7 / 5;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.blog-card-date {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 880px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card-content {
    padding: 1rem;
  }
  
  .blog-card-title {
    font-size: 16px;
  }
}

/* Our Story Page */
.story-image {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: -3rem;
}

.story-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.story-section {
  margin-bottom: 3rem;
}

.story-section h3, .story-section h4, .story-section h5, .story-section h6 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-section h4 {
  font-size: 20px;
}

.story-section h5 {
  font-size: 18px;
}

.story-section h6 {
  font-size: 15px;
}

.story-section {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

.story-section p {
  margin-bottom: 1.5rem;
}

.story-section p:last-child {
  margin-bottom: 0;
}

.story-section a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.story-section a:hover {
  text-decoration: underline;
}

/* Blog post content formatting */
.story-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin: 2.5rem 0 1.5rem 0;
  line-height: 1.3;
}

.story-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin: 2rem 0 1rem 0;
  line-height: 1.3;
}

.story-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.3;
}

.story-section ul,
.story-section ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.story-section ul li,
.story-section ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.story-section ul {
  list-style-type: disc;
}

.story-section ol {
  list-style-type: decimal;
}

.story-section ul ul,
.story-section ol ol,
.story-section ul ol,
.story-section ol ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.story-section img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: var(--radius);
}

.story-section blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--primaryLightest);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  font-style: italic;
  color: var(--text);
}

.story-section blockquote p {
  margin: 0;
}

.story-section code {
  background: var(--primaryLightest);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
  color: var(--primary);
}

.story-section pre {
  background: var(--primaryLightest);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
}

.story-section pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}

.story-section strong {
  font-weight: 600;
  color: var(--primary);
}

.story-section em {
  font-style: italic;
}

.story-section hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 3rem 0;
}

@media (max-width: 880px) {
  .story-section {
    margin-bottom: 2.5rem;
  }

  .story-section h2 {
    font-size: 22px;
    margin: 2rem 0 1rem 0;
  }

  .story-section h3 {
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .story-section h4 {
    font-size: 18px;
    margin: 1.5rem 0 0.75rem 0;
  }

  .story-section p {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .story-section ul,
  .story-section ol {
    padding-left: 1.5rem;
  }

  .story-section blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }

  .story-section pre {
    padding: 1rem;
    margin: 1rem 0;
  }
}

/* Error Page */
.error-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 880px) {
  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Team Page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-photo {
  margin-bottom: 2rem;
}

.team-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
}

.team-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team-title {
  font-size: 18px;
  color: var(--text);
  margin: 0;
}

@media (max-width: 880px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team-photo img {
    width: 150px;
    height: 150px;
  }

  .team-name {
    font-size: 20px;
  }

  .team-title {
    font-size: 16px;
  }
}

.production-board {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
  gap: 1rem;
}

.new-batch {
  background: var(--primaryLightest);
  border: 1px solid var(--primaryLight);
  padding: 2rem;
}

.new-batch .card-text {
  text-align: unset;
  font-size: 15px;
}

.new-batch-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.new-batch-row > label {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
}

.trace-lot {
  white-space: nowrap;
}

.carret {
  width: 24px;
  height: 24px;
  display: inline-block;
  align-self: center;
  background-image: url('/assets/images/carret.svg');
  margin: -0.3rem 0;
}

.sparkle {
  width: 24px;
  height: 24px;
  display: inline-block;
  align-self: center;
  background-image: url('/assets/images/sparkle.svg');
}

.checkmark {
  width: 24px;
  height: 24px;
  display: inline-block;
  align-self: center;
  background-image: url('/assets/images/checkmark.svg');
}

.checkmark-circle {
  width: 24px;
  height: 24px;
  display: inline-block;
  align-self: center;
  background-image: url('/assets/images/checkmark-circle.svg');
}

.x {
  width: 24px;
  height: 24px;
  display: inline-block;
  align-self: center;
  background-image: url('/assets/images/x.svg');
  background-position: center;
  background-repeat: no-repeat;
}

.history {
  padding: 2rem;
}

.history-log {
  font-weight: 500;
}

.history-log strong {
  font-weight: 600;
}

.batch-number {
  border-bottom: 1px solid currentColor;
}

.history-date {
  font-size: 13px;
}

.history {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.new-batch-row > * {
}

.dummy-input {
  border: 1px solid var(--primaryLight);
  background: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.production-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.production-col .caption {
  padding: 0 2rem;
}

.billing-period {
  font-size: 11px;
  color: var(--grey);
  visibility: hidden;
}

.yearly .billing-period {
  visibility: visible;
}

.section.cta {
  text-align: center;
}

.section.cta > h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary);
}

.industry-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  margin: 5rem 0 8rem;
}

.industry-section-reversed {
  flex-direction: row-reverse;
}

.industry-section > * {
  flex: 1;
}

.industry-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.industry-image > img {
  width: 100%;
  display: block;
}

.industry-image.no-shadow {
  box-shadow: none;
  border-radius: 0;
}

.industry-section-content {
  line-height: 1.5em;
}

.industry-section-content h2 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
}

.industry-section-content p {
  margin: 0.75rem 0;
}

.industry-video {
  aspect-ratio: 16 / 9;
}

.industry-video > iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 880px) {
  .industry-section {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  .industry-section-reversed {
    flex-direction: column;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  transition: all 0.2s ease;
}

.pagination-number:hover {
  background: var(--primaryTransparent);
}

.pagination-number.current {
  background: var(--primary);
  color: var(--bg);
}

.pagination-prev,
.pagination-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 40px;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  transition: all 0.2s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
  background: var(--primaryTransparent);
}

.pagination-prev.disabled,
.pagination-next.disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.pagination-prev.disabled:hover,
.pagination-next.disabled:hover {
  background: transparent;
}

.pagination-ellipsis {
  padding: 0 8px;
  color: var(--muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1023px) {
  .nav-link {
    padding: 0 16px;
  }
}

@media (max-width: 880px) {
  .hero-shot {
    display: none;
  }
}

@media (min-width: 1281px) {
  .t-card:first-child {
    transform: translate(-50px, -50px);
  }

  .t-card:last-child {
    transform: translate(50px, 50px);
  }
}

@media (min-width: 881px) {
  .desktop {
    display: block;
  }

  .mobile {
    display: none !important;
  }

  .section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card.new-batch,
  .card.history {
    height: 260px;
  }

  .purchase-row {
    flex-direction: row;
    gap: 5rem;
    margin: 0 0 3rem;
  }

  .purchase-card {
    width: 360px;
    height: 194px;
  }
}

@media (max-width: 880px) {
  .nav {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .hamburger {
    display: flex;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--card);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
  }

  .nav-links.navbar-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
  }

  .nav-link:hover {
    background: transparent;
  }

  .nav-link:hover span {
    border-bottom-color: transparent;
  }

  /* Mobile dropdown styles */
  .nav-dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }

  .nav-dropdown.open .nav-dropdown-content {
    max-height: 200px;
  }

  .nav-dropdown-link {
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 4px;
  }

  .nav-dropdown .nav-link {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-dropdown-arrow {
    margin-right: -24px;
  }

  .nav-dropdown .nav-dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
  }

  .btn:hover {
    background: var(--btn);
    border-color: rgba(0, 132, 152, 0.15);
    box-shadow: 15px 15px 0 var(--shadowColor);
  }

  .btn.secondary:hover {
    background: transparent;
    border-color: rgba(0, 132, 152, 0.15);
    box-shadow: 15px 15px 0 var(--shadowColor);
  }

  .nav-cta {
    display: none;
  }

  .shot-img {
    height: 100%;
  }

  .hero-icons {
    width: calc(100vw - 2rem);
    justify-content: space-around;
    gap: 1rem;
  }

  .cards-2x2 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
  }

  .cards-2x2 .card {
    width: 470px;
    max-width: calc(100vw - 2rem);
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .purchase-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonials-masonry {
    columns: 1;
  }

  .t-card--center {
    grid-column: auto;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .logo-row {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
  }

  .logo-item {
    width: 90px;
  }

  .logo-name {
    font-size: 11px;
  }

  .card-text {
    font-size: 15px;
  }

  .subhead {
    font-size: 18px;
  }

  .purchase-text {
    text-align: center;
  }

  .production-column {
    align-items: center;
  }

  .production-column img {
  }

  .hero-actions .btn {
    display: flex;
  }

  .card-media img {
    margin: 1rem 0 2rem;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }

  .caption {
    font-size: 15px;
  }

  .purchase-text h3 {
    font-size: 15px;
  }

  .purchase-text p {
    font-size: 13px;
  }

  .purchase-row {
    margin-bottom: 2rem;
    gap: 1.5rem;
  }

  .quote {
    margin: 0 auto;
  }

  .quote-card {
    margin: 0;
  }

  .quote-avatar {
    width: 80px;
    height: 80px;
  }

  .quote-author {
    gap: 10px;
    margin-bottom: -0.5rem;
  }

  .quote-name {
    font-size: 15px;
  }

  .quote-role {
    font-size: 13px;
  }

  .quote-text,
  .t-text {
    font-size: 15px;
  }

  .quote,
  .t-card {
    max-width: 420px;
  }

  .testimonials {
    margin: 1rem auto;
  }

  .production-board {
    margin-bottom: 1rem;
  }


  .site-header.sticky {
    padding: 12px 1rem;
  }
}
