:root {
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #3385ff;
  --success: #10b981;
  --error: #ef4444;
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --transition: all 0.2s ease;
  --container-max: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

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

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

.container--narrow {
  max-width: 800px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: var(--transition);
}

.header__logo:hover {
  color: var(--primary);
}

.header__nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav a {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0;
  transition: var(--transition);
}

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

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

.header__nav a:hover::after {
  width: 100%;
}

.header__nav a.active {
  color: var(--primary);
}

.header__nav a.active::after {
  width: 100%;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
}

.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  z-index: 1001;
  background: var(--gray-900);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.5rem;
  transition: var(--transition);
}

.mobile-menu__close:hover {
  color: var(--white);
}

.mobile-menu__nav {
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__nav a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-400);
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--white);
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .hero__container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;
  }
}

.hero__content {
  flex: 1;
  max-width: 600px;
}

.hero__title {
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero--page {
  min-height: auto;
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--gray-50);
}

.hero--page .hero__container {
  padding: 0;
}

.hero--page .hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

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

.btn--secondary:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn--full {
  width: 100%;
}

.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7.5rem 0;
  }
}

.section--gray {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card__image {
  height: 200px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__content {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.card__link:hover {
  color: var(--primary-dark);
}

.card--icon {
  padding: 2rem;
  text-align: center;
}

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

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit:hover {
  box-shadow: var(--shadow);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  color: var(--primary);
}

.benefit__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.benefit__text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.benefit__number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-wrapper__header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-wrapper__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-wrapper__subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  margin: 0;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form__input:hover,
.form__select:hover,
.form__textarea:hover {
  border-color: var(--gray-300);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--gray-400);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form__checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form__checkbox-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.form__checkbox-text a {
  color: var(--primary);
}

.form__checkbox-text a:hover {
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: 50%;
  color: var(--success);
}

.form-success__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success__text {
  color: var(--gray-500);
}

.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer__title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__address {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer__address a {
  transition: var(--transition);
}

.footer__address a:hover {
  color: var(--white);
}

.footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__list a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer__list a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__disclaimer {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.service-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-detail__content h2 {
  margin-bottom: 1rem;
}

.service-detail__content p {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.service-detail__features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.service-detail__features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.content-grid--reverse {
  direction: rtl;
}

.content-grid--reverse > * {
  direction: ltr;
}

.stats {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value {
  display: flex;
  gap: 1rem;
}

.value__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  color: var(--primary);
}

.value__content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.value__content p {
  font-size: 0.875rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info__title {
  margin-bottom: 1.5rem;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  color: var(--primary);
}

.contact-info__content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info__content p {
  font-size: 0.9375rem;
  margin: 0;
}

.contact-form-wrapper__title {
  margin-bottom: 1.5rem;
}

.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-section__content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.cta-section .btn--secondary:hover {
  background: transparent;
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.portfolio-item__title {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.portfolio-item__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.75rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}

.legal-content ul li {
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

.page-title {
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.page-date {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.contact-address {
  font-style: normal;
  margin-top: 1rem;
}

.contact-address p {
  margin-bottom: 0.25rem;
}

.legal-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  text-align: center;
}

.legal-cta a {
  color: var(--primary);
  font-weight: 600;
}

.lead-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.8;
}

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

.content-card h2 {
  margin: 2rem 0 1rem;
}

.content-card > p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.content-card__image {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.content-card__image img {
  width: 100%;
  height: auto;
}

.content-card__image--right {
  float: right;
  max-width: 300px;
  margin: 0 0 1.5rem 2rem;
}

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

.feature-list li {
  margin-bottom: 0.75rem;
  color: var(--gray-600);
  list-style-type: disc;
}

.revenue-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .revenue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.revenue-item {
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.revenue-item__number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.revenue-item__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.revenue-item__text {
  font-size: 0.9375rem;
  margin: 0;
}

.data-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.data-table th {
  font-weight: 600;
  background: var(--gray-50);
  color: var(--gray-700);
}

.data-table td {
  color: var(--gray-600);
}

.content-card__note {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 1rem;
}

.purpose-list {
  margin: 1.5rem 0;
}

.purpose-item {
  margin-bottom: 1.5rem;
}

.purpose-item h3 {
  margin-bottom: 0.5rem;
}

.purpose-item p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@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;
  }
}

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

@media (prefers-contrast: high) {
  .btn--primary {
    border: 2px solid var(--white);
  }
  
  .card {
    border: 2px solid var(--gray-900);
  }
}
