.n8n-page {
  --n8n-primary: #ff6d2d;
  --n8n-primary-dark: #e85617;
  --n8n-ink: #171a2b;
  --n8n-sub: #5f6680;
  --n8n-bg: #f6f8ff;
  --n8n-card: #ffffff;
  --n8n-border: #e8ecf7;
  --n8n-success: #12b76a;
  --n8n-shadow: 0 18px 45px rgba(21, 27, 62, 0.08);
  color: var(--n8n-ink);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f6ff 100%);
}

.n8n-page .n8n-section {
  padding: 78px 0;
}

.breadcrumb-nav {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 14px 0;
  background: linear-gradient(180deg, #fbfcff 0%, #f7f9ff 100%);
  border-bottom: 1px solid #e8ecf7;
}

.breadcrumb-nav .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 14px;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: #9aa3bb;
}

.breadcrumb-nav .breadcrumb-item a {
  color: #4d5878;
  text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
  color: #1f2d57;
  text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active span {
  color: #1f2d57;
  font-weight: 600;
}

.n8n-page .n8n-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 64px;
}

.n8n-page .n8n-proof-strip {
  padding: 0 0 20px;
}

.n8n-page .n8n-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.n8n-page .n8n-proof-item {
  border: 1px solid var(--n8n-border);
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.n8n-page .n8n-proof-item h3 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 32px);
}

.n8n-page .n8n-proof-item p {
  margin: 6px 0 0;
  color: var(--n8n-sub);
  font-size: 14px;
}

.n8n-page .n8n-hero:before,
.n8n-page .n8n-hero:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.n8n-page .n8n-hero:before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -260px;
  background: radial-gradient(circle, rgba(255, 109, 45, 0.12), rgba(255, 109, 45, 0));
}

.n8n-page .n8n-hero:after {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.13), rgba(52, 211, 153, 0));
}

.n8n-page .n8n-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #9a3d16;
  background: rgba(255, 109, 45, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.n8n-page h1,
.n8n-page h2,
.n8n-page h3 {
  color: var(--n8n-ink);
  letter-spacing: -0.02em;
}

.n8n-page h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.n8n-page .n8n-lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: var(--n8n-sub);
  max-width: 650px;
  margin-bottom: 26px;
}

.n8n-page .n8n-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.n8n-page .n8n-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.n8n-page .n8n-btn-primary {
  background: linear-gradient(135deg, var(--n8n-primary), #ff8b5a);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 109, 45, 0.3);
}

.n8n-page .n8n-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 109, 45, 0.34);
}

.n8n-page .n8n-btn-outline {
  color: var(--n8n-primary-dark);
  background: #fff;
  border: 1px solid rgba(255, 109, 45, 0.35);
}

.n8n-page .n8n-btn-outline:hover {
  color: #b54613;
  border-color: rgba(255, 109, 45, 0.55);
  background: #fff7f3;
}

.n8n-page .n8n-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.n8n-page .n8n-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #2f3651;
}

.n8n-page .n8n-list li i {
  color: var(--n8n-success);
  margin-top: 4px;
}

.n8n-page .n8n-card {
  border: 1px solid var(--n8n-border);
  border-radius: 18px;
  padding: 26px;
  background: var(--n8n-card);
  box-shadow: var(--n8n-shadow);
}

.n8n-page .n8n-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

.n8n-page .n8n-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.n8n-page .n8n-feature {
  border: 1px solid var(--n8n-border);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.n8n-page .n8n-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--n8n-shadow);
}

.n8n-page .n8n-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a41, #fd9359);
}

.n8n-page .n8n-feature h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.n8n-page .n8n-feature p {
  color: var(--n8n-sub);
  margin: 0;
}

.n8n-page .n8n-pricing-wrap {
  border: 1px solid var(--n8n-border);
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
}

.n8n-page .n8n-pricing-card {
  border: 1px solid var(--n8n-border);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  height: 100%;
}

.n8n-page .n8n-pricing-card.popular {
  border-color: rgba(255, 109, 45, 0.5);
  box-shadow: 0 8px 30px rgba(255, 109, 45, 0.15);
}

.n8n-page .n8n-badge {
  display: inline-block;
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(255, 109, 45, 0.14);
  color: #9a3d16;
  font-weight: 700;
  margin-bottom: 8px;
}

.n8n-page .n8n-plan-title {
  margin: 0 0 10px;
  font-size: 19px;
}

.n8n-page .n8n-price {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 800;
  color: #171a2b;
}

.n8n-page .n8n-price small {
  font-size: 14px;
  font-weight: 600;
  color: #636a86;
}

