/* Non-Critical CSS - Below the fold styles */

/* Value propositions section */
.value-props {
  padding: 1.0rem 0;
}
.value-props-container {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .value-props-container {
    background-color: #ffffff;
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  .value-props-container {
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  .value-props-container {
    padding: 2.5rem 4rem;
  }
}
/* Folded corner effect - hidden on mobile, shown on desktop */
.value-props-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-width: 25px 25px 0 0;
  border-style: solid;
  border-color: #eee white;
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  z-index: 1;
  border-top-left-radius: 0.5rem;
  display: none;
}
@media (min-width: 768px) {
  .value-props-container::before {
    display: block;
  }
}
@media (min-width: 768px) {
  .value-props-container::before {
    border-width: 50px 50px 0 0;
    border-top-left-radius: 0.5rem;
  }
}
.value-props h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1f2937;
}
@media (min-width: 768px) {
  .value-props h2 {
    text-align: left;
  }
}
.value-props .highlight {
  color: rgb(219, 56, 107);
}
.value-props-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.value-prop-card {
  display: flex;
  align-items: flex-start;
  background-color: #fce7f3;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.value-prop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.value-prop-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  margin-top: 0.25rem;
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(219, 56, 107, 0.1);
}
.icon-circle i {
  font-size: 1.5rem;
  color: rgb(219, 56, 107);
}
.value-prop-content h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1f2937;
}
.value-prop-content p {
  font-size: 1rem;
  color: #1f2937;
}

/* Trusted by section */
.trusted-by {
  background-color: #ffffff;
  padding: 1.0rem 0;
  text-align: center;
}
.trusted-by h3 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1f2937;
}
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.brand-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 7.5rem;
  min-width: 7.5rem;
  transition: transform 0.2s ease;
}
.brand-logo-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand-logo-item:hover {
  transform: scale(1.05);
}
.brand-logo-item img {
  width: 7.5rem;
  height: 5rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.brand-logo-item span {
  font-size: 0.875rem;
  color: #4b5563;
}

/* CTA section */
.cta-section {
  background: none;
  padding: 2.0rem 0;
  text-align: center;
}
.cta-section .container {
  background-color: rgb(219, 56, 107);
  border-radius: 0;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .cta-section .container {
    border-radius: 0.5rem;
  }
}
.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cta-section h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cta-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

/* Footer */
.footer {
  background-color: #ffffff;
  padding: 2.0rem 0;
  border-top: 1px solid #e5e7eb;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgb(180, 45, 90);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: rgb(150, 35, 75);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-social {
    justify-content: flex-end;
  }
}
.footer-social a {
  font-size: 1.5rem;
  color: rgb(180, 45, 90);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.footer-social a:hover {
  transform: scale(1.1);
  color: rgb(150, 35, 75);
}
.footer-copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-10 { margin-top: 2.5rem; }

/* Remove all pink focus outlines from links and buttons */
a:focus, a:focus-visible, button:focus, button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Consistent logo hover/active/focus style for all pages */
.logo a:hover,
.logo a:active,
.logo a:focus {
  transform: scale(1.05);
  outline: none !important;
  box-shadow: none !important;
}

/* Contact section */
.contact-section {
  background: none;
  padding: 1.0rem 0;
  text-align: center;
}
.contact-section .container {
  background-color: #fce7f3;
  border-radius: 0;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .contact-section .container {
    border-radius: 0.5rem;
  }
}
.contact-content {
  max-width: 48rem;
  margin: 0 auto;
}
.contact-section h1 {
  margin-bottom: 2rem;
  color: #1f2937;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: left;
}
.contact-form label {
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: #ffffff;
  color: #1f2937;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgb(219, 56, 107);
  box-shadow: 0 0 0 3px rgba(219, 56, 107, 0.1);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Font Awesome - Non-critical icons */
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fa-brands-400.woff2") format("woff2");
}

.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-style: normal;
}

.fa-briefcase:before { content: "\f0b1"; }
.fa-user-tie:before { content: "\f508"; }
.fa-chart-line:before { content: "\f201"; }
.fa-cogs:before { content: "\f085"; }
.fa-linkedin:before { content: "\f08c"; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    transform: none !important;
  }
}

