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

:root {
  --primary: #0052CC;
  --primary-dark: #003D99;
  --primary-light: #4C9AFF;
  --secondary: #091E42;
  --text: #172B4D;
  --text-light: #5E6C84;
  --border: #DFE1E6;
  --bg: #FFFFFF;
  --bg-light: #F4F5F7;
  --success: #00875A;
  --warning: #FF991F;
  
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  --container-max: 1200px;
  --container-padding: 1rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

strong {
  font-weight: 600;
  color: var(--secondary);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary-inverse {
  background: white;
  color: var(--primary);
  border-color: white;
}

.btn-primary-inverse:hover {
  background: var(--bg-light);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 3px;
}

.header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.logo:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid var(--border);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.menu-toggle:hover {
  border-color: var(--primary);
}

.menu-toggle:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.2s ease;
  margin: 0;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.main-nav > ul > li {
  position: relative;
}

.has-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem var(--space-sm);
  background: none;
  border: none;
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.nav-dropdown-toggle:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.25rem 0;
  margin-top: 0.125rem;
  z-index: 1000;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.dropdown-menu[hidden] {
  display: none;
}

.dropdown-menu li {
  margin: 0;
  display: block;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 0.25rem 0.875rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-sizing: border-box;
  line-height: 1.3;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.dropdown-menu a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: -3px;
}

.main-nav > ul > li > a {
  display: block;
  padding: 0.5rem var(--space-sm);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav > ul > li > a:hover {
  color: var(--primary);
  text-decoration: none;
}

.main-nav > ul > li > a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--primary-dark);
}

.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb-list a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--text-light);
  font-weight: 500;
}

.breadcrumb-list span[aria-hidden="true"] {
  color: var(--secondary);
  margin: 0 0.25rem;
  user-select: none;
}

