@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../webfonts/fa-regular-400.woff2') format('woff2'), url('../webfonts/fa-regular-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../webfonts/fa-solid-900.woff2') format('woff2'), url('../webfonts/fa-solid-900.ttf') format('truetype');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../webfonts/fa-brands-400.woff2') format('woff2'), url('../webfonts/fa-brands-400.ttf') format('truetype');
}

* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

a { color: #F59E0B; text-decoration: none; }
a:hover { color: #D97706; }

.navbar { background: #ffffff; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.navbar-brand { font-weight: 800; font-size: 22px; color: #F59E0B; }
.navbar-brand span { color: #1f2937; }
.nav-link { color: #374151; font-weight: 500; }
.nav-link:hover { color: #F59E0B; }
.btn-nav-cta {
  background: #F59E0B;
  color: #fff;
  border-radius: 24px;
  padding: 8px 22px;
  font-weight: 700;
}
.btn-nav-cta:hover { background: #D97706; color: #fff; }
.btn-nav-cta a { color: #fff; }

.hero-section {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #fde68a 100%);
  padding: 90px 0 70px;
  text-align: center;
}
.hero-section h1 {
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-section p.lead {
  font-size: 19px;
  color: #4b5563;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-badge {
  display: inline-block;
  background: #fff;
  border: 2px solid #F59E0B;
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #D97706;
  margin-bottom: 24px;
}
.hero-visual {
  background: #fff;
  border: 2px solid #fde68a;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  height: 320px;
  margin: 44px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
}

.btn-primary-lp {
  background: #F59E0B;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
.btn-primary-lp:hover { background: #D97706; color: #fff; }
.btn-outline-lp {
  background: transparent;
  color: #D97706;
  border: 2px solid #F59E0B;
  border-radius: 28px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-lp:hover { background: #fffbeb; color: #D97706; }

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 12px;
}
.section-title { font-size: 32px; font-weight: 800; color: #1f2937; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: #6b7280; max-width: 560px; margin: 0 auto 48px; }

.features-section { padding: 80px 0; background: #fff; }
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 20px;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover { box-shadow: 0 6px 24px rgba(245,158,11,0.18); border-color: #F59E0B; }
.feature-icon {
  width: 60px;
  height: 60px;
  background: #F59E0B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon i { color: #fff; font-size: 22px; }
.feature-card h5 { font-weight: 800; color: #1f2937; margin-bottom: 10px; font-size: 18px; }
.feature-card p { color: #6b7280; font-size: 15px; margin: 0; }

.stats-bar {
  background: #F59E0B;
  padding: 44px 0;
}
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: #fff; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 4px; }

.testimonials-section { padding: 80px 0; background: #fafafa; }
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 64px;
  color: #fde68a;
  font-weight: 800;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.testimonial-card p { color: #374151; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testimonial-card .author { font-weight: 700; color: #1f2937; font-size: 14px; }
.testimonial-card .role { color: #9ca3af; font-size: 13px; }

.pricing-section { padding: 80px 0; background: #fff; }
.pricing-card {
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.pricing-card.featured {
  border-color: #F59E0B;
  box-shadow: 0 8px 32px rgba(245,158,11,0.18);
}
.pricing-card:hover { border-color: #F59E0B; box-shadow: 0 6px 24px rgba(245,158,11,0.14); }
.pricing-badge {
  display: inline-block;
  background: #F59E0B;
  color: #fff;
  border-radius: 12px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-tier { font-size: 20px; font-weight: 800; color: #1f2937; margin-bottom: 8px; }
.pricing-price {
  margin-bottom: 8px;
}
.pricing-price sup {
  font-size: 20px;
  font-weight: 700;
  color: #F59E0B;
  vertical-align: super;
  line-height: 1;
}
.pricing-price .amount { font-size: 52px; font-weight: 800; color: #1f2937; line-height: 1; }
.pricing-price .period { font-size: 14px; color: #9ca3af; }
.pricing-desc { color: #6b7280; font-size: 14px; margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; color: #374151; }
.pricing-features li i { color: #F59E0B; font-size: 13px; flex-shrink: 0; }

.cta-section { background: #1f2937; padding: 80px 0; text-align: center; color: #fff; }
.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { opacity: 0.75; font-size: 18px; margin-bottom: 32px; }

.page-hero {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 800; color: #1f2937; margin-bottom: 12px; }
.page-hero p { color: #4b5563; font-size: 17px; max-width: 560px; margin: 0 auto; }

.content-section { padding: 72px 0; }
.feature-row { margin-bottom: 60px; }
.feature-placeholder {
  background: #fef3c7;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
  border-radius: 16px;
  width: 100%;
  border: 2px solid #fde68a;
}
.feature-label { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #F59E0B; margin-bottom: 10px; }
.feature-title { font-size: 26px; font-weight: 800; color: #1f2937; margin-bottom: 14px; }
.feature-desc { color: #6b7280; margin-bottom: 20px; line-height: 1.75; font-size: 16px; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: #374151; font-size: 15px; }
.check-list li i { color: #F59E0B; margin-top: 3px; flex-shrink: 0; }

.info-card {
  background: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}
.info-card h5 { font-weight: 800; color: #1f2937; margin-bottom: 10px; }
.info-card p { color: #374151; margin: 0; font-size: 15px; line-height: 1.7; }

.team-section { padding: 80px 0; background: #fafafa; }
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 36px 20px;
  border: 2px solid #fde68a;
  height: 100%;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(245,158,11,0.15); }
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 4px solid #F59E0B;
}
.team-card h5 { font-weight: 800; color: #1f2937; margin-bottom: 4px; }
.team-card .title { color: #F59E0B; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.team-card p { color: #6b7280; font-size: 14px; margin: 0; }

.contact-section { padding: 72px 0; background: #fafafa; }
.contact-card {
  background: #fff;
  border: 2px solid #fde68a;
  border-radius: 20px;
  padding: 40px;
}
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px;
  background: #fef3c7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: #F59E0B; font-size: 18px; }
.contact-detail h6 { font-weight: 700; color: #1f2937; margin-bottom: 4px; font-size: 14px; }
.contact-detail p { color: #6b7280; margin: 0; font-size: 14px; }

.form-label { font-weight: 700; font-size: 14px; color: #1f2937; }
.form-control { border: 2px solid #e5e7eb; border-radius: 12px; padding: 10px 14px; font-size: 15px; }
.form-control:focus { border-color: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.12); outline: none; }
.btn-submit {
  background: #F59E0B;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
}
.btn-submit:hover { background: #D97706; }

.blog-section { padding: 72px 0; }
.blog-card {
  background: #fff;
  border: 2px solid #fde68a;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(245,158,11,0.15); border-color: #F59E0B; }
.blog-img {
  background: #fef3c7;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D97706;
  font-size: 14px;
}
.blog-body { padding: 22px; }
.blog-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #F59E0B; margin-bottom: 8px; }
.blog-body h5 { font-weight: 800; color: #1f2937; font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { color: #6b7280; font-size: 14px; margin-bottom: 12px; }
.blog-meta { font-size: 12px; color: #9ca3af; }
.read-more { font-size: 14px; font-weight: 700; color: #F59E0B; }

.legal-section { padding: 72px 0; }
.legal-section h1 { font-size: 32px; font-weight: 800; color: #1f2937; margin-bottom: 8px; }
.legal-section .updated { color: #6b7280; font-size: 14px; margin-bottom: 40px; }
.legal-section h2 { font-size: 20px; font-weight: 700; color: #1f2937; margin: 32px 0 12px; }
.legal-section p { color: #374151; line-height: 1.8; margin-bottom: 16px; }
.legal-section ul { color: #374151; line-height: 1.8; margin-bottom: 16px; padding-left: 24px; }

footer {
  background: #1f2937;
  color: #fff;
  padding: 60px 0 30px;
}
.footer-brand { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: #F59E0B; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 20px; }
.footer-col h6 { font-weight: 700; color: #fff; margin-bottom: 16px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-col ul li a:hover { color: #F59E0B; }
.footer-col ul li.no-link { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 32px 0 20px; }
.footer-copy { color: rgba(255,255,255,0.45); font-size: 13px; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: #fff;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.cookie-banner p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.85); flex: 1; }
.cookie-banner a { color: #F59E0B; }
.cookie-btn {
  background: #F59E0B;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-btn:hover { background: #D97706; }

@media (max-width: 768px) {
  .hero-section h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .pricing-price .amount { font-size: 40px; }
}

/* === Card Uniformity Fix (auto-generated) === */

.blog-card {
  display: flex;
  flex-direction: column;
}

.feature-card {
  display: flex;
  flex-direction: column;
}

.team-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.read-more {
  margin-top: auto;
  display: inline-block;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-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) === */

.article-body > p {
  flex: 1;
}

.blog-body > p {
  flex: 1;
}

.article-body > a:last-child,
.article-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.blog-body > a:last-child,
.blog-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.article-body > :last-child {
  margin-top: auto;
}

.blog-body > :last-child {
  margin-top: auto;
}

.blog-card > :last-child {
  margin-top: auto;
}

.info-card > :last-child {
  margin-top: auto;
}

.team-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;
}

/* === Blog Article Width Fix === */
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow img {
  max-width: 100%;
  height: 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 */
input::placeholder, textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #6b7280;
  opacity: 1;
}
input, textarea, select {
  color: #111827;
  border: 1px solid #d1d5db;
}
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);
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
