/* Global design tokens */
:root {
      --color-primary: #1565C0;
      --color-secondary: #E53935;
      --color-accent: #64B5F6;
      --color-background: #FFFFFF;
      --color-text: #1565C0;
      --font-body: Inter, system-ui, sans-serif;
      --font-heading: Inter, system-ui, sans-serif;
      --spacing-section: 4rem;
      --spacing-unit: 8px;
      --border-radius: 4px;
      --container-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
  opacity: 0.55;
}

/* Navbar Component Styles */
.cmp_navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 2px 12px rgba(21, 101, 192, 0.06);
  transition: box-shadow 0.3s ease;
}

.cmp_navbar * {
  box-sizing: border-box;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Brand */
.navbar-brand {
  flex-shrink: 0;
  z-index: 1001;
}

.brand-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand-link:hover,
.brand-link:focus {
  opacity: 0.85;
  outline: 2px solid #1565C0;
  outline-offset: 4px;
  border-radius: 4px;
}

.brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
  width: clamp(140px, 30vw, 180px);
}

/* Mobile Toggle Button */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: opacity 0.2s ease;
}

.navbar-toggle:hover,
.navbar-toggle:focus {
  opacity: 0.7;
  outline: 2px solid #1565C0;
  outline-offset: 4px;
  border-radius: 4px;
}

.toggle-icon {
  display: block;
  width: 100%;
  height: 3px;
  background: #1565C0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle[aria-expanded="true"] .toggle-icon:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] .toggle-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggle[aria-expanded="true"] .toggle-icon:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu (Closed by Default) */
.navbar-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.12);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.navbar-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

/* Navigation Links */
.navbar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.navbar-item {
  margin: 0;
}

.navbar-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #1565C0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  overflow-wrap: anywhere;
  min-width: 0;
}

.navbar-link:hover,
.navbar-link:focus {
  background-color: rgba(21, 101, 192, 0.08);
  color: #0D47A1;
  outline: none;
}

/* CTA Button */
.navbar-cta {
  display: flex;
  justify-content: stretch;
}

.cta-button {
  display: inline-block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #1565C0;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.2);
  overflow-wrap: anywhere;
  min-width: 0;
  max-width: 100%;
}

.cta-button:hover,
.cta-button:focus {
  background: #0D47A1;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
  outline: 2px solid #64B5F6;
  outline-offset: 2px;
}

.cta-button:active {
  transform: translateY(0);
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
  .navbar-container {
    padding: 1.25rem 2rem;
  }

  .navbar-toggle {
    display: none;
  }

  .navbar-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    max-height: none;
    overflow: visible;
  }

  .navbar-menu[aria-hidden="true"] {
    opacity: 1;
    visibility: visible;
  }

  .navbar-links {
    flex-direction: row;
    gap: 0.5rem;
  }

  .navbar-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
  }

  .navbar-cta {
    justify-content: flex-end;
  }

  .cta-button {
    width: auto;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
  }
}

/* Desktop Styles (1280px+) */
@media (min-width: 1280px) {
  .navbar-container {
    padding: 1.5rem 3rem;
  }

  .navbar-menu {
    gap: 3rem;
  }

  .navbar-links {
    gap: 1rem;
  }

  .navbar-link {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .cmp_navbar,
  .navbar-menu,
  .navbar-link,
  .cta-button,
  .toggle-icon,
  .brand-link {
    transition: none;
  }
}

/* Focus Visible Enhancement */
.navbar-link:focus-visible,
.cta-button:focus-visible,
.brand-link:focus-visible,
.navbar-toggle:focus-visible {
  outline: 2px solid #1565C0;
  outline-offset: 4px;
}

/* Hero Component Styles */
.cmp_hero {
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.cmp_hero *,
.cmp_hero *::before,
.cmp_hero *::after {
  box-sizing: border-box;
}

.cmp_hero__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* Content Section */
.cmp_hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.cmp_hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(21, 101, 192, 0.08);
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: 24px;
  color: #1565C0;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.cmp_hero__badge-icon {
  flex-shrink: 0;
  color: #1565C0;
}

.cmp_hero__headline {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1565C0;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cmp_hero__description {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #2C3E50;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* CTA Group */
.cmp_hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cmp_hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  overflow-wrap: anywhere;
  max-width: 100%;
  min-width: 0;
}

.cmp_hero__cta--primary {
  background: #1565C0;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
}

.cmp_hero__cta--primary:hover,
.cmp_hero__cta--primary:focus {
  background: #0D47A1;
  box-shadow: 0 6px 16px rgba(21, 101, 192, 0.3);
  transform: translateY(-2px);
  outline: none;
}

.cmp_hero__cta--primary:focus {
  outline: 2px solid #64B5F6;
  outline-offset: 2px;
}

.cmp_hero__cta--secondary {
  background: transparent;
  color: #1565C0;
  border: 2px solid #1565C0;
}

.cmp_hero__cta--secondary:hover,
.cmp_hero__cta--secondary:focus {
  background: rgba(21, 101, 192, 0.08);
  border-color: #0D47A1;
  outline: none;
}

.cmp_hero__cta--secondary:focus {
  outline: 2px solid #64B5F6;
  outline-offset: 2px;
}

.cmp_hero__cta-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.cmp_hero__cta--primary:hover .cmp_hero__cta-icon {
  transform: translateX(4px);
}

/* Trust Indicators */
.cmp_hero__trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 101, 192, 0.15);
}