/* Services page styles */
.services-section {
  padding: 1.0rem 0;
}
.services-section .container {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .services-section .container {
    border-radius: 0.5rem;
  }
}
.services-content {
  max-width: 64rem;
  margin: 0 auto;
}
.services-section h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1f2937;
}
.services-intro {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: rgb(219, 56, 107);
}
.service-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}
.service-card p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgb(219, 56, 107);
  font-weight: bold;
} 

/* Article page styles */
.article-section {
  padding: 1.0rem 0;
}
.article-section .container {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .article-section .container {
    border-radius: 0.5rem;
  }
}
.article-content {
  max-width: 48rem;
  margin: 0 auto;
}
.article-content h1 {
  margin-bottom: 1.5rem;
  color: #1f2937;
  text-align: center;
}
.article-meta {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 3rem;
  text-align: center;
}
.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1f2937;
}
.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}
.article-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
  line-height: 1.6;
}
.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-content ul li {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
  list-style: disc;
} 

/* Blog page styles */
.blog-section {
  padding: 1.0rem 0;
}
.blog-section .container {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .blog-section .container {
    border-radius: 0.5rem;
  }
}
.blog-content {
  max-width: 64rem;
  margin: 0 auto;
  flex: 1;
  text-align: left !important;
}
.blog-content h3,
.blog-content h3 a {
  font-size: 1.125rem !important;
  text-align: left !important;
  display: block;
}
.blog-section h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1f2937;
}
.blog-intro {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #4b5563;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.blog-list {
  max-width: 48rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.blog-year {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}
.blog-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  transition: all 0.2s ease;
}
.blog-item:hover {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.blog-date {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  min-width: 4rem;
  margin-right: 2rem;
}
.blog-item-content h3 {
  font-weight: 600;
  margin: 0;
  text-align: left !important;
}
.blog-item-content h3 a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: left;
  display: inline-block;
}
.blog-item-content h3 a:hover {
  color: rgb(219, 56, 107);
}
@media (min-width: 768px) {
  .blog-date {
    min-width: 5rem;
    margin-right: 3rem;
  }
}

.blog-list,
.blog-item,
.blog-content {
  text-align: left !important;
}

/* === FONT SIZE STANDARDIZATION === */

/* H1 Elements - 2.25rem (36px) */
h1, 
.services-section h1, 
.article-content h1, 
.blog-section h1, 
.cta-section h1, 
.contact-section h1,
.hero h1 {
  font-size: 2.25rem !important;
}

/* H2 Elements - 1.5rem (24px) */
h2, 
.value-props h2, 
.article-content h2,
.services-section h2,
.blog-section h2,
.contact-section h2,
.cta-section h2 {
  font-size: 1.5rem !important;
}

/* H3 Elements - 1.25rem (20px) */
h3, 
.value-prop-content h3, 
.trusted-by h3, 
.service-card h3, 
.article-content h3, 
.blog-item-content h3, 
.blog-item-content h3 a, 
.blog-year,
.services-section h3,
.blog-section h3,
.contact-section h3 {
  font-size: 1.25rem !important;
}

/* H4 Elements - 1.125rem (18px) */
h4, 
.cta-section h4,
.services-section h4,
.blog-section h4,
.contact-section h4 {
  font-size: 1.125rem !important;
}

/* Body and Paragraph Elements - 1rem (16px) */
body, 
p, 
.value-prop-content p, 
.article-content p, 
.service-card p, 
.blog-card-content p, 
.cta-section p, 
.services-intro, 
.blog-intro, 
.cta-section .btn, 
.btn,
.services-section p,
.blog-section p,
.contact-section p {
  font-size: 1rem !important;
}

/* Small and Meta Elements - 0.875rem (14px) */
small, 
.brand-logo-item span, 
.blog-date, 
.footer-nav a, 
.footer-copyright,
.services-section small,
.blog-section small,
.contact-section small {
  font-size: 0.875rem !important;
}

