body {
  background-color: #FAFAF9;
  color: #2D1B69;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
}

a {
  color: #7C3AED;
  text-decoration: none;
}

a:hover {
  color: #5B21B6;
}

.navbar-brand {
  font-weight: 800;
  font-size: 22px;
  color: #7C3AED;
  letter-spacing: -0.5px;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 16px rgba(124,58,237,0.07);
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar .nav-link {
  color: #2D1B69;
  font-weight: 500;
  font-size: 15px;
  padding-left: 14px;
  padding-right: 14px;
}

.navbar .nav-link:hover {
  color: #7C3AED;
}

.btn-accent {
  background: #7C3AED;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 22px;
  font-size: 15px;
  transition: background 0.2s;
}

.btn-accent:hover {
  background: #5B21B6;
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  color: #7C3AED;
  border: 2px solid #7C3AED;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 22px;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-outline-accent:hover {
  background: #7C3AED;
  color: #fff;
}

.hero-section {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../images/index-01.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2D1B69;
  min-height: 500px;
  padding: 96px 0 72px;
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-section .container {
  width: 100%;
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-section .btn-outline-accent {
  color: #ffffff;
  border-color: #ffffff;
}
.hero-section .btn-outline-accent:hover {
  background: #ffffff;
  color: #7C3AED;
  border-color: #ffffff;
}

.hero-section .lead {
  font-size: 19px;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-illustration {
  width: 600px;
  max-width: 100%;
  height: 400px;
  background: #DDD6FE;
  border-radius: 16px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C3AED;
  font-size: 15px;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #1F1147;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: #4C3B8A;
  margin-bottom: 48px;
}

.card-service {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  padding: 36px 28px;
  border: none;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.14);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #F5F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-wrap i {
  font-size: 32px;
  color: #7C3AED;
}

.card-service h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1F1147;
  margin-bottom: 10px;
}

.card-service p {
  color: #4C3B8A;
  font-size: 15px;
}

.price-from {
  font-size: 14px;
  color: #7C3AED;
  font-weight: 600;
  margin-top: 12px;
}

.testimonials-section {
  background: #F5F3FF;
  padding: 80px 0;
}

.card-testimonial {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  padding: 28px;
  border: none;
  height: 100%;
}

.card-testimonial p {
  color: #4C3B8A;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-name {
  font-weight: 700;
  color: #1F1147;
  font-size: 14px;
  margin-top: 16px;
}

.testimonial-tag {
  font-size: 12px;
  color: #7C3AED;
}

.pricing-section {
  padding: 80px 0;
}

.card-pricing {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  padding: 36px 28px;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-pricing:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.14);
}

.card-pricing.popular {
  background: #7C3AED;
  color: #fff;
}

.card-pricing.popular .price-amount {
  color: #fff;
}

.card-pricing.popular .price-period {
  color: #DDD6FE;
}

.card-pricing.popular h4 {
  color: #fff;
}

.card-pricing.popular ul li {
  color: #EDE9FE;
}

.card-pricing.popular .plan-desc {
  color: #DDD6FE;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: #7C3AED;
}

.price-period {
  font-size: 18px;
  color: #6B7280;
}

.badge-popular {
  background: #F5F3FF;
  color: #7C3AED;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-pricing.popular .badge-popular {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.card-pricing h4 {
  font-size: 22px;
  font-weight: 800;
  color: #1F1147;
  margin-bottom: 4px;
}

.card-pricing ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}

.card-pricing ul li {
  font-size: 14px;
  color: #4C3B8A;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-pricing ul li i {
  color: #7C3AED;
  font-size: 13px;
}

.card-pricing.popular ul li i {
  color: #DDD6FE;
}

.plan-desc {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.cta-gradient-section {
  background: linear-gradient(135deg, #7C3AED 0%, #9D4EDD 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-gradient-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-gradient-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.btn-white {
  background: #fff;
  color: #7C3AED;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 17px;
  transition: background 0.2s;
}

.btn-white:hover {
  background: #F5F3FF;
  color: #5B21B6;
}

footer {
  background: #1F1147;
  color: #C4B5FD;
  padding: 56px 0 32px;
}

footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 15px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #C4B5FD;
}

footer ul li a {
  color: #A78BFA;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

footer ul li a:hover {
  color: #ffffff;
}

footer .footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

footer .footer-tagline {
  font-size: 14px;
  color: #A78BFA;
  margin-bottom: 20px;
}

.footer-divider {
  border-color: rgba(167,139,250,0.2);
  margin: 32px 0 20px;
}

.crisis-notice {
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #DDD6FE;
  margin-bottom: 24px;
}

.crisis-notice strong {
  color: #ffffff;
}

.footer-copy {
  font-size: 13px;
  color: #7C6AB0;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1F1147;
  color: #C4B5FD;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 260px;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.page-hero {
  background: #F5F3FF;
  padding: 72px 0 56px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1F1147;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4C3B8A;
  max-width: 600px;
  margin: 0 auto;
}

.feature-section {
  padding: 72px 0;
}

.feature-section:nth-child(even) {
  background: #F5F3FF;
}

.feature-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #F5F3FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrap i {
  font-size: 36px;
  color: #7C3AED;
}

.feature-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1F1147;
  margin-bottom: 16px;
}