.hero {
  background: linear-gradient(135deg, #F4F5F7 0%, #FFFFFF 100%);
  padding: 2.5rem 0 2rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.hero-carousel-section h1 {
  color: white;
}

.hero-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-carousel-section {
  background: var(--primary);
  padding: 4rem 0 3rem;
  border-bottom: none;
}

.hero-carousel-section .hero-content {
  max-width: none;
}

.hero-carousel {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-slides {
  min-height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-headline {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}

.hero-carousel-section .btn-primary {
  background: white;
  color: var(--secondary);
  border-color: white;
}

.hero-carousel-section .btn-primary:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--secondary);
}

.hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hero-nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.hero-nav-btn:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.hero-nav-btn svg {
  width: 20px;
  height: 20px;
  color: white;
}

.hero-dots {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active {
  background: white;
  transform: scale(1.4);
}

.hero-dot:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .hero-carousel-section {
    padding: 3rem 0 2.5rem;
  }

  .hero-slides {
    min-height: 18rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 320px;
  }
}

.trust-bar {
  background: var(--secondary);
  color: white;
  padding: 0.75rem 0;
  text-align: center;
}

.trust-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
}

.why-us {
  padding: 2.5rem 0;
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
  line-height: 1.3;
  font-weight: 600;
}

.why-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

.stories-carousel {
  padding: 2.5rem 0;
  background: var(--bg-light);
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 0 3.5rem;
}

.carousel-track {
  position: relative;
  overflow: hidden;
}

.story-card {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.story-card.active {
  display: block;
}

.story-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.story-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.story-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.carousel-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.carousel-btn:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.dot:hover {
  background: var(--primary-light);
}

.dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

.dot:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.features {
  padding: 2.5rem 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.25rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--secondary);
}

.feature-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.services-preview {
  padding: 2.5rem 0;
  background: var(--bg-light);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.services-text h2 {
  margin-bottom: 0.75rem;
}

.services-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.services-list ul {
  list-style: none;
  padding: 0;
}

.services-list li {
  padding: 0.75rem;
  background: white;
  border-left: 4px solid var(--primary);
  margin-bottom: 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.services-list li:last-child {
  margin-bottom: 0;
}

.scenarios {
  padding: 2.5rem 0;
  background: white;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.scenario-card {
  display: block;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.scenario-card:hover {
  border-color: var(--primary);
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.scenario-card:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

.scenario-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.scenario-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-light);
}

.cta {
  padding: 1.75rem 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 0.375rem;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.cta-content p {
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.cta-contact {
  margin-top: var(--space-sm);
}

.cta-contact p {
  margin: 0.25rem 0;
  font-size: 1.125rem;
}

.cta-contact a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

.cta-contact a:hover {
  opacity: 0.9;
}

.footer {
  background: #ffffff;
  border-top: 1px solid #DFE1E6;
  padding: 2rem 0;
  margin-top: 4rem;
}

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

.footer-copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
    z-index: 1000;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  
  .main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  
  .main-nav li:last-child {
    border-bottom: none;
  }
  
  .main-nav a {
    padding: 0.75rem;
    display: block;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .services-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
  }
  
  .hero {
    padding: 2rem 0 1.5rem 0;
  }
  
  .features,
  .services-preview,
  .cta {
    padding: 2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.page-hero {
  background: linear-gradient(135deg, #F4F5F7 0%, #FFFFFF 100%);
  padding: 2rem 0 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-intro {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.service-detail {
  padding: 2.5rem 0;
  background: white;
}

.service-block {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
}

.service-block:last-of-type {
  margin-bottom: 0;
}

.service-header h2 {
  margin-bottom: var(--space-md);
  color: var(--secondary);
  font-size: 1.75rem;
}

.service-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.service-group {
  margin-bottom: 3rem;
}

.service-group:last-of-type {
  margin-bottom: 0;
}

.content-section {
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.content-section h2 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.content-section p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.service-group-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--secondary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.service-group-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.service-audience {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 500;
}

.service-note {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
}

.service-card-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-card-grid-1 {
  grid-template-columns: 1fr;
  max-width: 700px;
}

.service-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.service-card h2 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.service-card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.service-card .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.service-card .service-list li {
  padding: 0.375rem 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.5;
  font-size: 0.9375rem;
}

.service-card .service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.service-card .service-audience {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.service-card .service-note {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 1024px) {
  .service-card-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-card-grid-2 {
    grid-template-columns: 1fr;
  }
}

.process-steps {
  padding: 2.5rem 0;
  background: white;
}

.process-grid {
  display: grid;
  gap: 1.25rem;
}

.process-step {
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.process-step h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.375rem;
}

.process-step p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.info-grid {
  padding: 2.5rem 0;
  background: var(--bg-light);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.info-card {
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.info-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.375rem;
  color: var(--secondary);
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
  color: var(--text-light);
}

.info-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.credentials-section {
  padding: 2.5rem 0;
  background: white;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.credential-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.credential-card h2 {
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--secondary);
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credential-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.7;
  font-size: 1.0625rem;
}

.credential-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.125rem;
}

.contact-section {
  padding: 2.5rem 0;
  background: white;
}

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

.contact-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-card h2 {
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--secondary);
}

.contact-info {
  line-height: 2;
  font-size: 1.0625rem;
}

.contact-info a {
  color: var(--primary);
  font-weight: 500;
}

.reality-check {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #FFF9E6;
  border: 2px solid #FFC107;
  border-radius: var(--radius-lg);
}

.reality-check h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
  color: var(--secondary);
}

.reality-check p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.reality-check ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.reality-check li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.reality-check strong {
  color: var(--secondary);
}

.statement-section {
  padding: 2.5rem 0;
  background: white;
}

.statement-content {
  max-width: 800px;
  margin: 0 auto;
}

.statement-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.statement-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light);
}

.faq-section {
  padding: 2.5rem 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  margin-bottom: 0.75rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-accordion:last-child {
  margin-bottom: 0;
}

.faq-accordion h2,
.faq-accordion h3 {
  margin: 0;
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.25rem;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease;
}

.faq-button:hover {
  background: var(--bg-light);
}

.faq-button:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: -3px;
}

.faq-question {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--secondary);
  padding-right: 1rem;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-light);
}

.faq-content[hidden] {
  display: none;
}

.validation-matters {
  padding: 2.5rem 0;
  background: white;
}

.validation-content {
  max-width: 900px;
  margin: 0 auto;
}

.validation-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.validation-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.validation-list li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

@media (max-width: 768px) {
  .grid-2col,
  .credentials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-block {
    padding: 1.25rem;
  }
}

@media print {
  .header,
  .menu-toggle,
  .skip-link,
  .cta,
  .footer {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}

.contact-layout{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:32px;
  align-items:start;
}
.contact-form-container h2{
  margin:0 0 1.5rem 0;
  font-size:1.65rem;
  font-weight:950;
  letter-spacing:-.02em;
}
.contact-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}
@media (max-width:900px){
  .contact-layout{
    grid-template-columns:1fr;
  }
}

.form-note{
  margin:0 0 1.5rem 0;
  font-size:.92rem;
  color:var(--text-light);
}
.form-group{
  margin-bottom:1.5rem;
}
label{
  display:block;
  font-weight:600;
  margin-bottom:.5rem;
  color:var(--secondary);
  font-size:.95rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select{
  width:100%;
  padding:.75rem;
  border:2px solid #DFE1E6;
  border-radius:8px;
  font-size:1rem;
  font-family:inherit;
  background:#fff;
  color:var(--secondary);
  transition:border-color .2s, box-shadow .2s;
}
input:hover,
textarea:hover,
select:hover{
  border-color:#B3B9C4;
}
input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(10,102,255,.1);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"]{
  border-color:#DC2626;
  background:#FEF2F2;
}
.error{
  color:#DC2626;
  font-size:.875rem;
  margin-top:.5rem;
  display:none;
  font-weight:500;
}
.error:not(:empty){
  display:block;
}
.hint{
  font-size:.875rem;
  color:var(--text-light);
  margin-top:.5rem;
  line-height:1.5;
}
.success{
  background:#ECFDF5;
  color:#065F46;
  padding:1rem;
  border-radius:8px;
  margin-top:1rem;
  display:none;
  border:1px solid #A7F3D0;
  font-weight:500;
}
.success:not(:empty){
  display:block;
}
fieldset{
  border:none;
  padding:0;
  margin:0 0 1.5rem 0;
}
#inquiry-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
legend{
  font-weight:600;
  margin-bottom:1rem;
  color:var(--secondary);
  font-size:.95rem;
}
.radio-group{
  margin-bottom:.75rem;
  display:flex;
  align-items:center;
  gap:.75rem;
}
.radio-group input[type="radio"]{
  width:auto;
  margin:0;
  cursor:pointer;
  min-width:18px;
  min-height:18px;
  accent-color:var(--primary);
}
.radio-group label{
  display:inline;
  font-weight:400;
  margin:0;
  cursor:pointer;
  font-size:.95rem;
}
textarea{
  min-height:120px;
  resize:vertical;
}
button[type="submit"]{
  background:var(--primary);
  color:#fff;
  padding:.875rem 2rem;
  border:none;
  border-radius:8px;
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition:background-color .2s, transform .1s;
  min-height:44px;
}
button[type="submit"]:hover{
  background:#0854D1;
  transform:translateY(-1px);
}
button[type="submit"]:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(10,102,255,.3);
}
button[type="submit"]:active{
  transform:translateY(0);
}
button[type="submit"]:disabled{
  background:#B3B9C4;
  cursor:not-allowed;
  transform:none;
}

.contact-callout {
  background: #F0F7FF;
  border: 1px solid #B3D4FF;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-callout p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--secondary);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .main-nav {
    z-index: 1000;
  }
}

ul, ol {
  padding-left: 2.5rem;
  margin: 1rem 0;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

ul ul, ol ul, ul ol, ol ol {
  margin: 0.5rem 0;
}