.n8n-page .n8n-specs {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.n8n-page .n8n-specs li {
  padding: 6px 0;
  color: #39405d;
  border-bottom: 1px dashed #ebeff8;
}

.n8n-page .n8n-specs li:last-child {
  border-bottom: 0;
}

.n8n-page .n8n-section-title {
  margin-bottom: 22px;
}

.n8n-page .n8n-section-title h2 {
  font-size: clamp(28px, 3.1vw, 38px);
  margin-bottom: 10px;
}

.n8n-page .n8n-section-title p {
  color: var(--n8n-sub);
  margin: 0;
  max-width: 760px;
}

.n8n-page .n8n-faq {
  border: 1px solid var(--n8n-border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.n8n-page .n8n-faq h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.n8n-page .n8n-faq p {
  margin: 0;
  color: var(--n8n-sub);
}

.n8n-page .n8n-cta {
  border: 1px solid #ffd9c8;
  border-radius: 18px;
  padding: 30px;
  background: linear-gradient(135deg, #fff5ef, #fff);
  text-align: center;
}

.n8n-page .n8n-cta h2 {
  margin-bottom: 10px;
}

.n8n-page .n8n-cta p {
  color: var(--n8n-sub);
  margin-bottom: 18px;
}

.n8n-page .n8n-note {
  font-size: 13px;
  color: #7f849a;
  margin-top: 12px;
}

.n8n-page .n8n-usecases .n8n-feature {
  box-shadow: 0 10px 28px rgba(21, 27, 62, 0.05);
}

.n8n-page .n8n-mobile-cta {
  display: none;
}

.n8n-hosting-page .n8n-hero .n8n-card {
  background: linear-gradient(180deg, #fff 0%, #fff8f4 100%);
}

.n8n-hosting-page .n8n-hero-rich {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.n8n-hosting-page .n8n-hero-main,
.n8n-hosting-page .n8n-offer-card {
  border-radius: 18px;
  border: 1px solid var(--n8n-border);
}

.n8n-hosting-page .n8n-hero-main {
  background: #fff;
  box-shadow: var(--n8n-shadow);
  padding: 34px;
}

.n8n-hosting-page .n8n-offer-card {
  background: linear-gradient(160deg, #171a2b 0%, #111629 100%);
  color: #fff;
  box-shadow: var(--n8n-shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.n8n-hosting-page .n8n-offer-card h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 30px;
}

.n8n-hosting-page .n8n-offer-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}

.n8n-hosting-page .n8n-offer-pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  width: fit-content;
}

.n8n-hosting-page .n8n-counter {
  font-weight: 800;
  letter-spacing: 1.1px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  margin-bottom: 16px;
}

.n8n-hosting-page .n8n-integrations {
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid var(--n8n-border);
  background: #fff;
  overflow: hidden;
}

.n8n-hosting-page .n8n-integration-track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.n8n-hosting-page .n8n-chip-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 8px 12px;
  border: 1px solid #edf0f9;
  border-radius: 999px;
  background: #fff;
  color: #343c58;
  font-size: 13px;
  font-weight: 600;
}

.n8n-hosting-page .n8n-metrics {
  padding-top: 18px;
}

.n8n-hosting-page .n8n-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.n8n-hosting-page .n8n-metric-card {
  border: 1px solid var(--n8n-border);
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(25, 31, 67, 0.06);
}

.n8n-hosting-page .n8n-metric-card i {
  color: var(--n8n-primary);
  font-size: 18px;
  margin-bottom: 8px;
}

.n8n-hosting-page .n8n-metric-card h4 {
  margin: 0 0 3px;
  font-size: 30px;
  font-weight: 800;
  color: #171a2b;
}

.n8n-hosting-page .n8n-metric-card p {
  margin: 0;
  color: #646d8a;
}

.n8n-hosting-page .n8n-center-title {
  text-align: center;
}

.n8n-hosting-page .n8n-center-title p {
  margin-left: auto;
  margin-right: auto;
}

.n8n-hosting-page .n8n-packages .n8n-pricing-card {
  display: flex;
  flex-direction: column;
}

.n8n-hosting-page .n8n-packages .n8n-btn {
  margin-top: auto;
}

.n8n-hosting-page .n8n-template-grid .n8n-template-card {
  border: 1px solid var(--n8n-border);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  min-height: 190px;
}

.n8n-hosting-page .n8n-template-card h3 {
  font-size: 21px;
  margin: 10px 0 8px;
}

.n8n-hosting-page .n8n-template-card p {
  margin: 0;
  color: #636b88;
}

.n8n-hosting-page .n8n-dark-zone {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf3ff 100%);
  border-top: 1px solid #e8ecf7;
  border-bottom: 1px solid #e8ecf7;
}

.n8n-hosting-page .n8n-dark-zone .n8n-feature {
  box-shadow: none;
}

.n8n-server-page .n8n-hero .n8n-card {
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

@media (max-width: 1199px) {
  .n8n-page .n8n-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n8n-page .n8n-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .n8n-hosting-page .n8n-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .n8n-page .n8n-section,
  .n8n-page .n8n-hero {
    padding: 62px 0;
  }

  .n8n-page .n8n-grid-2,
  .n8n-page .n8n-grid-3 {
    grid-template-columns: 1fr;
  }

  .n8n-page .n8n-card {
    margin-top: 18px;
  }

  .n8n-hosting-page .n8n-hero-rich {
    grid-template-columns: 1fr;
  }

  .n8n-hosting-page .n8n-hero-main {
    padding: 24px;
  }

  .n8n-hosting-page .n8n-offer-card {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .breadcrumb-nav {
    padding: 10px 0;
  }

  .breadcrumb-nav .breadcrumb {
    font-size: 13px;
  }

  .n8n-page .n8n-btn {
    width: 100%;
  }

  .n8n-page .n8n-pricing-wrap {
    padding: 14px;
  }

  .n8n-page .n8n-proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .n8n-page .n8n-proof-item {
    text-align: left;
  }

  .n8n-page .n8n-proof-item h3 {
    font-size: 24px;
  }

  .n8n-page .n8n-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(17, 22, 41, 0.96);
    backdrop-filter: blur(4px);
  }

  .n8n-page .n8n-mobile-cta-inner {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .n8n-page .n8n-mobile-cta-inner span {
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
    max-width: 52%;
  }

  .n8n-page .n8n-mobile-cta .n8n-btn {
    width: auto;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
  }

  .n8n-page.n8n-server-page {
    padding-bottom: 84px;
  }

  .n8n-hosting-page .n8n-grid-4 {
    grid-template-columns: 1fr;
  }

  .n8n-hosting-page .n8n-metric-card h4 {
    font-size: 26px;
  }
}
