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

:root {
  --background: 0 8% 98%;
  --background-secondary: 4 15% 97%;
  --foreground: 0 5% 15%;
  --primary: 0 24% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 12% 96%;
  --secondary-foreground: 0 5% 15%;
  --muted: 0 8% 96%;
  --muted-foreground: 0 10% 40%;
  --accent: 0 20% 95%;
  --accent-foreground: 0 25% 25%;
  --border: 0 10% 90%;
  --input: 0 10% 90%;
  --ring: 0 24% 60%;
  --radius: 0.25rem;

  --spacing-section: 4rem;
  --spacing-section-lg: 5rem;
  --spacing-content: 3rem;
  --spacing-element: 1.5rem;
  --spacing-small: 1rem;
}

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

section[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  background-color: hsl(var(--background));
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: hsl(var(--foreground));
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  letter-spacing: -0.025em;
}

a {
  color: inherit;
}

.about-text a,
.section-description a,
.faq-answer a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}

.about-text a:hover,
.section-description a:hover,
.faq-answer a:hover {
  color: hsl(var(--primary) / 0.8);
}

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

:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  padding: 0.5rem 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  transform: translateY(-200%);
  transition: transform 0.15s ease;
  z-index: 999;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.bg-secondary {
  background-color: hsl(var(--background-secondary));
}

@media (min-width: 1100px) {
  .container {
    max-width: 1100px;
  }
}

.hidden {
  display: none !important;
}

main {
  min-height: 100vh;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  main {
    padding-bottom: 0;
  }
}

#nav-sentinel {
  position: absolute;
  top: 50px;
  height: 1px;
  width: 1px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-transparent {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.nav-menu-open,
.nav-scrolled {
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav-inner {
    height: 5rem;
  }
}

.nav-logo {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 3rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .nav-logo-img {
    height: 3.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: hsl(var(--foreground));
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: background-color 0.15s;
}

.mobile-menu-btn:hover {
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.mobile-nav {
  padding-bottom: 1.5rem;
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  margin-top: 0.5rem;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.15s;
}

.mobile-nav-link:hover {
  color: hsl(var(--foreground));
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 5rem;
}

.hero-container {
  max-width: 56rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-container {
    padding: 5rem 0;
  }
}

.hero-content {
  text-align: center;
}

.hero-label,
.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
    line-height: 1.1;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 1rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-location {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.launch-notice {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.08) 0%, hsl(var(--primary) / 0.04) 100%);
  border-left: 4px solid hsl(var(--primary));
  border-radius: 0.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.launch-notice p {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin: 0;
  line-height: 1.6;
}

.launch-notice strong {
  color: hsl(var(--primary));
}

.launch-notice span {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0.5rem;
  display: block;
}

.hero-features {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: hsl(var(--border));
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-item {
  background-color: hsl(var(--background));
  padding: 1.5rem;
  text-align: center;
}

.feature-item p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 2rem;
  font-size: 0.875rem;
}

.btn:not(.btn-outline):not(.btn-secondary) {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn:not(.btn-outline):not(.btn-secondary):hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-outline {
  border: 1px solid hsl(var(--input));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.8);
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
}

.btn .icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.section {
  padding: var(--spacing-section) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--spacing-section-lg) 0;
  }
}

.border-top {
  border-top: 1px solid hsl(var(--border));
}

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

.section-title {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: var(--spacing-element);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
}

.section-description {
  color: hsl(var(--foreground) / 0.75);
  max-width: 60rem;
  font-size: 1rem;
  line-height: 1.7;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.section p {
  text-align: justify;
}

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

@media (min-width: 768px) {
  .about-grid {
    gap: 4rem;
  }
}

.about-text {
  color: hsl(var(--foreground) / 0.8);
  line-height: 1.7;
  max-width: 100%;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .about-text {
    max-width: 48rem;
  }
}

@media (min-width: 1024px) {
  .about-text {
    max-width: 64rem;
  }
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-bottom {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 3rem;
  }
}

.values-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
}

.value-line {
  width: 2rem;
  height: 1px;
  background-color: hsl(var(--foreground) / 0.2);
}

.value-item span:last-child {
  color: hsl(var(--foreground));
}

.useful-links-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.useful-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.useful-link-item {
  display: flex;
  align-items: flex-start;
}

.useful-link {
  font-size: 0.9375rem;
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.useful-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.6);
  transition: background-color 0.15s;
}

.useful-link:hover {
  color: hsl(var(--primary) / 0.8);
}

.useful-link:hover::before {
  background-color: hsl(var(--primary));
}

