@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('fonts/Inter-VariableFont.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #111827;
  color: #e2e8f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111827; }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4a5568; }
::selection { background: rgba(99, 179, 237, 0.3); color: white; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.icon-sm svg { width: 18px; height: 18px; }
.icon-lg svg { width: 28px; height: 28px; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.875rem 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

.header.scrolled,
.header.menu-open {
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.15), rgba(129, 230, 217, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.logo:hover .logo-icon { transform: scale(1.08); }

.logo-icon svg {
  width: 18px;
  height: 18px;
  color: #63b3ed;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

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

.nav-link {
  color: #94a3b8;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #63b3ed, #4fd1c5);
  color: #111827;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(99, 179, 237, 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  border-radius: 10px;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover { color: #fff; }

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

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 0.875rem;
}

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

.mobile-menu a {
  display: block;
  padding: 0.625rem 0;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-menu a:hover { color: #fff; }

.mobile-menu .btn {
  width: 100%;
  margin-top: 0.75rem;
  color: #111827;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  background: rgba(99, 179, 237, 0.08);
  border: 1px solid rgba(99, 179, 237, 0.15);
  color: #63b3ed;
  animation: badge-float 3.5s ease-in-out infinite;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(90deg, #fff 0%, #63b3ed 25%, #4fd1c5 50%, #63b3ed 75%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-shimmer 6s ease-in-out infinite;
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.hero-tagline {
  font-size: 1.125rem;
  color: #63b3ed;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #63b3ed;
  width: 0;
  animation: typing 1.8s steps(30) 0.5s forwards, blink-caret 0.6s step-end 6;
}

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

.hero-description {
  color: #94a3b8;
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-buttons { flex-direction: row; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #4a5568;
  animation: float 3s ease-in-out infinite;
  cursor: pointer;
  display: inline-flex;
  transition: color 0.2s;
}

.scroll-indicator:hover { color: #63b3ed; }

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

.section {
  padding: 5rem 0;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  background: rgba(99, 179, 237, 0.08);
  border: 1px solid rgba(99, 179, 237, 0.12);
  color: #63b3ed;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  color: #fff;
}

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

.section-subtitle {
  color: #94a3b8;
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s ease;
  position: relative;
}

.card:hover {
  border-color: rgba(99, 179, 237, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 179, 237, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.12), rgba(79, 209, 197, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.card:hover .card-icon { transform: scale(1.1); }

.card-icon svg {
  width: 22px;
  height: 22px;
  color: #63b3ed;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  transition: color 0.3s;
}

.card:hover h3 { color: #63b3ed; }

.card p {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

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

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

.about {
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0.01) 70%, transparent);
  z-index: -1;
}

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

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

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}

.highlight-card:hover {
  border-color: rgba(99, 179, 237, 0.2);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 179, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
  color: #63b3ed;
}

.highlight-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
  color: #fff;
}

.highlight-description {
  color: #94a3b8;
  font-size: 0.875rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 2rem;
  text-align: center;
}

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

.contact-content {
  position: relative;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(99, 179, 237, 0.08);
  border: 1px solid rgba(99, 179, 237, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  color: #63b3ed;
}

.contact-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

@media (min-width: 768px) {
  .contact-content h2 { font-size: 2.5rem; }
}

.contact-description {
  color: #94a3b8;
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content .btn svg {
  transition: transform 0.3s;
}

.contact-content .btn:hover svg {
  transform: translateX(3px);
}

.legal-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.legal-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.legal-icon svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #fff;
}

.legal-section p {
  color: #94a3b8;
  font-size: 0.9375rem;
}

.legal-section a {
  color: #63b3ed;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.legal-section a:hover { color: #90cdf4; }

.legal-section a svg {
  width: 14px;
  height: 14px;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8125rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }
.footer-links a.telegram:hover { color: #63b3ed; }

.footer-copyright {
  color: #4a5568;
  font-size: 0.8125rem;
}

.page-wrapper {
  padding-top: 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper .page-content {
  flex: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
}

.breadcrumb a {
  color: #94a3b8;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: #63b3ed; }

.breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.breadcrumb .current {
  color: #e2e8f0;
}

.page-hero {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
  position: relative;
}

.page-hero-glow {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.08), transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 2.75rem; }
}

.page-hero .subtitle {
  color: #94a3b8;
  font-size: 1.0625rem;
  line-height: 1.6;
  position: relative;
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-section h2 svg {
  width: 20px;
  height: 20px;
  color: #63b3ed;
}

.content-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  color: #cbd5e0;
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #63b3ed;
  opacity: 0.6;
}

.feature-list li strong {
  color: #fff;
  font-weight: 600;
}

.info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
}

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

.detail-row {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.detail-label {
  font-weight: 600;
  min-width: 140px;
  flex-shrink: 0;
}

.detail-label.green { color: #68d391; }
.detail-label.yellow { color: #f6e05e; }
.detail-label.blue { color: #63b3ed; }
.detail-label.red { color: #fc8181; }
.detail-label.purple { color: #b794f4; }

.detail-value {
  color: #cbd5e0;
}

.step-section {
  margin-bottom: 2.5rem;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.15), rgba(79, 209, 197, 0.15));
  border: 1px solid rgba(99, 179, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #63b3ed;
  flex-shrink: 0;
}

.step-header h2 {
  margin-bottom: 0;
}

.step-body {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem;
}

.step-body .step-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-body .step-list li {
  color: #cbd5e0;
  font-size: 0.9375rem;
  line-height: 1.6;
  counter-increment: step;
  padding-left: 1.75rem;
  position: relative;
}

.step-body .step-list li::before {
  content: counter(step) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #94a3b8;
}

.step-note {
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.step-note .note-label {
  color: #f6e05e;
  font-weight: 600;
}

.tos-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tos-content h2:first-of-type {
  margin-top: 0;
}

.tos-list {
  list-style: none;
  counter-reset: tos;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tos-list li {
  counter-increment: tos;
  color: #cbd5e0;
  font-size: 0.9375rem;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.tos-list li::before {
  content: counter(tos) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #63b3ed;
  font-size: 0.875rem;
}

.tos-list li strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #63b3ed;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s, gap 0.2s;
  margin: 3rem 0 2rem;
}

.back-link:hover {
  color: #90cdf4;
  gap: 0.5rem;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

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

.section-arrow {
  text-align: center;
  margin-top: 2.5rem;
}

.section-arrow a {
  display: inline-flex;
  color: #4a5568;
  animation: arrow-bob 3s ease-in-out infinite;
  transition: color 0.2s;
}

.section-arrow a:hover {
  color: #63b3ed;
}

.section-arrow svg {
  width: 28px;
  height: 28px;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 179, 237, 0.3), rgba(79, 209, 197, 0.3), transparent);
  background-size: 200% 100%;
  animation: divider-shift 4s ease-in-out infinite;
  border: none;
  margin: 0;
}

@keyframes divider-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

@keyframes typing {
  to { width: 100%; }
}

@keyframes blink-caret {
  50% { border-color: transparent; }
  100% { border-color: #63b3ed; }
}

.hero-tagline.typed {
  border-right-color: transparent;
}

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

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

html, body {
  overflow-x: hidden;
}

@media (max-width: 480px) {
  .container, .container-sm {
    padding: 0 1rem;
  }

  .hero {
    padding: 5rem 1rem 2rem;
    min-height: auto;
    min-height: 100svh;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .hero-description {
    font-size: 0.9375rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons .btn-lg {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

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

  .card {
    padding: 1.25rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.875rem;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 0.9375rem;
  }

  .highlight-card {
    padding: 1rem;
  }

  .contact-card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .contact-content h2 {
    font-size: 1.5rem;
  }

  .contact-description {
    font-size: 0.875rem;
  }

  .contact-content .btn-lg {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .legal-section {
    padding: 2rem 0;
  }

  .legal-section h3 {
    font-size: 1.125rem;
  }

  .legal-section p {
    font-size: 0.8125rem;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
    text-align: center;
  }

  .page-wrapper {
    padding-top: 4rem;
  }

  .page-hero {
    padding: 1.5rem 0 2rem;
    margin-bottom: 2rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero .subtitle {
    font-size: 0.9375rem;
  }

  .breadcrumb {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    flex-wrap: wrap;
  }

  .content-section {
    margin-bottom: 2rem;
  }

  .content-section h2 {
    font-size: 1.25rem;
  }

  .detail-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .detail-label {
    min-width: unset !important;
  }

  .step-body {
    padding: 1rem;
  }

  .step-body .step-list li {
    font-size: 0.875rem;
  }

  .step-note {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .tos-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }

  .tos-list li {
    font-size: 0.875rem;
    padding-left: 1.5rem;
  }

  .back-link {
    margin: 2rem 0 1.5rem;
  }

  .info-box {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .page-hero-glow {
    display: none;
  }

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

@media (hover: none) and (pointer: coarse) {
  .nav-link {
    padding: 0.5rem 0;
  }

  .mobile-menu a {
    padding: 0.875rem 0;
    font-size: 1rem;
  }

  .feature-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
  }

  .btn {
    min-height: 44px;
  }

  .btn-lg {
    min-height: 48px;
  }

  .back-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .breadcrumb a {
    padding: 0.25rem 0;
  }
}
