* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E3A5F;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: #0891B2;
  text-decoration: none;
}

a:hover {
  color: #155E75;
  text-decoration: underline;
}

.btn-accent {
  background: #0891B2;
  color: #fff;
  border-radius: 8px;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-accent:hover {
  background: #155E75;
  color: #fff;
  text-decoration: none;
}

.btn-outline-accent {
  background: transparent;
  color: #0891B2;
  border: 2px solid #0891B2;
  border-radius: 8px;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-accent:hover {
  background: #0891B2;
  color: #fff;
  text-decoration: none;
}

.navbar {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.navbar-brand {
  font-size: 20px;
  font-weight: 800;
  color: #155E75;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: #0891B2;
}

.navbar-brand:hover {
  color: #155E75;
  text-decoration: none;
}

.nav-link {
  color: #1E3A5F;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0891B2;
}

.nav-cta {
  background: #0891B2;
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 15px;
  margin-left: 8px;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #155E75;
  color: #fff;
  text-decoration: none;
}

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #F0F9FF 0%, #ffffff 60%);
  text-align: center;
}

.hero-section h1 {
  font-size: 56px;
  font-weight: 800;
  color: #155E75;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-section p.lead {
  font-size: 20px;
  color: #1E3A5F;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #155E75;
  background: #ffffff;
  border: 1px solid #BAE6FD;
  border-radius: 999px;
  padding: 8px 18px;
}

.trust-badge i {
  color: #0891B2;
  font-size: 14px;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: #F0F9FF;
}

.section-dark {
  background: #1E3A5F;
  color: #ffffff;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #155E75;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 18px;
  color: #1E3A5F;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: #BAE6FD;
}

.card-feature {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(8,145,178,0.08);
  border: 1px solid #E0F2FE;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-feature:hover {
  box-shadow: 0 8px 32px rgba(8,145,178,0.15);
  transform: translateY(-2px);
}

.card-feature .icon-wrap {
  width: 52px;
  height: 52px;
  background: #E0F2FE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-feature .icon-wrap i {
  font-size: 22px;
  color: #0891B2;
}

.card-feature h4 {
  font-size: 18px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 10px;
}

.card-feature p {
  font-size: 15px;
  color: #1E3A5F;
  line-height: 1.6;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #0891B2;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 12px;
}

.step-card p {
  color: #1E3A5F;
  font-size: 15px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: #E0F2FE;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon-wrap i {
  font-size: 26px;
  color: #0891B2;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(8,145,178,0.1);
  border: 1px solid #E0F2FE;
}

.testimonial-card blockquote {
  font-size: 17px;
  color: #1E3A5F;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  background: #CBD5E1;
  flex-shrink: 0;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: #155E75;
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  color: #0891B2;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.compliance-item {
  background: #F0F9FF;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid #BAE6FD;
}

.compliance-item i {
  font-size: 32px;
  color: #0891B2;
  margin-bottom: 12px;
  display: block;
}

.compliance-item h5 {
  font-size: 16px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 6px;
}

.compliance-item p {
  font-size: 14px;
  color: #1E3A5F;
}

.footer-cta-section {
  background: #0891B2;
  padding: 72px 0;
  text-align: center;
}

.footer-cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-cta-section p {
  font-size: 18px;
  color: #E0F2FE;
  margin-bottom: 32px;
}

.btn-white {
  background: #ffffff;
  color: #0891B2;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-white:hover {
  background: #F0F9FF;
  color: #155E75;
  text-decoration: none;
}

.site-footer {
  background: #1E3A5F;
  padding: 64px 0 32px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  display: block;
}

.footer-brand span {
  color: #0891B2;
}

.footer-tagline {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #CBD5E1;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #0891B2;
  text-decoration: none;
}

.footer-col ul li.text-item {
  color: #CBD5E1;
  font-size: 14px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 48px 0 24px;
}

.footer-copyright {
  font-size: 13px;
  color: #CBD5E1;
}

.page-hero {
  background: linear-gradient(160deg, #F0F9FF 0%, #ffffff 60%);
  padding: 100px 0 72px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #155E75;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 19px;
  color: #1E3A5F;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.feature-row {
  padding: 72px 0;
  border-bottom: 1px solid #E0F2FE;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-row h3 {
  font-size: 30px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 16px;
}

.feature-row p {
  font-size: 16px;
  color: #1E3A5F;
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-row ul {
  padding-left: 0;
  list-style: none;
}

.feature-row ul li {
  font-size: 15px;
  color: #1E3A5F;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-row ul li i {
  color: #0891B2;
  font-size: 14px;
  flex-shrink: 0;
}

.img-placeholder {
  background: #CBD5E1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 13px;
  font-weight: 500;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.specs-table th {
  background: #F0F9FF;
  color: #155E75;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid #BAE6FD;
}

.specs-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #E0F2FE;
  color: #1E3A5F;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) td {
  background: #F8FCFF;
}

.solution-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 2px 16px rgba(8,145,178,0.08);
  border: 1px solid #E0F2FE;
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.solution-card:hover {
  box-shadow: 0 8px 32px rgba(8,145,178,0.15);
}

.solution-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: #E0F2FE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-card .icon-wrap i {
  font-size: 28px;
  color: #0891B2;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 14px;
}

.solution-card p {
  font-size: 15px;
  color: #1E3A5F;
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.solution-card ul li {
  font-size: 14px;
  color: #1E3A5F;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-card ul li i {
  color: #0891B2;
  font-size: 13px;
}

.roi-stat {
  text-align: center;
  padding: 40px 24px;
}

.roi-stat .number {
  font-size: 56px;
  font-weight: 800;
  color: #0891B2;
  line-height: 1;
  margin-bottom: 12px;
}

.roi-stat h5 {
  font-size: 18px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 8px;
}

.roi-stat p {
  font-size: 15px;
  color: #1E3A5F;
}

.values-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #E0F2FE;
  height: 100%;
}

.values-card i {
  font-size: 28px;
  color: #0891B2;
  margin-bottom: 16px;
  display: block;
}

.values-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 10px;
}

.values-card p {
  font-size: 15px;
  color: #1E3A5F;
  line-height: 1.65;
}

.stat-block {
  text-align: center;
  padding: 32px 16px;
}

.stat-block .number {
  font-size: 48px;
  font-weight: 800;
  color: #0891B2;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-block h5 {
  font-size: 16px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 6px;
}

.stat-block p {
  font-size: 14px;
  color: #1E3A5F;
}

.team-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(8,145,178,0.08);
  border: 1px solid #E0F2FE;
  transition: box-shadow 0.2s ease;
}

.team-card:hover {
  box-shadow: 0 8px 32px rgba(8,145,178,0.15);
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-info h4 {
  font-size: 19px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 4px;
}

.team-info p.role {
  font-size: 14px;
  color: #0891B2;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-info p.bio {
  font-size: 14px;
  color: #1E3A5F;
  line-height: 1.65;
  margin-bottom: 0;
}

.contact-info-block {
  background: #F0F9FF;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #BAE6FD;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  background: #0891B2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .ci-icon i {
  font-size: 18px;
  color: #ffffff;
}

.contact-info-item h6 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #155E75;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  color: #1E3A5F;
  margin: 0;
  line-height: 1.5;
}

.contact-form-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(8,145,178,0.08);
  border: 1px solid #E0F2FE;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #155E75;
  margin-bottom: 6px;
}