.cmp_hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.cmp_hero__trust-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #1565C0;
}

.cmp_hero__trust-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2C3E50;
  overflow-wrap: anywhere;
}

/* Visual Section */
.cmp_hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  min-width: 0;
}

.cmp_hero__visual-card {
  background: #FFFFFF;
  border: 1px solid rgba(21, 101, 192, 0.15);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  max-width: 100%;
  min-width: 0;
}

.cmp_hero__visual-card:hover {
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
  transform: translateY(-4px);
}

.cmp_hero__visual-card--primary {
  border-left: 4px solid #1565C0;
}

.cmp_hero__visual-card--secondary {
  border-left: 4px solid #64B5F6;
}

.cmp_hero__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  min-width: 0;
}

.cmp_hero__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 101, 192, 0.08);
  border-radius: 12px;
  color: #1565C0;
}

.cmp_hero__card-icon--accent {
  background: rgba(100, 181, 246, 0.12);
  color: #64B5F6;
}

.cmp_hero__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1565C0;
  margin: 0;
  overflow-wrap: anywhere;
  min-width: 0;
}

.cmp_hero__card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #546E7A;
  margin: 0 0 1rem 0;
  overflow-wrap: anywhere;
}

.cmp_hero__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cmp_hero__tag {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(100, 181, 246, 0.12);
  color: #1565C0;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  overflow-wrap: anywhere;
  max-width: 100%;
}

/* Visual Accents */
.cmp_hero__visual-accent {
  position: absolute;
  top: -2rem;
  right: -1rem;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.cmp_hero__accent-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.cmp_hero__accent-dot--1 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.cmp_hero__accent-dot--2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.2) 0%, transparent 70%);
  top: 30px;
  left: 40px;
  animation-delay: 2s;
}

.cmp_hero__accent-dot--3 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
  top: 60px;
  left: 20px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .cmp_hero {
    padding: 5rem 2rem;
  }

  .cmp_hero__container {
    gap: 4rem;
  }

  .cmp_hero__content {
    gap: 2rem;
  }

  .cmp_hero__badge {
    font-size: 0.9375rem;
  }

  .cmp_hero__trust-indicators {
    gap: 2rem;
  }

  .cmp_hero__visual {
    flex-direction: row;
    gap: 2rem;
  }

  .cmp_hero__visual-card {
    flex: 1;
    min-width: 0;
  }

  .cmp_hero__cta-group {
    gap: 1.25rem;
  }

  .cmp_hero__cta {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .cmp_hero {
    padding: 6rem 3rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }

  .cmp_hero__container {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .cmp_hero__content {
    flex: 1;
    max-width: 600px;
    gap: 2rem;
  }

  .cmp_hero__visual {
    flex: 1;
    max-width: 550px;
    flex-direction: column;
    gap: 2rem;
  }

  .cmp_hero__headline {
    line-height: 1.1;
  }

  .cmp_hero__description {
    font-size: 1.25rem;
  }

  .cmp_hero__visual-accent {
    width: 200px;
    height: 200px;
    top: -3rem;
    right: -2rem;
  }

  .cmp_hero__accent-dot--1 {
    width: 120px;
    height: 120px;
  }

  .cmp_hero__accent-dot--2 {
    width: 90px;
    height: 90px;
    top: 50px;
    left: 60px;
  }

  .cmp_hero__accent-dot--3 {
    width: 60px;
    height: 60px;
    top: 100px;
    left: 30px;
  }
}

@media (min-width: 1280px) {
  .cmp_hero__content {
    max-width: 650px;
  }

  .cmp_hero__visual {
    max-width: 600px;
  }
}

/* Services Showcase Component */
.cmp_services_showcase {
  box-sizing: border-box;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F9FF 100%);
  padding: 3rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.cmp_services_showcase *,
.cmp_services_showcase *::before,
.cmp_services_showcase *::after {
  box-sizing: border-box;
}

.cmp_services_showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.services-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #424242;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Service Card */
.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.15);
}