.feature-section p {
  font-size: 16px;
  color: #4C3B8A;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #4C3B8A;
}

.feature-list li i {
  color: #7C3AED;
  margin-top: 2px;
  font-size: 14px;
}

.img-placeholder {
  background: #E5E7EB;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 500;
}

.security-section {
  background: #1F1147;
  padding: 72px 0;
  color: #C4B5FD;
}

.security-section h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.security-section p {
  color: #A78BFA;
}

.security-badge {
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.security-badge i {
  font-size: 28px;
  color: #A78BFA;
  margin-bottom: 8px;
}

.security-badge p {
  font-size: 13px;
  color: #C4B5FD;
  margin: 0;
}

.values-section {
  padding: 80px 0;
}

.card-value {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}

.card-value i {
  font-size: 36px;
  color: #7C3AED;
  margin-bottom: 16px;
}

.card-value h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1F1147;
  margin-bottom: 8px;
}

.card-value p {
  font-size: 14px;
  color: #4C3B8A;
}

.stats-section {
  background: #7C3AED;
  padding: 64px 0;
  color: #fff;
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #DDD6FE;
  margin-top: 6px;
}

.team-section {
  padding: 80px 0;
}

.card-team {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  overflow: hidden;
  border: none;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-team:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.14);
}

.card-team img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-team .card-body {
  padding: 20px;
}

.card-team h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1F1147;
  margin-bottom: 4px;
}

.card-team .role {
  font-size: 13px;
  color: #7C3AED;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-team p {
  font-size: 13px;
  color: #4C3B8A;
  margin: 0;
}

.contact-section {
  padding: 80px 0;
}

.card-contact {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  padding: 40px;
  border: none;
}

.form-control-custom {
  border: 2px solid #E8E3FF;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  background: #FAFAF9;
  color: #2D1B69;
  width: 100%;
  transition: border-color 0.2s;
}

.form-control-custom:focus {
  outline: none;
  border-color: #7C3AED;
  background: #fff;
}

.form-label-custom {
  font-weight: 600;
  font-size: 14px;
  color: #2D1B69;
  margin-bottom: 6px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 18px;
  color: #7C3AED;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-item p {
  margin: 0;
  font-size: 15px;
  color: #4C3B8A;
}

.crisis-box {
  background: #F5F3FF;
  border-left: 4px solid #7C3AED;
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  font-size: 14px;
  color: #4C3B8A;
  margin-top: 24px;
}

.crisis-box strong {
  color: #1F1147;
}

.blog-section {
  padding: 80px 0;
}

.card-blog {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  overflow: hidden;
  border: none;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-blog:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.14);
}

.card-blog .blog-img-placeholder {
  width: 100%;
  height: 200px;
  background: #DDD6FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C3AED;
  font-size: 13px;
  font-weight: 600;
}

.card-blog .card-body {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: #7C3AED;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.card-blog h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1F1147;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-blog p {
  font-size: 14px;
  color: #4C3B8A;
}

.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #7C3AED;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.read-more:hover {
  color: #5B21B6;
}

.legal-section {
  padding: 72px 0;
}

.legal-section h1 {
  font-size: 36px;
  font-weight: 800;
  color: #1F1147;
  margin-bottom: 8px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1F1147;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-section p, .legal-section li {
  font-size: 15px;
  color: #4C3B8A;
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 20px;
}

.last-updated {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 32px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-toggle span {
  font-size: 15px;
  font-weight: 600;
  color: #4C3B8A;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #DDD6FE;
  border-radius: 28px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: #7C3AED;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.savings-badge {
  background: #D1FAE5;
  color: #065F46;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.section-pad {
  padding: 80px 0;
}

.founding-section {
  padding: 72px 0;
  background: #F5F3FF;
}

.founding-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1F1147;
  margin-bottom: 16px;
}

.founding-section p {
  font-size: 16px;
  color: #4C3B8A;
  line-height: 1.8;
}

/* === Card Uniformity Fix (auto-generated) === */

.card-blog {
  display: flex;
  flex-direction: column;
}

.card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-contact {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-service {
  display: flex;
  flex-direction: column;
}

.card-team {
  display: flex;
  flex-direction: column;
}

.card-testimonial {
  display: flex;
  flex-direction: column;
}

.card-value {
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-blog img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-contact img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-pricing img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-service img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-testimonial img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-value img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.card-body > p {
  flex: 1;
}

.card-body > a:last-child,
.card-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.card-body > :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 (theme-aware) */
input::placeholder, textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #94a3b8;
  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);
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