.process-grid {
  display: grid;
  gap: 3rem;
  list-style: none;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.process-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 300;
  color: hsl(var(--border));
  margin-bottom: 1.5rem;
  display: block;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.process-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.process-note {
  margin-top: 4rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  border-left: 2px solid hsl(var(--border));
  padding-left: 1.5rem;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.services-list-wrapper {
  margin: 3rem 0;
}

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

.section-note {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.documents-wrapper {
  margin-top: var(--spacing-content);
  max-width: 100%;
}

.documents-title {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: var(--spacing-element);
}

@media (min-width: 768px) {
  .documents-title {
    font-size: 1.65rem;
  }
}

.documents-note {
  margin-top: var(--spacing-element);
  font-size: 0.9375rem;
  color: hsl(var(--foreground) / 0.75);
  line-height: 1.7;
  background-color: hsl(var(--secondary));
  padding: 1rem 1.25rem;
  border-radius: calc(var(--radius) + 2px);
  border-left: 3px solid hsl(var(--primary) / 0.5);
}

.contact-section {
  background-color: hsl(var(--background));
}

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

@media (min-width: 768px) {
  .contact-header {
    margin-bottom: 4rem;
  }
}

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

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

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

.contact-card {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s ease;
}

.contact-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.08);
}

.contact-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 0.375rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
}

.contact-card-content {
  flex: 1;
}

.contact-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.85);
  margin: 0;
}

.contact-card-text address {
  font-style: normal;
}

.contact-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.contact-link:hover {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.contact-card-note {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.7);
  margin-top: 0.5rem;
}

.contact-location-wrapper {
  order: 2;
}

@media (min-width: 1024px) {
  .contact-location-wrapper {
    order: 2;
  }
}

.contact-location-card {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 8px hsl(var(--foreground) / 0.05);
  height: 100%;
}

@media (min-width: 768px) {
  .contact-location-card {
    padding: 2.5rem;
  }
}

.contact-location-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.contact-location-content {
  display: grid;
  gap: 1.25rem;
}

.contact-location-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.contact-location-text strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-location-text {
    font-size: 1rem;
  }
}

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

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

.contact-map-fullwidth {
  margin-top: 2rem;
}

.contact-map-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .contact-map-title {
    font-size: 1.75rem;
  }
}

.contact-map-container {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 2px 8px hsl(var(--foreground) / 0.05);
}

@media (min-width: 768px) {
  .contact-map-container {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .contact-map-container {
    height: 600px;
  }
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
}

.contact-form-wrapper {
  order: 1;
}

@media (min-width: 1024px) {
  .contact-form-wrapper {
    order: 1;
  }
}

.contact-form-card {
  background-color: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 8px hsl(var(--foreground) / 0.05);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.contact-form-description {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  background-color: hsl(var(--background));
  border: 1.5px solid hsl(var(--border));
  border-radius: 0.375rem;
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
  font-family: inherit;
  line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground) / 0.6);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  background-color: hsl(var(--background));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

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

.contact-submit-btn {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: 1px solid hsl(var(--primary));
  margin-top: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-submit-btn:hover {
  background-color: hsl(var(--primary) / 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid hsl(var(--border));
  padding: 0.5rem 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: hsl(var(--foreground));
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.footer {
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border));
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-name {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.footer-location {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.15s;
}

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

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: block;
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
  padding: 0.75rem 1rem;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
  border-radius: calc(var(--radius) - 2px);
}

.mobile-cta-primary {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.mobile-cta-primary:hover {
  opacity: 0.9;
}

.mobile-cta-secondary {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  transition: background-color 0.15s;
}

.mobile-cta-secondary:hover {
  background-color: hsl(var(--secondary));
}

.mobile-cta-btn .icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.services-list {
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  list-style: none;
  padding: 0.5rem 0;
}

.service-item {
  padding: 0.875rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: opacity 0.15s ease;
}

.service-item:hover {
  opacity: 0.7;
}

.service-number {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-delay {
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}

.fade-in-delay-2 {
  opacity: 0;
  transition: opacity 0.8s ease 0.8s;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in,
  .fade-in-delay,
  .fade-in-delay-2 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.page-service-simple .hero-section {
  display: none;
}

.page-service-simple #wprowadzenie.section,
.page-service-simple #dokumenty.section {
  padding-top: 7rem;
}

@media (min-width: 768px) {

  .page-service-simple #wprowadzenie.section,
  .page-service-simple #dokumenty.section {
    padding-top: 8rem;
  }
}

.documents-simple-list {
  margin: var(--spacing-small) 0 0;
  padding: 0;
  list-style: none;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.documents-simple-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: hsl(var(--foreground) / 0.85);
}

.documents-simple-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background-color: hsl(var(--muted-foreground) / 0.4);
}

.documents-wrapper .documents-note {
  max-width: 60rem;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  border: 1.5px solid hsl(var(--border));
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form-checkbox:checked {
  background-color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.form-checkbox:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.form-checkbox-label {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
}

.form-checkbox-label a {
  color: hsl(var(--foreground));
  text-decoration: underline;
  transition: color 0.15s;
}

.form-checkbox-label a:hover {
  color: hsl(var(--primary));
}