.service-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  position: relative;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.service-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.service-description {
  font-size: 0.9375rem;
  color: #616161;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #424242;
  line-height: 1.5;
  min-width: 0;
}

.service-features li span {
  overflow-wrap: anywhere;
  min-width: 0;
}

.feature-icon {
  flex-shrink: 0;
  color: #64B5F6;
  margin-top: 0.125rem;
}

/* CTA Section */
.services-cta {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(21, 101, 192, 0.2);
}

.cta-text {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #E53935;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.3);
  overflow-wrap: anywhere;
  max-width: 100%;
}

.cta-button:hover {
  background: #C62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229, 57, 53, 0.4);
}

.cta-button:focus {
  outline: 3px solid #64B5F6;
  outline-offset: 3px;
}

.cta-button:active {
  transform: translateY(0);
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .cmp_services_showcase {
    padding: 4rem 2rem;
  }

  .services-header {
    margin-bottom: 3.5rem;
  }

  .service-card {
    flex-direction: row;
  }

  .service-image-wrapper {
    width: 40%;
    height: auto;
    min-height: 320px;
  }

  .service-content {
    padding: 2rem;
    width: 60%;
  }

  .services-cta {
    padding: 3rem 2rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .cmp_services_showcase {
    padding: 5rem 2.5rem;
  }

  .services-header {
    margin-bottom: 4rem;
  }

  .services-grid {
    gap: 2.5rem;
  }

  .service-image-wrapper {
    width: 45%;
  }

  .service-content {
    padding: 2.5rem;
    width: 55%;
    gap: 1.25rem;
  }

  .service-features {
    gap: 1rem;
  }

  .services-cta {
    padding: 3.5rem 3rem;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .cmp_services_showcase {
    padding: 6rem 3rem;
  }

  .service-content {
    padding: 3rem;
  }
}

/* Focus visible for keyboard navigation */
.service-card:focus-within {
  outline: 3px solid #64B5F6;
  outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card {
    border: 2px solid #1565C0;
  }

  .cta-button {
    border: 2px solid #FFFFFF;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-image,
  .cta-button {
    transition: none;
  }

  .service-card:hover {
    transform: none;
  }

  .service-card:hover .service-image {
    transform: none;
  }
}

/* Root Component Styles */
.cmp_final_cta {
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 100%);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.cmp_final_cta *,
.cmp_final_cta *::before,
.cmp_final_cta *::after {
  box-sizing: border-box;
}

/* Container */
.cmp_final_cta__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* Content Section */
.cmp_final_cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
  max-width: 100%;
  min-width: 0;
}

.cmp_final_cta__headline {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #1565C0;
  line-height: 1.2;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cmp_final_cta__subheadline {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #424242;
  line-height: 1.6;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
}

/* Benefits List */
.cmp_final_cta__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
  align-items: center;
}

.cmp_final_cta__benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
  transition: all 0.3s ease;
  max-width: 100%;
  min-width: 0;
}

.cmp_final_cta__benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.12);
}

.cmp_final_cta__benefit-icon {
  flex-shrink: 0;
  color: #1565C0;
  width: 24px;
  height: 24px;
}

.cmp_final_cta__benefit-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1565C0;
  overflow-wrap: anywhere;
  min-width: 0;
}

/* Action Buttons */
.cmp_final_cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cmp_final_cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  overflow-wrap: anywhere;
  max-width: 100%;
  min-width: 0;
}

.cmp_final_cta__button--primary {
  background: #1565C0;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
}

.cmp_final_cta__button--primary:hover {
  background: #0D47A1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21, 101, 192, 0.3);
}

.cmp_final_cta__button--primary:focus {
  outline: 3px solid #64B5F6;
  outline-offset: 2px;
}

.cmp_final_cta__button--secondary {
  background: transparent;
  color: #1565C0;
  border-color: #1565C0;
}

