:root {
  --tou-primary: #25d366;
  --tou-primary-dark: #128c7e;
  --tou-text: #0f172a;
  --tou-muted: #64748b;
  --tou-border: #e5e7eb;
  --tou-bg: #ffffff;
  --tou-bg-soft: #f8fafc;
  --tou-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
  --tou-radius: 16px;
}

/* Reset & Base */
.tou-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--tou-text);
  background: var(--tou-bg-soft);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.tou-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.tou-hero {
  background: linear-gradient(135deg, var(--tou-primary) 0%, var(--tou-primary-dark) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.tou-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.4;
}

.tou-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tou-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.tou-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.tou-hero__lead {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 600px;
}

.tou-art {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--tou-radius);
  padding: 60px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tou-art__icon {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.tou-art__label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Content Section */
.tou-content {
  padding: 80px 0;
}

.tou-article {
  background: var(--tou-bg);
  border-radius: var(--tou-radius);
  padding: 60px;
  box-shadow: var(--tou-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.tou-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--tou-border);
}

.tou-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tou-h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--tou-text);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.tou-h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--tou-text);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tou-h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--tou-primary), var(--tou-primary-dark));
  border-radius: 4px;
  flex-shrink: 0;
}

.tou-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--tou-text);
  margin: 0 0 16px;
}

.tou-block p:last-child {
  margin-bottom: 0;
}

.tou-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tou-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--tou-text);
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.tou-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 2px;
  background: var(--tou-primary);
  border-radius: 2px;
}

.tou-list li strong {
  color: var(--tou-primary-dark);
  font-weight: 600;
}

.tou-block a {
  color: var(--tou-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.tou-block a:hover {
  color: var(--tou-primary-dark);
  text-decoration: underline;
}

/* CTA Section */
.tou-cta {
  background: linear-gradient(135deg, var(--tou-primary-dark) 0%, var(--tou-primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tou-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.tou-cta__inner {
  position: relative;
  z-index: 1;
}

.tou-cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tou-cta__title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.tou-cta__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px;
}

.tou-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.tou-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.tou-btn--primary {
  background: #ffffff;
  color: var(--tou-primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tou-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.tou-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.tou-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .tou-hero {
    padding: 60px 0 80px;
  }

  .tou-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tou-hero__title {
    font-size: 36px;
  }

  .tou-hero__lead {
    font-size: 18px;
  }

  .tou-art {
    padding: 40px;
  }

  .tou-art__icon {
    font-size: 60px;
  }

  .tou-content {
    padding: 60px 0;
  }

  .tou-article {
    padding: 40px 24px;
  }

  .tou-h2 {
    font-size: 28px;
  }

  .tou-h3 {
    font-size: 20px;
  }

  .tou-cta {
    padding: 60px 0;
  }

  .tou-cta__title {
    font-size: 32px;
  }

  .tou-cta__actions {
    flex-direction: column;
  }

  .tou-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tou-hero__title {
    font-size: 32px;
  }

  .tou-hero__lead {
    font-size: 16px;
  }

  .tou-article {
    padding: 32px 20px;
  }

  .tou-h2 {
    font-size: 24px;
  }

  .tou-h3 {
    font-size: 18px;
  }

  .tou-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .tou-cta__title {
    font-size: 28px;
  }
}