@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  --mkt-primary: #f26522;
  --mkt-primary-hover: #e05518;
  --mkt-primary-soft: rgba(242, 101, 34, 0.1);
  --mkt-primary-glow: rgba(242, 101, 34, 0.25);
  --mkt-accent: #0d9488;
  --mkt-bg: #faf9f7;
  --mkt-bg-alt: #f3f1ec;
  --mkt-surface: #ffffff;
  --mkt-text: #1c1917;
  --mkt-text-secondary: #44403c;
  --mkt-text-muted: #78716c;
  --mkt-border: #e8e6e1;
  --mkt-radius: 1rem;
  --mkt-radius-lg: 1.25rem;
  --mkt-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
  --mkt-shadow-lg: 0 20px 48px rgba(28, 25, 23, 0.12);
  --mkt-font: "Inter", system-ui, sans-serif;
  --mkt-max: 1140px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body.mkt-body {
  margin: 0;
  font-family: var(--mkt-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mkt-text);
  background: var(--mkt-bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.mkt-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--mkt-text);
  font-weight: 700;
  font-size: 1.125rem;
}
.mkt-brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, var(--mkt-primary), #ff8c42);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.mkt-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mkt-nav__link {
  padding: 0.5rem 0.875rem;
  color: var(--mkt-text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: color 0.15s, background 0.15s;
}
.mkt-nav__link:hover {
  color: var(--mkt-text);
  background: var(--mkt-bg-alt);
}

.mkt-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.mkt-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.mkt-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mkt-text);
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.625rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-mkt-primary {
  background: var(--mkt-primary);
  color: #fff;
  box-shadow: 0 2px 8px var(--mkt-primary-glow);
}
.btn-mkt-primary:hover {
  background: var(--mkt-primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--mkt-primary-glow);
}

.btn-mkt-ghost {
  background: transparent;
  color: var(--mkt-text-secondary);
  border: 1px solid var(--mkt-border);
}
.btn-mkt-ghost:hover {
  background: var(--mkt-surface);
  color: var(--mkt-text);
}

.btn-mkt-outline {
  background: var(--mkt-surface);
  color: var(--mkt-primary);
  border: 2px solid var(--mkt-primary);
}
.btn-mkt-outline:hover {
  background: var(--mkt-primary-soft);
  color: var(--mkt-primary-hover);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.mkt-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--mkt-bg) 100%);
}
.mkt-hero__badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--mkt-primary-soft);
  color: var(--mkt-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.mkt-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin: 0 auto 1.25rem;
  color: var(--mkt-text);
}
.mkt-hero__lead {
  font-size: 1.125rem;
  color: var(--mkt-text-muted);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.mkt-hero__visual {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--mkt-radius-lg);
  background: linear-gradient(145deg, #fff 0%, var(--mkt-bg-alt) 100%);
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow-lg);
  padding: 2rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mkt-text-muted);
  font-size: 0.875rem;
}

.mkt-section {
  padding: 4.5rem 0;
}
.mkt-section--alt {
  background: var(--mkt-bg-alt);
}
.mkt-section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.mkt-section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.mkt-section__header p {
  color: var(--mkt-text-muted);
  margin: 0;
}

.mkt-grid {
  display: grid;
  gap: 1.5rem;
}
.mkt-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.mkt-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.mkt-card {
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mkt-card:hover {
  box-shadow: var(--mkt-shadow);
  transform: translateY(-2px);
}
.mkt-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--mkt-primary-soft);
  color: var(--mkt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.mkt-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mkt-card p {
  font-size: 0.9375rem;
  color: var(--mkt-text-muted);
  margin: 0;
  line-height: 1.6;
}

.mkt-pricing-card {
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mkt-pricing-card--featured {
  border-color: var(--mkt-primary);
  box-shadow: var(--mkt-shadow-lg);
  position: relative;
}
.mkt-pricing-card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mkt-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
}
.mkt-pricing-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mkt-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.mkt-pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.mkt-pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mkt-text-muted);
}
.mkt-pricing-card__desc {
  font-size: 0.875rem;
  color: var(--mkt-text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mkt-border);
}
.mkt-pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.mkt-pricing-card ul li {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--mkt-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}
.mkt-pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mkt-accent);
  font-weight: 700;
}
.mkt-pricing-card .btn {
  width: 100%;
}

.mkt-cta {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: var(--mkt-radius-lg);
  text-align: center;
  margin: 2rem 0;
}
.mkt-cta h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.mkt-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .mkt-contact-grid {
    grid-template-columns: 1fr;
  }
}

.mkt-form .form-group {
  margin-bottom: 1.25rem;
}
.mkt-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--mkt-text-secondary);
}
.mkt-form input, .mkt-form textarea, .mkt-form select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--mkt-border);
  border-radius: 0.625rem;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--mkt-surface);
}
.mkt-form input:focus, .mkt-form textarea:focus, .mkt-form select:focus {
  outline: none;
  border-color: var(--mkt-primary);
  box-shadow: 0 0 0 3px var(--mkt-primary-glow);
}
.mkt-form textarea {
  min-height: 120px;
  resize: vertical;
}

.mkt-legal {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.mkt-legal h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mkt-legal .mkt-legal__updated {
  color: var(--mkt-text-muted);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}
.mkt-legal h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--mkt-text);
}
.mkt-legal p, .mkt-legal li {
  color: var(--mkt-text-secondary);
  line-height: 1.75;
}
.mkt-legal ul, .mkt-legal ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.mkt-legal a {
  color: var(--mkt-primary);
}

.mkt-page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--mkt-bg));
}
.mkt-page-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.mkt-page-hero p {
  color: var(--mkt-text-muted);
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.mkt-auth-card {
  max-width: 28rem;
  margin: 3rem auto 5rem;
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--mkt-shadow);
  text-align: center;
}
.mkt-auth-card h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.mkt-auth-card p {
  color: var(--mkt-text-muted);
  margin-bottom: 1.5rem;
}
.mkt-auth-card .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.mkt-footer {
  background: #1c1917;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.mkt-footer .mkt-brand {
  color: #fff;
}
.mkt-footer .mkt-brand__mark {
  flex-shrink: 0;
}
.mkt-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .mkt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.mkt-footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 280px;
}
.mkt-footer__col h6 {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.mkt-footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: color 0.15s;
}
.mkt-footer__col a:hover {
  color: #fff;
}
.mkt-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .mkt-nav__toggle {
    display: flex;
  }
  .mkt-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--mkt-surface);
    border-bottom: 1px solid var(--mkt-border);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--mkt-shadow);
  }
  .mkt-nav__menu.is-open {
    display: flex;
  }
  .mkt-nav__actions {
    margin-left: 0;
    margin-top: 0.5rem;
    flex-direction: column;
  }
  .mkt-nav {
    position: relative;
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=vanopa-marketing.css.map */