.cmp_final_cta__button--secondary:hover {
  background: #E3F2FD;
  transform: translateY(-2px);
}

.cmp_final_cta__button--secondary:focus {
  outline: 3px solid #64B5F6;
  outline-offset: 2px;
}

/* Trust Note */
.cmp_final_cta__trust-note {
  font-size: 0.875rem;
  color: #616161;
  margin: 1rem 0 0 0;
  font-style: italic;
  overflow-wrap: anywhere;
}

/* Visual Section - Cards */
.cmp_final_cta__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.cmp_final_cta__card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  min-width: 0;
}

.cmp_final_cta__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
}

.cmp_final_cta__card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.cmp_final_cta__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1565C0;
  margin: 0;
  overflow-wrap: anywhere;
}

.cmp_final_cta__card-description {
  font-size: 0.9375rem;
  color: #616161;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .cmp_final_cta {
    padding: 5rem 2rem;
  }

  .cmp_final_cta__container {
    gap: 4rem;
  }

  .cmp_final_cta__content {
    gap: 2rem;
  }

  .cmp_final_cta__benefits {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .cmp_final_cta__benefit {
    flex: 0 1 auto;
    min-width: 0;
  }

  .cmp_final_cta__actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .cmp_final_cta__button {
    flex: 0 1 auto;
    min-width: 180px;
  }

  .cmp_final_cta__visual {
    flex-direction: row;
    gap: 2rem;
  }

  .cmp_final_cta__card {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .cmp_final_cta {
    padding: 6rem 2rem;
  }

  .cmp_final_cta__container {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .cmp_final_cta__content {
    flex: 1 1 55%;
    text-align: left;
    min-width: 0;
  }

  .cmp_final_cta__headline {
    font-size: 2.5rem;
  }

  .cmp_final_cta__subheadline {
    font-size: 1.125rem;
    margin-left: 0;
    margin-right: 0;
  }

  .cmp_final_cta__benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cmp_final_cta__benefit {
    width: 100%;
    max-width: 400px;
  }

  .cmp_final_cta__actions {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .cmp_final_cta__trust-note {
    text-align: left;
  }

  .cmp_final_cta__visual {
    flex: 1 1 45%;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
  }

  .cmp_final_cta__card {
    padding: 2rem;
  }
}

@media (min-width: 1280px) {
  .cmp_final_cta__headline {
    font-size: 3rem;
  }

  .cmp_final_cta__subheadline {
    font-size: 1.25rem;
  }
}

.cmp_contact_form {
  box-sizing: border-box;
  padding: 3rem 1.25rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
  position: relative;
  overflow: hidden;
}

.cmp_contact_form *,
.cmp_contact_form *::before,
.cmp_contact_form *::after {
  box-sizing: border-box;
}

.cmp_contact_form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form-content {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.08);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-form-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-form-subtitle {
  font-size: 1.0625rem;
  color: #546E7A;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
}

.contact-form {
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1565C0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-wrap: anywhere;
}

.required-mark {
  color: #E53935;
  font-weight: 700;
}

.form-input,
.form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #1565C0;
  background: #FFFFFF;
  border: 2px solid #E0E7ED;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
  min-width: 0;
  overflow-wrap: anywhere;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #90A4AE;
}

.form-input:hover,
.form-textarea:hover {
  border-color: #64B5F6;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #1565C0;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #E53935;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-error {
  font-size: 0.875rem;
  color: #E53935;
  margin-top: 0.375rem;
  display: none;
  overflow-wrap: anywhere;
}

.form-error.visible {
  display: block;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn:focus {
  outline: 3px solid rgba(21, 101, 192, 0.4);
  outline-offset: 2px;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  overflow-wrap: anywhere;
}

.btn-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.form-message {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.form-message[hidden] {
  display: none;
}

.form-message:not([hidden]) {
  display: flex;
}

.form-success {
  background: rgba(100, 181, 246, 0.1);
  border: 2px solid #64B5F6;
}

.form-error-message {
  background: rgba(229, 57, 53, 0.1);
  border: 2px solid #E53935;
}

.message-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.form-success .message-icon {
  color: #1565C0;
}

.form-error-message .message-icon {
  color: #E53935;
}

.message-content {
  flex: 1;
  min-width: 0;
}

.message-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1565C0;
  margin: 0 0 0.375rem 0;
  overflow-wrap: anywhere;
}

.form-error-message .message-title {
  color: #E53935;
}

.message-text {
  font-size: 0.9375rem;
  color: #546E7A;
  margin: 0;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.05) 0%, rgba(21, 101, 192, 0.05) 100%);
  border: 1px solid rgba(100, 181, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.12);
  border-color: #64B5F6;
}

.info-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1565C0 0%, #64B5F6 100%);
  border-radius: 10px;
  color: #FFFFFF;
}

