@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  src: url('../webfonts/fa-solid-900.woff2') format('woff2'),
       url('../webfonts/fa-solid-900.ttf') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/fa-regular-400.woff2') format('woff2'),
       url('../webfonts/fa-regular-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/fa-brands-400.woff2') format('woff2'),
       url('../webfonts/fa-brands-400.ttf') format('truetype');
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #0d0d12;
  color: #f1f5f9;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #EC4899;
  text-decoration: none;
}
a:hover {
  color: #f472b6;
}

.navbar {
  background-color: #0d0d12;
  border-bottom: 1px solid transparent;
  padding: 16px 0;
}
.navbar-brand {
  font-size: 22px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: #EC4899;
}
.navbar-nav .nav-link {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f1f5f9;
}
.btn-nav-cta {
  background-color: #EC4899;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}
.btn-nav-cta:hover {
  background-color: #db2777;
  color: #fff;
}
.navbar-toggler {
  border-color: #2d2d44;
}
.navbar-toggler-icon {
  filter: invert(1);
}

.hero-section {
  background-color: #0d0d12;
  padding: 96px 0 64px;
}
.hero-badge {
  display: inline-block;
  background-color: rgba(236, 72, 153, 0.15);
  color: #EC4899;
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-section h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #f1f5f9;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-section h1 span {
  color: #EC4899;
}
.hero-lead {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
}
.btn-primary-brand {
  background-color: #EC4899;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.2s, transform 0.15s;
}
.btn-primary-brand:hover {
  background-color: #db2777;
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-brand {
  background-color: transparent;
  color: #f1f5f9;
  border: 1px solid #2d2d44;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-brand:hover {
  border-color: #EC4899;
  color: #EC4899;
}

.hero-placeholder {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #1e1e2e;
}
.hero-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #f1f5f9;
}
.hero-stat-label {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}

.section-dark {
  background-color: #0d0d12;
  padding: 80px 0;
}
.section-darker {
  background-color: #080810;
  padding: 80px 0;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 17px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.card-dark {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.card-dark:hover {
  box-shadow: 0 0 24px rgba(236, 72, 153, 0.2);
  border-color: rgba(236, 72, 153, 0.4);
}
.card-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(236, 72, 153, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon i {
  color: #EC4899;
  font-size: 22px;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.card-text {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.65;
}

.testimonial-card {
  background-color: #13131f;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  padding: 28px 32px;
  height: 100%;
}
.testimonial-text {
  font-size: 16px;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
}
.testimonial-role {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 3px;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.template-placeholder {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 8px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s;
}
.template-placeholder:hover {
  border-color: #EC4899;
}

.pricing-card {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover {
  box-shadow: 0 0 28px rgba(236, 72, 153, 0.18);
  border-color: rgba(236, 72, 153, 0.35);
}
.pricing-card.featured {
  border-color: #EC4899;
  box-shadow: 0 0 32px rgba(236, 72, 153, 0.25);
}
.pricing-badge {
  display: inline-block;
  background-color: #EC4899;
  color: #fff;
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: super;
}
.pricing-period {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-features li {
  font-size: 15px;
  color: #94a3b8;
  padding: 8px 0;
  border-bottom: 1px solid #1e1e2e;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li i {
  color: #EC4899;
  font-size: 13px;
  flex-shrink: 0;
}
.pricing-cta {
  margin-top: auto;
}

.cta-section {
  background: linear-gradient(135deg, #13001a 0%, #1a0026 50%, #0d0d12 100%);
  padding: 96px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 44px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 36px;
}

.page-hero {
  background-color: #080810;
  padding: 80px 0 64px;
  border-bottom: 1px solid #1e1e2e;
}
.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: #94a3b8;
}

.workflow-step {
  text-align: center;
  padding: 24px;
}
.workflow-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(236, 72, 153, 0.12);
  border: 2px solid rgba(236, 72, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EC4899;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.workflow-step h5 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}
.workflow-step p {
  font-size: 14px;
  color: #94a3b8;
}

.team-card {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.25s;
}
.team-card:hover {
  box-shadow: 0 0 24px rgba(236, 72, 153, 0.18);
}
.team-avatar {
  width: 80px;
  height: 80px;
  background-color: #2d2d44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #4b5563;
  font-size: 12px;
}
.team-name {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  color: #EC4899;
  font-weight: 600;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.contact-card {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  padding: 36px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(236, 72, 153, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  color: #EC4899;
  font-size: 18px;
}
.contact-label {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 16px;
  color: #f1f5f9;
}

.blog-card {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s;
  height: 100%;
}
.blog-card:hover {
  box-shadow: 0 0 24px rgba(236, 72, 153, 0.18);
}
.blog-img-placeholder {
  background-color: #13131f;
  border-bottom: 1px solid #2d2d44;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 13px;
  height: 180px;
}
.blog-body {
  padding: 24px;
}
.blog-category {
  display: inline-block;
  background-color: rgba(236, 72, 153, 0.1);
  color: #EC4899;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-date {
  font-size: 13px;
  color: #94a3b8;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f1f5f9;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-last-updated {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 32px;
}

.footer {
  background-color: #080810;
  border-top: 1px solid #1e1e2e;
  padding: 56px 0 32px;
}
.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
  display: block;
}
.footer-brand span {
  color: #EC4899;
}
.footer-tagline {
  font-size: 14px;
  color: #94a3b8;
  max-width: 240px;
  line-height: 1.6;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer ul li a:hover {
  color: #EC4899;
}
.footer-bottom {
  border-top: 1px solid #1e1e2e;
  padding-top: 24px;
  margin-top: 40px;
}
.footer-copyright {
  font-size: 13px;
  color: #4b5563;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #13131f;
  border-top: 1px solid #2d2d44;
  padding: 16px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  flex: 1;
  min-width: 240px;
}
.cookie-banner p a {
  color: #EC4899;
}
.cookie-btn {
  background-color: #EC4899;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.cookie-btn:hover {
  background-color: #db2777;
}

.stat-box {
  text-align: center;
  padding: 24px;
}
.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: #94a3b8;
}

.value-card {
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.value-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1a1a2e;
  border: 1px solid #2d2d44;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  margin: 6px;
}
.platform-pill i {
  color: #EC4899;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
  }
  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-section h2 {
    font-size: 30px;
  }
}

/* === Card Uniformity Fix (auto-generated) === */

.blog-card {
  display: flex;
  flex-direction: column;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.blog-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body > a:last-child,
.blog-body > p:last-child + a {
  margin-top: auto;
}

.card-text > a:last-child,
.card-text > p:last-child + a {
  margin-top: auto;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pricing-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.blog-body > p {
  flex: 1;
}

.card-text > p {
  flex: 1;
}

.blog-body > a:last-child,
.blog-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.card-text > a:last-child,
.card-text > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.blog-body > :last-child {
  margin-top: auto;
}

.blog-card > :last-child {
  margin-top: auto;
}

.card-text > :last-child {
  margin-top: auto;
}

.contact-card > :last-child {
  margin-top: auto;
}

.testimonial-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Form placeholder visibility (dark theme aware) */
input::placeholder, textarea::placeholder {
  color: #cbd5e1;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #cbd5e1;
  opacity: 1;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Contact form dark input styling */
.form-input-dark {
  background: #13131f;
  border: 1px solid #2d2d44;
  color: #f1f5f9;
  border-radius: 8px;
  padding: 11px 14px;
}
.form-input-dark::placeholder {
  color: #cbd5e1;
  opacity: 1;
}
.form-input-dark::-webkit-input-placeholder {
  color: #cbd5e1;
  opacity: 1;
}
.form-input-dark:focus {
  border-color: var(--accent, #3b82f6);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Value card equal height */
.value-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-card p {
  flex: 1;
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