.form-control {
  border: 1px solid #BAE6FD;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #1E3A5F;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: #0891B2;
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
  outline: none;
}

.map-placeholder {
  background: #CBD5E1;
  border-radius: 12px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 14px;
  font-weight: 500;
}

.insight-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(8,145,178,0.08);
  border: 1px solid #E0F2FE;
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.insight-card:hover {
  box-shadow: 0 8px 32px rgba(8,145,178,0.15);
}

.insight-date {
  font-size: 13px;
  color: #0891B2;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.insight-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: #155E75;
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-card p {
  font-size: 15px;
  color: #1E3A5F;
  line-height: 1.65;
  margin-bottom: 20px;
}

.insight-card a.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #0891B2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.insight-card a.read-more:hover {
  gap: 10px;
  text-decoration: none;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 0;
}

.legal-content h1 {
  font-size: 40px;
  font-weight: 800;
  color: #155E75;
  margin-bottom: 8px;
}

.legal-content .updated {
  font-size: 14px;
  color: #0891B2;
  margin-bottom: 40px;
  display: block;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #155E75;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: #1E3A5F;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: #1E3A5F;
  line-height: 1.8;
  margin-bottom: 6px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1E3A5F;
  color: #ffffff;
  z-index: 9999;
  padding: 18px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.cookie-banner p {
  font-size: 14px;
  color: #CBD5E1;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner .btn-accept {
  background: #0891B2;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-banner .btn-accept:hover {
  background: #155E75;
}

.cookie-banner .btn-decline {
  background: transparent;
  color: #CBD5E1;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-banner .btn-decline:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.integration-logo-placeholder {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: 8px;
  width: 120px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 38px;
  }

  .hero-section {
    padding: 80px 0 56px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .section-title {
    font-size: 28px;
  }

  .section {
    padding: 56px 0;
  }

  .compliance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roi-stat .number {
    font-size: 42px;
  }

  .stat-block .number {
    font-size: 38px;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 30px;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 10px;
  }
}

/* === Card Uniformity Fix (auto-generated) === */

.insight-card {
  display: flex;
  flex-direction: column;
}

.step-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.read-more {
  margin-top: auto;
  display: inline-block;
}

.insight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.step-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;
}

.article-body > a:last-child,
.article-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.article-body > :last-child {
  margin-top: auto;
}

.insight-card > :last-child {
  margin-top: auto;
}

.team-card > :last-child {
  margin-top: auto;
}

.testimonial-card > :last-child {
  margin-top: auto;
}

.values-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 */
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;
}