.info-card-content {
  flex: 1;
  min-width: 0;
}

.info-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1565C0;
  margin: 0 0 0.375rem 0;
  overflow-wrap: anywhere;
}

.info-card-link {
  font-size: 0.9375rem;
  color: #546E7A;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  overflow-wrap: anywhere;
}

.info-card-link:hover {
  color: #1565C0;
  text-decoration: underline;
}

.info-card-link:focus {
  outline: 2px solid #1565C0;
  outline-offset: 2px;
  border-radius: 4px;
}

.info-card-text {
  font-size: 0.9375rem;
  color: #546E7A;
  margin: 0;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

@media (min-width: 768px) {
  .cmp_contact_form {
    padding: 5rem 2rem;
  }

  .contact-form-content {
    padding: 3rem 2.5rem;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.25rem;
  }

  .contact-info-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .info-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-card-icon {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .cmp_contact_form {
    padding: 6rem 2rem;
  }

  .contact-form-content {
    padding: 3.5rem 3rem;
  }

  .contact-form-header {
    margin-bottom: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER COMPONENT - PRODUCTION CSS
   ═══════════════════════════════════════════════════════════════ */

.cmp_footer {
  box-sizing: border-box;
  background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
  border-top: 1px solid rgba(21, 101, 192, 0.08);
  padding: 4rem 1.5rem 2rem;
  color: #1565C0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.cmp_footer *,
.cmp_footer *::before,
.cmp_footer *::after {
  box-sizing: border-box;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* Main Footer Grid */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.footer-logo {
  width: 160px;
  height: auto;
  max-width: 100%;
  display: block;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(21, 101, 192, 0.8);
  margin: 0;
  max-width: 400px;
  overflow-wrap: anywhere;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1565C0;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease, transform 0.2s ease;
  overflow-wrap: anywhere;
  min-width: 0;
}

.footer-contact-link:hover,
.footer-contact-link:focus {
  color: #64B5F6;
  transform: translateX(2px);
}

.footer-contact-link:focus {
  outline: 2px solid #64B5F6;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(21, 101, 192, 0.8);
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
  min-width: 0;
}

.contact-icon {
  flex-shrink: 0;
  color: #64B5F6;
  margin-top: 2px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1565C0;
  margin: 0;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(21, 101, 192, 0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  overflow-wrap: anywhere;
  min-width: 0;
}

.footer-link:hover,
.footer-link:focus {
  color: #1565C0;
  transform: translateX(3px);
}

.footer-link:focus {
  outline: 2px solid #64B5F6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(21, 101, 192, 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(21, 101, 192, 0.65);
  margin: 0;
  overflow-wrap: anywhere;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.footer-legal-link {
  color: rgba(21, 101, 192, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.footer-legal-link:hover,
.footer-legal-link:focus {
  color: #1565C0;
}

.footer-legal-link:focus {
  outline: 2px solid #64B5F6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   TABLET RESPONSIVE (768px+)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .cmp_footer {
    padding: 5rem 2.5rem 2.5rem;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DESKTOP RESPONSIVE (1024px+)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .cmp_footer {
    padding: 6rem 3rem 3rem;
  }

  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }

  .footer-brand {
    grid-column: 1 / 2;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-contact-link,
  .footer-address,
  .footer-link {
    font-size: 1rem;
  }

  .footer-column-title {
    font-size: 1.0625rem;
  }

  .footer-links {
    gap: 0.875rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LARGE DESKTOP (1280px+)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1280px) {
  .footer-main {
    gap: 5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACCESSIBILITY & FOCUS STATES
   ═══════════════════════════════════════════════════════════════ */

.cmp_footer a:focus-visible {
  outline: 2px solid #64B5F6;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */

@media print {
  .cmp_footer {
    background: #FFFFFF;
    border-top: 1px solid #1565C0;
    padding: 2rem 1rem;
  }

  .footer-contact-link,
  .footer-link,
  .footer-legal-link {
    color: #1565C0;
    text-decoration: underline;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Services Page Content Component
   ═══════════════════════════════════════════════════════════════ */

.cmp_services_page_content {
  box-sizing: border-box;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFB 100%);
  padding: 3rem 1.25rem;
  position: relative;
}

.cmp_services_page_content *,
.cmp_services_page_content *::before,
.cmp_services_page_content *::after {
  box-sizing: border-box;
}

.services-content-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   Services Introduction
   ═══════════════════════════════════════════════════════════════ */

.services-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.services-main-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.services-intro-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #37474F;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}

/* ═══════════════════════════════════════════════════════════════
   Services Grid
   ═══════════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
}

.service-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.service-card-description {
  font-size: 1rem;
  color: #455A64;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  overflow-wrap: anywhere;
}

.service-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #37474F;
  line-height: 1.5;
  min-width: 0;
}

.benefit-icon {
  flex-shrink: 0;
  color: #64B5F6;
  margin-top: 0.125rem;
}

.service-benefit-item span {
  overflow-wrap: anywhere;
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Development Approach Section
   ═══════════════════════════════════════════════════════════════ */

.services-approach {
  margin-bottom: 4rem;
}

.approach-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1565C0;
  text-align: center;
  margin: 0 0 2.5rem 0;
  overflow-wrap: anywhere;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.approach-card {
  background: #FFFFFF;
  border: 2px solid #E3F2FD;
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.approach-card:hover {
  border-color: #64B5F6;
  transform: translateY(-2px);
}

.approach-icon {
  color: #1565C0;
  margin-bottom: 1rem;
  display: inline-block;
}

.approach-card-title {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0 0 0.5rem 0;
  overflow-wrap: anywhere;
}

.approach-card-text {
  font-size: 0.9375rem;
  color: #546E7A;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

/* ═══════════════════════════════════════════════════════════════
   Technology Stack Section
   ═══════════════════════════════════════════════════════════════ */

.services-tech-stack {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  margin-bottom: 4rem;
}

.tech-stack-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1565C0;
  text-align: center;
  margin: 0 0 0.75rem 0;
  overflow-wrap: anywhere;
}

.tech-stack-intro {
  font-size: 1rem;
  color: #37474F;
  text-align: center;
  margin: 0 0 2rem 0;
  overflow-wrap: anywhere;
}

.tech-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.tech-category {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 1.25rem;
}

.tech-category-title {
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  font-weight: 700;
  color: #1565C0;
  margin: 0 0 0.5rem 0;
  overflow-wrap: anywhere;
}

.tech-category-text {
  font-size: 0.9375rem;
  color: #546E7A;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

/* ═══════════════════════════════════════════════════════════════
   CTA Block
   ═══════════════════════════════════════════════════════════════ */

.services-cta-block {
  background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.cta-block-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
  overflow-wrap: anywhere;
}

.cta-block-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #E3F2FD;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
}

.cta-block-button {
  display: inline-block;
  background: #E53935;
  color: #FFFFFF;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.cta-block-button:hover {
  background: #C62828;
  transform: translateY(-2px);
}

.cta-block-button:focus {
  outline: 3px solid #FFFFFF;
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   Tablet Responsive (768px+)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .cmp_services_page_content {
    padding: 4rem 2rem;
  }

  .services-intro {
    margin-bottom: 4rem;
  }

  .services-grid {
    gap: 2.5rem;
    margin-bottom: 5rem;
  }

  .service-card {
    flex-direction: row;
  }

  .service-card-image {
    width: 40%;
    height: auto;
    min-height: 320px;
  }

  .service-card-content {
    padding: 2rem;
    width: 60%;
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .tech-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .services-cta-block {
    padding: 3rem 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Desktop Responsive (1024px+)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .cmp_services_page_content {
    padding: 5rem 2.5rem;
  }

  .services-intro {
    margin-bottom: 5rem;
  }

  .services-grid {
    margin-bottom: 6rem;
  }

  .service-card-image {
    width: 45%;
  }

  .service-card-content {
    width: 55%;
    padding: 2.5rem;
  }

  .approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tech-categories {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-approach {
    margin-bottom: 5rem;
  }

  .services-tech-stack {
    padding: 3rem 2.5rem;
    margin-bottom: 5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Large Desktop (1280px+)
   ═══════════════════════════════════════════════════════════════ */

@media (min-width: 1280px) {
  .cmp_services_page_content {
    padding: 6rem 3rem;
  }

  .service-card-content {
    padding: 3rem;
  }

  .approach-card {
    padding: 2rem;
  }

  .tech-category {
    padding: 1.5rem;
  }
}